From 9b0d54e4c937cf64180553461064cbcdd0ba38a3 Mon Sep 17 00:00:00 2001 From: Kamal Ahmed Date: Sat, 24 Jun 2023 17:42:29 +0400 Subject: [PATCH 01/62] Update abstract.llms.admin.table.php --- includes/abstracts/abstract.llms.admin.table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/abstracts/abstract.llms.admin.table.php b/includes/abstracts/abstract.llms.admin.table.php index 1fe42b3ba7..a6597f517a 100644 --- a/includes/abstracts/abstract.llms.admin.table.php +++ b/includes/abstracts/abstract.llms.admin.table.php @@ -332,7 +332,7 @@ public function get_filter_placeholder( $column_id, $column_data ) { $placeholder = __( 'Any', 'lifterlms' ); if ( is_array( $column_data ) && isset( $column_data['title'] ) ) { $placeholder = sprintf( __( 'Any %s', 'lifterlms' ), $column_data['title'] ); - } elseif ( is_strinp( $column_data ) ) { + } elseif ( is_string( $column_data ) ) { $placeholder = sprintf( __( 'Any %s', 'lifterlms' ), $column_data ); } return apply_filters( 'llms_table_get_' . $this->id . '_filter_placeholder', $placeholder, $column_id ); From 0912462a5d0e8a7ee3e095742ea59de3931c7690 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 27 Jun 2023 09:06:49 +0200 Subject: [PATCH 02/62] Add changelog to the method docblock update file version and a bunch of docblocks --- .../abstracts/abstract.llms.admin.table.php | 78 +++++++++---------- 1 file changed, 38 insertions(+), 40 deletions(-) diff --git a/includes/abstracts/abstract.llms.admin.table.php b/includes/abstracts/abstract.llms.admin.table.php index a6597f517a..ffad1bf15b 100644 --- a/includes/abstracts/abstract.llms.admin.table.php +++ b/includes/abstracts/abstract.llms.admin.table.php @@ -5,7 +5,7 @@ * @package LifterLMS/Abstracts/Classes * * @since 3.2.0 - * @version 3.37.7 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -22,103 +22,101 @@ abstract class LLMS_Admin_Table extends LLMS_Abstract_Exportable_Admin_Table { /** * Unique ID for the Table. * - * @var string + * @var string */ protected $id = ''; /** * When pagination is enabled, the current page. * - * @var integer + * @var integer */ protected $current_page = 1; /** * Value of the field being filtered by. - * * Only applicable if $filterby is set. * - * @var string + * @varstring */ protected $filter = ''; /** * Field results are filtered by. * - * @var string + * @var string */ protected $filterby = ''; /** * Is the Table Exportable? * - * @var boolean + * @var bool */ protected $is_exportable = false; /** * When pagination enabled, determines if this is the last page of results. * - * @var boolean + * @var bool */ protected $is_last_page = true; /** * If true, tfoot will add ajax pagination links. * - * @var boolean + * @var bool */ protected $is_paginated = false; /** * Determine if the table is filterable. * - * @var boolean + * @var bool */ protected $is_filterable = false; /** * If true will be a table with a larger font size. * - * @var bool + * @var bool */ protected $is_large = false; /** * Determine of the table is searchable. * - * @var boolean + * @var bool */ protected $is_searchable = false; /** * If true, tbody will be zebra striped. * - * @var boolean + * @var bool */ protected $is_zebra = true; /** * If an integer supplied, used to jump to last page. * - * @var int + * @var int */ protected $max_pages = null; /** - * Results sort order. - * + * Results sort order. * 'ASC' or 'DESC'. * Only applicable of $orderby is not set. * - * @var string + * @var string */ protected $order = ''; /** * Field results are sorted by. * - * @var string + * @var string */ protected $orderby = ''; @@ -132,17 +130,15 @@ abstract class LLMS_Admin_Table extends LLMS_Abstract_Exportable_Admin_Table { /** * The search query submitted for a searchable table. * - * @var string + * @var string */ protected $search = ''; /** * Table Data. * - * Array of objects or arrays. - * Each item represents as row in the table's body, each item is a cell. - * - * @var array + * @var array Array of objects or arrays. + * Each item represents as row in the table's body, each item is a cell. */ protected $tbody_data = array(); @@ -155,31 +151,31 @@ abstract class LLMS_Admin_Table extends LLMS_Abstract_Exportable_Admin_Table { /** * Retrieve data for a cell. - * - * @param string $key the column id / key - * @param mixed $data object / array of data that the function can use to extract the data - * @return mixed - * @since 3.2.0 - * @version 3.2.0 + * + * @since 3.2.0 + * + * @param string $key The column ID/key. + * @param mixed $data Object/array of data that the function can use to extract the data. + * @return mixed */ abstract protected function get_data( $key, $data ); /** * Execute a query to retrieve results from the table. * - * @param array $args array of query args - * @return void - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @param array $args Array of query args. + * @return mixed */ abstract public function get_results( $args = array() ); /** * Define the structure of arguments used to pass to the get_results method. + * + * @since 2.3.0 * - * @return array - * @since 2.3.0 - * @version 2.3.0 + * @return array */ abstract public function set_args(); @@ -323,10 +319,12 @@ public function get_empty_message() { /** * Get the text for the default/placeholder for a filterable column. * - * @param string $column_id id of the column - * @return string - * @since 3.4.0 - * @version 3.15.0 + * @since 3.4.0 + * @since 3.15.0 Unknown. + * @since [version] Fixed typo in function name (`is_strinp` => `is_string` ). + * + * @param string $column_id The ID of the column. + * @return string */ public function get_filter_placeholder( $column_id, $column_data ) { $placeholder = __( 'Any', 'lifterlms' ); From 42332bf57c4283ee1e033729aa6a269f159c6618 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 27 Jun 2023 09:50:35 +0200 Subject: [PATCH 03/62] fix docs --- .../abstracts/abstract.llms.admin.table.php | 296 +++++++++--------- 1 file changed, 153 insertions(+), 143 deletions(-) diff --git a/includes/abstracts/abstract.llms.admin.table.php b/includes/abstracts/abstract.llms.admin.table.php index ffad1bf15b..ae5fc33545 100644 --- a/includes/abstracts/abstract.llms.admin.table.php +++ b/includes/abstracts/abstract.llms.admin.table.php @@ -35,9 +35,8 @@ abstract class LLMS_Admin_Table extends LLMS_Abstract_Exportable_Admin_Table { /** * Value of the field being filtered by. - * Only applicable if $filterby is set. * - * @varstring + * @var string Only applicable if $filterby is set. */ protected $filter = ''; @@ -105,11 +104,10 @@ abstract class LLMS_Admin_Table extends LLMS_Abstract_Exportable_Admin_Table { protected $max_pages = null; /** - * Results sort order. - * 'ASC' or 'DESC'. - * Only applicable of $orderby is not set. + * Results sort order. * - * @var string + * @var string 'ASC' or 'DESC'. + * Only applicable of $orderby is not set. */ protected $order = ''; @@ -145,15 +143,15 @@ abstract class LLMS_Admin_Table extends LLMS_Abstract_Exportable_Admin_Table { /** * Table Title Displayed on Screen. * - * @var string + * @var string */ protected $title = ''; /** * Retrieve data for a cell. - * + * * @since 3.2.0 - * + * * @param string $key The column ID/key. * @param mixed $data Object/array of data that the function can use to extract the data. * @return mixed @@ -172,7 +170,7 @@ abstract public function get_results( $args = array() ); /** * Define the structure of arguments used to pass to the get_results method. - * + * * @since 2.3.0 * * @return array @@ -182,17 +180,18 @@ abstract public function set_args(); /** * Define the structure of the table. * - * @return array - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return array */ abstract protected function set_columns(); /** * Constructor. * - * @since 3.2.0 - * @version 3.28.0 + * @since 3.2.0 + * + * @return void */ public function __construct() { $this->title = $this->set_title(); @@ -205,10 +204,10 @@ public function __construct() { * Used by AJAX methods to clean unnecessary parameters before passing the request data * to the get_results function. * - * @param array $args array of arguments - * @return array - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @param array $args Array of arguments + * @return array */ protected function clean_args( $args = array() ) { @@ -228,13 +227,14 @@ protected function clean_args( $args = array() ) { * Ensures that all data requested by $this->get_data is filterable * before being output on screen / in the export file. * - * @param mixed $value value to be displayed - * @param string $key column key / id - * @param mixed $data original data object / array - * @param string $context display context [display|export] - * @return mixed - * @since 3.2.0 - * @version 3.17.6 + * @since 3.2.0 + * @since 3.17.6 Unknown. + * + * @param mixed $value Value to be displayed. + * @param string $key Column key/ID. + * @param mixed $data Original data object/array. + * @param string $context Display context [display|export]. + * @return mixed */ protected function filter_get_data( $value, $key, $data, $context = 'display' ) { return apply_filters( 'llms_table_get_data_' . $this->id, $value, $key, $data, $context, $this ); @@ -243,9 +243,10 @@ protected function filter_get_data( $value, $key, $data, $context = 'display' ) /** * Retrieve the arguments defined in `set_args`. * - * @return array - * @since 3.2.0 - * @version 3.15.0 + * @since 3.2.0 + * @since 3.15.0 Unknown. + * + * @return array */ public function get_args() { @@ -271,10 +272,11 @@ public function get_args() { /** * Retrieve the array of columns defined by set_columns. + + * @since 3.2.0 + * @since 3.24.0 Unknown. * - * @return array - * @since 3.2.0 - * @version 3.24.0 + * @return array */ public function get_columns( $context = 'display' ) { @@ -297,9 +299,9 @@ public function get_columns( $context = 'display' ) { /** * Get the current page. * - * @return int - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return int */ public function get_current_page() { return $this->current_page; @@ -308,9 +310,10 @@ public function get_current_page() { /** * Get $this->empty_msg string. * - * @return string - * @since 3.2.0 - * @version 3.15.0 + * @since 3.2.0 + * @since 3.15.0 Unknown. + * + * @return string */ public function get_empty_message() { return apply_filters( 'llms_table_get_' . $this->id . '_empty_message', $this->set_empty_message() ); @@ -322,7 +325,7 @@ public function get_empty_message() { * @since 3.4.0 * @since 3.15.0 Unknown. * @since [version] Fixed typo in function name (`is_strinp` => `is_string` ). - * + * * @param string $column_id The ID of the column. * @return string */ @@ -339,9 +342,9 @@ public function get_filter_placeholder( $column_id, $column_data ) { /** * Get the current filter. * - * @return string - * @since 3.4.0 - * @version 3.4.0 + * @since 3.4.0 + * + * @return string */ public function get_filter() { return $this->filter; @@ -350,9 +353,9 @@ public function get_filter() { /** * Get the current field results are filtered by. * - * @return string - * @since 3.4.0 - * @version 3.4.0 + * @since 3.4.0 + * + * @return string */ public function get_filterby() { return $this->filterby; @@ -361,9 +364,9 @@ public function get_filterby() { /** * Retrieve a modified classname that can be passed via AJAX for new queries. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_handler() { return str_replace( 'LLMS_Table_', '', get_class( $this ) ); @@ -372,9 +375,9 @@ public function get_handler() { /** * Retrieve the max number of pages for the table. * - * @return int - * @since 3.15.0 - * @version 3.15.0 + * @since 3.15.0 + * + * @return int */ public function get_max_pages() { return $this->max_pages; @@ -383,9 +386,9 @@ public function get_max_pages() { /** * Get the current sort order. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_order() { return $this->order; @@ -394,9 +397,9 @@ public function get_order() { /** * Get the current field results are ordered by. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_orderby() { return $this->orderby; @@ -405,9 +408,9 @@ public function get_orderby() { /** * Get the current number of results to display per page. * - * @return int - * @since 3.28.0 - * @version 3.28.0 + * @since 3.28.0 + * + * @return int */ public function get_per_page() { return $this->per_page; @@ -418,9 +421,9 @@ public function get_per_page() { * * Used to determine what order should be displayed when resorting. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ protected function get_new_order( $orderby = '' ) { @@ -436,9 +439,9 @@ protected function get_new_order( $orderby = '' ) { /** * Retrieves the current search query. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_search() { return esc_attr( trim( $this->search ) ); @@ -447,7 +450,7 @@ public function get_search() { /** * Returns an array of CSS class names to use on this table. * - * @since 3.34.0 + * @since 3.34.0 * * @return array */ @@ -480,9 +483,9 @@ protected function get_table_classes() { /** * Get HTML for the filters displayed in the head of the table. * - * @return string - * @since 3.4.0 - * @version 3.4.0 + * @since 3.4.0 + * + * @return string */ public function get_table_filters_html() { ob_start(); @@ -512,7 +515,7 @@ public function get_table_filters_html() { * @since 3.17.8 Unknown. * @since 3.37.7 Use correct argument order for implode to fix php 7.4 deprecation. * - * @return string + * @return string */ public function get_table_html() { @@ -548,9 +551,9 @@ class="" /** * Get the HTML of the search form for a searchable table. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_table_search_form_html() { ob_start(); @@ -565,9 +568,10 @@ public function get_table_search_form_html() { /** * Get the Text to be used as the placeholder in a searchable tables search input. * - * @return string - * @since 3.2.0 - * @version 3.15.0 + * @since 3.2.0 + * @since 3.15.0 Unknown. + * + * @return string */ public function get_table_search_form_placeholder() { return apply_filters( 'llms_table_get_' . $this->id . '_search_placeholder', __( 'Search', 'lifterlms' ) ); @@ -576,9 +580,10 @@ public function get_table_search_form_placeholder() { /** * Get the HTML for the table's title. * - * @return string - * @since 3.2.0 - * @version 3.15.0 + * @since 3.2.0 + * @since 3.15.0 Unknown. + * + * @return string */ public function get_table_title_html() { $title = $this->get_title(); @@ -590,11 +595,12 @@ public function get_table_title_html() { } /** - * Get $this->tbody_data array. + * Get `$this->tbody_data` array. + + * @since 3.2.0 + * @since 3.15.0 Unknown. * - * @return array - * @since 3.2.0 - * @version 3.15.0 + * @return array */ public function get_tbody_data() { return apply_filters( 'llms_table_get_' . $this->id . '_tbody_data', $this->tbody_data ); @@ -603,9 +609,9 @@ public function get_tbody_data() { /** * Get a tbody element for the table. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_tbody_html() { $data = $this->get_tbody_data(); @@ -627,9 +633,10 @@ public function get_tbody_html() { /** * Get a tfoot element for the table. * - * @return string - * @since 3.2.0 - * @version 3.28.0 + * @since 3.2.0 + * @since 3.28.0 Unknown. + * + * @return string */ public function get_tfoot_html() { ob_start(); @@ -676,9 +683,9 @@ public function get_tfoot_html() { /** * Get a thead element for the table. * - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return string */ public function get_thead_html() { ob_start(); @@ -711,10 +718,10 @@ public function get_thead_html() { /** * Get a CSS class list (as a string) for each TR. * - * @param mixed $row object / array of data that the function can use to extract the data - * @return string - * @since 3.24.0 - * @version 3.24.0 + * @since 3.24.0 + * + * @param mixed $row Object/array of data that the function can use to extract the data. + * @return string */ protected function get_tr_classes( $row ) { return apply_filters( 'llms_table_get_' . $this->id . '_tr_classes', 'llms-table-tr', $row ); @@ -723,10 +730,11 @@ protected function get_tr_classes( $row ) { /** * Get the HTML for a single row in the body of the table. * - * @param mixed $row array/object of data describing a single row in the table - * @return string - * @since 3.2.0 - * @version 3.21.0 + * @since 3.2.0 + * @since 3.21.0 Unknown. + * + * @param mixed $row Array/object of data describing a single row in the table. + * @return string */ public function get_tr_html( $row ) { ob_start(); @@ -747,9 +755,9 @@ public function get_tr_html( $row ) { * * Useful for creating full width tds via colspan. * - * @return int - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return int */ public function get_columns_count() { return count( $this->get_columns() ); @@ -762,11 +770,11 @@ public function get_columns_count() { * Useful when displaying a percentage within a table! * Bonus if the table sorts by that percentage column. * - * @param float $percentage the percentage to be displayed - * @param string $text text to display over the progress bar, defaults to $percentage - * @return string - * @since 3.4.1 - * @version 3.4.1 + * @since 3.4.1 + * + * @param float $percentage The percentage to be displayed. + * @param string $text Text to display over the progress bar, defaults to $percentage. + * @return string */ public function get_progress_bar_html( $percentage, $text = '' ) { $text = $text ? $text : $percentage . '%'; @@ -779,11 +787,11 @@ public function get_progress_bar_html( $percentage, $text = '' ) { /** * Get the HTML for a WP Post Link. * - * @param int $post_id WP Post ID - * @param string $text Optional text to display within the anchor, if none supplied $post_id if used - * @return string - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @param int $post_id WP Post ID. + * @param string $text Optional text to display within the anchor, if none supplied $post_id if used. + * @return string */ public function get_post_link( $post_id, $text = '' ) { if ( ! $text ) { @@ -795,9 +803,9 @@ public function get_post_link( $post_id, $text = '' ) { /** * Get the title of the table. * - * @return string - * @since 3.15.0 - * @version 3.15.0 + * @since 3.15.0 + * + * @return string */ public function get_title() { return apply_filters( 'llms_table_get_' . $this->id . '_table_title', $this->title ); @@ -806,11 +814,11 @@ public function get_title() { /** * Get the HTML for a WP User Link. * - * @param int $user_id WP User ID - * @param string $text Optional text to display within the anchor, if none supplied $user_id if used - * @return string - * @since 3.17.2 - * @version 3.17.2 + * @since 3.17.2 + * + * @param int $user_id WP User ID. + * @param string $text Optional text to display within the anchor, if none supplied $user_id if used. + * @return string */ public function get_user_link( $user_id, $text = '' ) { if ( ! $text ) { @@ -822,11 +830,11 @@ public function get_user_link( $user_id, $text = '' ) { /** * Determine if a column is visible based on the current context. * - * @param [type] $data array of a single column's data from set_columns() - * @param string $context context [display|export] - * @return bool - * @since 3.15.0 - * @version 3.15.0 + * @since 3.15.0 + * + * @param array $data Array of a single column's data from `set_columns()`. + * @param string $context Context [display|export]. + * @return bool */ private function is_col_visible( $data, $context = 'display' ) { @@ -846,9 +854,9 @@ private function is_col_visible( $data, $context = 'display' ) { /** * Return protected is_last_page var. * - * @return bool - * @since 3.15.0 - * @version 3.15.0 + * @since 3.15.0 + * + * @return bool */ public function is_last_page() { return $this->is_last_page; @@ -857,19 +865,20 @@ public function is_last_page() { /** * Allow custom hooks to be registered for use within the class. * - * @return void - * @since 3.2.0 - * @version 3.2.0 + * @since 3.2.0 + * + * @return void */ protected function register_hooks() {} /** * Setter. * - * @param string $key variable name - * @param mixed $val variable data - * @since 2.3.0 - * @version 2.3.0 + * @since 2.3.0 + * + * @param string $key Variable name. + * @param mixed $val Variable data. + * @return void */ public function set( $key, $val ) { $this->$key = $val; @@ -878,9 +887,10 @@ public function set( $key, $val ) { /** * Empty message displayed when no results are found. * - * @return string - * @since 3.2.0 - * @version 3.15.0 + * @since 3.2.0 + * @since 3.15.0 Unknown. + * + * @return string */ protected function set_empty_message() { return apply_filters( 'llms_table_default_empty_message', __( 'No results were found.', 'lifterlms' ) ); @@ -889,9 +899,9 @@ protected function set_empty_message() { /** * Stub used to set the title during table construction. * - * @return string - * @since 3.28.0 - * @version 3.28.0 + * @since 3.28.0 + * + * @return string */ protected function set_title() { return ''; From f94706b38da6df4a4fb7f23a99b26744cdbf936c Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 27 Jun 2023 17:44:27 +0200 Subject: [PATCH 04/62] fix docs --- .../abstracts/abstract.llms.admin.table.php | 148 ++++++++++++++++-- 1 file changed, 131 insertions(+), 17 deletions(-) diff --git a/includes/abstracts/abstract.llms.admin.table.php b/includes/abstracts/abstract.llms.admin.table.php index ae5fc33545..ce5fe51a5b 100644 --- a/includes/abstracts/abstract.llms.admin.table.php +++ b/includes/abstracts/abstract.llms.admin.table.php @@ -237,14 +237,27 @@ protected function clean_args( $args = array() ) { * @return mixed */ protected function filter_get_data( $value, $key, $data, $context = 'display' ) { - return apply_filters( 'llms_table_get_data_' . $this->id, $value, $key, $data, $context, $this ); + /** + * Filters the table data. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.2.0 + * + * @param mixed $value Value to be displayed. + * @param string $key Column key/ID. + * @param mixed $data Original data object/array. + * @param string $context Display context [display|export]. + * @param LLMS_Admin_Table $table_object Instance of the class extending `LLMS_Admin_Table`. + */ + return apply_filters( "llms_table_get_data_{$this->id}", $value, $key, $data, $context, $this ); } /** * Retrieve the arguments defined in `set_args`. * * @since 3.2.0 - * @since 3.15.0 Unknown. + * @since 3.15.0 Fix filter name. * * @return array */ @@ -267,7 +280,16 @@ public function get_args() { $args = wp_parse_args( $this->set_args(), $default ); - return apply_filters( 'llms_table_get_args_' . $this->id, $args ); + /** + * Filters the arguments used to build the query. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param array $args Arguments to build the query whose results will populate the table. + */ + return apply_filters( "llms_table_get_args_{$this->id}", $args ); } /** @@ -276,11 +298,22 @@ public function get_args() { * @since 3.2.0 * @since 3.24.0 Unknown. * + * @param string $context Display context [display|export]. * @return array */ public function get_columns( $context = 'display' ) { - $cols = apply_filters( 'llms_table_get_' . $this->id . '_columns', $this->set_columns(), $context ); + /** + * Filters the array of table columns. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.2.0 + * + * @param array $columns The array of table columns. + * @param string $context Display context [display|export]. + */ + $cols = apply_filters( "llms_table_get_{$this->id}_columns", $this->set_columns(), $context ); if ( $this->is_exportable ) { @@ -308,22 +341,31 @@ public function get_current_page() { } /** - * Get $this->empty_msg string. + * Get `$this->empty_msg` string. * * @since 3.2.0 - * @since 3.15.0 Unknown. + * @since 3.15.0 Fix filter name. * * @return string */ public function get_empty_message() { - return apply_filters( 'llms_table_get_' . $this->id . '_empty_message', $this->set_empty_message() ); + /** + * Filters the message displayed when the table is empty. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param string $columns The message displayed when the table is empty. + */ + return apply_filters( "llms_table_get_{$this->id}_empty_message", $this->set_empty_message() ); } /** * Get the text for the default/placeholder for a filterable column. * * @since 3.4.0 - * @since 3.15.0 Unknown. + * @since 3.15.0 Fix filter name. * @since [version] Fixed typo in function name (`is_strinp` => `is_string` ). * * @param string $column_id The ID of the column. @@ -336,7 +378,17 @@ public function get_filter_placeholder( $column_id, $column_data ) { } elseif ( is_string( $column_data ) ) { $placeholder = sprintf( __( 'Any %s', 'lifterlms' ), $column_data ); } - return apply_filters( 'llms_table_get_' . $this->id . '_filter_placeholder', $placeholder, $column_id ); + /** + * Filters the placeholder string for a filterable column. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param string $placeholder Placeholder string. + * @param string $column_id The ID of the column. + */ + return apply_filters( "llms_table_get_{$this->id}_filter_placeholder", $placeholder, $column_id ); } /** @@ -569,12 +621,21 @@ public function get_table_search_form_html() { * Get the Text to be used as the placeholder in a searchable tables search input. * * @since 3.2.0 - * @since 3.15.0 Unknown. + * @since 3.15.0 Fix filter name. * * @return string */ public function get_table_search_form_placeholder() { - return apply_filters( 'llms_table_get_' . $this->id . '_search_placeholder', __( 'Search', 'lifterlms' ) ); + /** + * Filters the text to be used as the placeholder in a searchable tables search input. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param string $text Text to be used as the placeholder in a searchable tables search input. + */ + return apply_filters( "llms_table_get_{$this->id}_search_placeholder", __( 'Search', 'lifterlms' ) ); } /** @@ -598,12 +659,21 @@ public function get_table_title_html() { * Get `$this->tbody_data` array. * @since 3.2.0 - * @since 3.15.0 Unknown. + * @since 3.15.0 Fix filter name. * * @return array */ public function get_tbody_data() { - return apply_filters( 'llms_table_get_' . $this->id . '_tbody_data', $this->tbody_data ); + /** + * Filters the array of tbody data. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param array $tbody_data Array of data that will be used to create the table body. + */ + return apply_filters( "llms_table_get_{$this->id}_tbody_data", $this->tbody_data ); } /** @@ -724,20 +794,38 @@ public function get_thead_html() { * @return string */ protected function get_tr_classes( $row ) { - return apply_filters( 'llms_table_get_' . $this->id . '_tr_classes', 'llms-table-tr', $row ); + /** + * Filters the CSS class of a table row. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.24.0 + * + * @param string $class CSS class list (as a string) for a given TR. + * @param mixed $row Object/array of data that the function can use to extract the data. + */ + return apply_filters( "llms_table_get_{$this->id}_tr_classes", 'llms-table-tr', $row ); } /** * Get the HTML for a single row in the body of the table. * * @since 3.2.0 - * @since 3.21.0 Unknown. + * @since 3.21.0 Fix action hooks names. * * @param mixed $row Array/object of data describing a single row in the table. * @return string */ public function get_tr_html( $row ) { ob_start(); + /** + * Fired before a table ``. + * + * @since 3.21.0 + * + * @param string $row Array/object of data describing a single row in the table. + * @param LLMS_Admin_Table $table_object Instance of the class extending `LLMS_Admin_Table`. + */ do_action( 'llms_table_before_tr', $row, $this ); ?> @@ -746,6 +834,14 @@ public function get_tr_html( $row ) { `. + * + * @since 3.21.0 + * + * @param string $row Array/object of data describing a single row in the table. + * @param LLMS_Admin_Table $table_object Instance of the class extending `LLMS_Admin_Table`. + */ do_action( 'llms_table_after_tr', $row, $this ); return ob_get_clean(); } @@ -808,7 +904,16 @@ public function get_post_link( $post_id, $text = '' ) { * @return string */ public function get_title() { - return apply_filters( 'llms_table_get_' . $this->id . '_table_title', $this->title ); + /** + * Filters the table title. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param string $title The title of the table. + */ + return apply_filters( "llms_table_get_{$this->id}_table_title", $this->title ); } /** @@ -888,11 +993,20 @@ public function set( $key, $val ) { * Empty message displayed when no results are found. * * @since 3.2.0 - * @since 3.15.0 Unknown. + * @since 3.15.0 Fix filter name. * * @return string */ protected function set_empty_message() { + /** + * Filters the default message displayed when the table is empty. + * + * The dynamic portion of this filter `{$this->id}` refers to the unique ID for the table. + * + * @since 3.15.0 + * + * @param string $columns The default message displayed when the table is empty. + */ return apply_filters( 'llms_table_default_empty_message', __( 'No results were found.', 'lifterlms' ) ); } From f4f88a83bd1875f4d5e7cb6979e1fe02f35ea381 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 27 Jun 2023 17:45:04 +0200 Subject: [PATCH 05/62] add changelog item --- .changelogs/wrong-function-name.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changelogs/wrong-function-name.yml diff --git a/.changelogs/wrong-function-name.yml b/.changelogs/wrong-function-name.yml new file mode 100644 index 0000000000..5e6f01b4d8 --- /dev/null +++ b/.changelogs/wrong-function-name.yml @@ -0,0 +1,5 @@ +significance: patch +type: fixed +attributions: + - "@kamalahmed" +entry: Fixed typo in a function name that could potentially produce a fatal. From dbd6c65ee7254ea61f8e69593c78997526555bb8 Mon Sep 17 00:00:00 2001 From: actuallyakash Date: Wed, 5 Jul 2023 13:41:58 +0530 Subject: [PATCH 06/62] updated Kazakhstani Tenge symbol --- .changelogs/issue_2475.yml | 5 +++++ languages/currency-symbols.php | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changelogs/issue_2475.yml diff --git a/.changelogs/issue_2475.yml b/.changelogs/issue_2475.yml new file mode 100644 index 0000000000..9e8d88c9e1 --- /dev/null +++ b/.changelogs/issue_2475.yml @@ -0,0 +1,5 @@ +significance: patch +type: changed +links: + - "#2475" +entry: Updated Kazakhstani Tenge's currency symbol. diff --git a/languages/currency-symbols.php b/languages/currency-symbols.php index c374b79238..c9a2e0a82a 100644 --- a/languages/currency-symbols.php +++ b/languages/currency-symbols.php @@ -30,7 +30,7 @@ * @see llms_get_currency_symbols() * * @since 5.0.0 - * @version 5.0.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -117,7 +117,8 @@ 'KRW' => __( '₩', 'lifterlms' ), 'KWD' => __( 'ك.د', 'lifterlms' ), 'KYD' => __( '$', 'lifterlms' ), - 'KZT' => __( 'лв', 'lifterlms' ), + // 'KZT' symbol manually updated, see https://github.com/gocodebox/lifterlms/issues/2475. + 'KZT' => __( '₸', 'lifterlms' ), 'LAK' => __( '₭', 'lifterlms' ), 'LBP' => __( '£', 'lifterlms' ), 'LKR' => __( 'Rs', 'lifterlms' ), From 9b567bcc38afa62e66346c4ac459bf7f6388dc44 Mon Sep 17 00:00:00 2001 From: Akash <18614782+actuallyakash@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:39:38 +0530 Subject: [PATCH 07/62] Update .changelogs/issue_2475.yml Co-authored-by: Rocco Aliberti --- .changelogs/issue_2475.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changelogs/issue_2475.yml b/.changelogs/issue_2475.yml index 9e8d88c9e1..af70213573 100644 --- a/.changelogs/issue_2475.yml +++ b/.changelogs/issue_2475.yml @@ -1,5 +1,5 @@ significance: patch -type: changed +type: fixed links: - "#2475" entry: Updated Kazakhstani Tenge's currency symbol. From 1f9918305baa68c98d9195b2f305633b3efb1c75 Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Fri, 14 Jul 2023 08:32:49 -0400 Subject: [PATCH 08/62] Can now use the llms_install_create_pages filter to change the pages shown in the setup wizard. --- .changelogs/dev.yml | 4 + .../admin/views/setup-wizard/step-pages.php | 31 ++++---- includes/class.llms.install.php | 47 ++++++++--- package-lock.json | 77 +++++++++++-------- 4 files changed, 99 insertions(+), 60 deletions(-) create mode 100644 .changelogs/dev.yml diff --git a/.changelogs/dev.yml b/.changelogs/dev.yml new file mode 100644 index 0000000000..47cf95286e --- /dev/null +++ b/.changelogs/dev.yml @@ -0,0 +1,4 @@ +significance: patch +type: changed +entry: The llms_install_create_pages filter can now be used to manage the pages + shown in the setup wizard. diff --git a/includes/admin/views/setup-wizard/step-pages.php b/includes/admin/views/setup-wizard/step-pages.php index e6a3b9a9a8..b544b4a51d 100644 --- a/includes/admin/views/setup-wizard/step-pages.php +++ b/includes/admin/views/setup-wizard/step-pages.php @@ -15,22 +15,21 @@

- - - - - - - - - - - - - - - - + + + + + +

Menus%4$s.', 'lifterlms' ), '', '', '', '' ); ?>

diff --git a/includes/class.llms.install.php b/includes/class.llms.install.php index 889c8674fc..9d326d33fd 100644 --- a/includes/class.llms.install.php +++ b/includes/class.llms.install.php @@ -237,43 +237,66 @@ public static function create_options() { } /** - * Create essential starter pages - * - * @since 1.0.0 - * @since 3.24.0 Unknown. - * - * @return boolean False on error, true on success. + * Get array of essential starter pages. + * + * @since [version] + * + * @return array */ - public static function create_pages() { - $pages = apply_filters( + public static function get_pages() { + return apply_filters( 'llms_install_create_pages', array( array( 'content' => '', 'option' => 'lifterlms_shop_page_id', 'slug' => 'courses', - 'title' => __( 'Course Catalog', 'lifterlms' ), + 'title' => esc_html__( 'Course Catalog', 'lifterlms' ), + 'wizard_title' => esc_html__( 'Course Catalog', 'lifterlms' ), + 'description' => esc_html__( 'This page is where your visitors will find a list of all your available courses.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/course-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Course%20Catalog', ), array( 'content' => '', 'option' => 'lifterlms_memberships_page_id', 'slug' => 'memberships', - 'title' => __( 'Membership Catalog', 'lifterlms' ), + 'title' => esc_html__( 'Membership Catalog', 'lifterlms' ), + 'wizard_title' => esc_html__( 'Membership Catalog', 'lifterlms' ), + 'description' => esc_html__( 'This page is where your visitors will find a list of all your available memberships.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/membership-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Membership%20Catalog', ), array( 'content' => '[lifterlms_checkout]', 'option' => 'lifterlms_checkout_page_id', 'slug' => 'purchase', - 'title' => __( 'Purchase', 'lifterlms' ), + 'title' => esc_html__( 'Purchase', 'lifterlms' ), + 'wizard_title' => esc_html__( 'Checkout', 'lifterlms' ), + 'description' => esc_html__( 'This is the page where visitors will be directed in order to pay for courses and memberships.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/checkout-page/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Checkout%20Page', ), array( 'content' => '[lifterlms_my_account]', 'option' => 'lifterlms_myaccount_page_id', 'slug' => 'dashboard', - 'title' => __( 'Dashboard', 'lifterlms' ), + 'title' => esc_html__( 'Dashboard', 'lifterlms' ), + 'wizard_title' => esc_html__( 'Student Dashboard', 'lifterlms' ), + 'description' => esc_html__( 'Page where students can view and manage their current enrollments, earned certificates and achievements, account information, and purchase history.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/student-dashboard/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Student%20Dashboard', ), ) ); + } + + /** + * Create essential starter pages + * + * @since 1.0.0 + * @since 3.24.0 Unknown. + * + * @return boolean False on error, true on success. + */ + public static function create_pages() { + $pages = LLMS_Install::get_pages(); foreach ( $pages as $page ) { if ( ! llms_create_page( $page['slug'], $page['title'], $page['content'], $page['option'] ) ) { return false; diff --git a/package-lock.json b/package-lock.json index 32d3394817..d8bf63680b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7463,17 +7463,17 @@ } }, "node_modules/@testing-library/dom": { - "version": "8.20.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", - "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", - "aria-query": "^5.0.0", + "aria-query": "5.1.3", "chalk": "^4.1.0", "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", + "lz-string": "^1.5.0", "pretty-format": "^27.0.2" }, "engines": { @@ -12598,14 +12598,14 @@ "license": "MIT" }, "node_modules/deep-equal": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", - "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.2.tgz", + "integrity": "sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==", "dependencies": { "array-buffer-byte-length": "^1.0.0", "call-bind": "^1.0.2", "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.0", + "get-intrinsic": "^1.2.1", "is-arguments": "^1.1.1", "is-array-buffer": "^3.0.2", "is-date-object": "^1.0.5", @@ -15062,11 +15062,13 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.0", - "license": "MIT", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3" }, "funding": { @@ -18157,6 +18159,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-symbols": { "version": "1.0.3", "license": "MIT", @@ -27021,15 +27034,6 @@ "node": ">=0.6" } }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "engines": { - "node": ">=0.4.x" - } - }, "node_modules/querystring-es3": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", @@ -30843,12 +30847,12 @@ "license": "MIT" }, "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.1.tgz", + "integrity": "sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==", "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" + "punycode": "^1.4.1", + "qs": "^6.11.0" } }, "node_modules/url-loader": { @@ -30884,10 +30888,19 @@ "requires-port": "^1.0.0" } }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" + "node_modules/url/node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/use": { "version": "3.1.1", @@ -32860,9 +32873,9 @@ "license": "ISC" }, "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.10.tgz", + "integrity": "sha512-uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA==", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", From d7664ba6b5ab7643d43293fe6b8fb6b604d09d78 Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Fri, 14 Jul 2023 09:03:45 -0400 Subject: [PATCH 09/62] Adding a llms_install_get_pages filter and keeping the llms_install_create_pages in the create_pages method. --- includes/admin/views/setup-wizard/step-pages.php | 1 + includes/class.llms.install.php | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/admin/views/setup-wizard/step-pages.php b/includes/admin/views/setup-wizard/step-pages.php index b544b4a51d..d10b7e8004 100644 --- a/includes/admin/views/setup-wizard/step-pages.php +++ b/includes/admin/views/setup-wizard/step-pages.php @@ -3,6 +3,7 @@ * Setup Wizard step: Page Setup * * @since 4.4.4 + * @since [version] Using the LLMS_Install::get_pages() method now. * @version 4.4.4 * * @property LLMS_Admin_Setup_Wizard $this Setup wizard class instance. diff --git a/includes/class.llms.install.php b/includes/class.llms.install.php index 9d326d33fd..b9e6be68f3 100644 --- a/includes/class.llms.install.php +++ b/includes/class.llms.install.php @@ -245,7 +245,7 @@ public static function create_options() { */ public static function get_pages() { return apply_filters( - 'llms_install_create_pages', + 'llms_install_get_pages', array( array( 'content' => '', @@ -292,11 +292,12 @@ public static function get_pages() { * * @since 1.0.0 * @since 3.24.0 Unknown. + * @since [version] Using get_pages method now. * * @return boolean False on error, true on success. */ public static function create_pages() { - $pages = LLMS_Install::get_pages(); + $pages = apply_filters( 'llms_install_create_pages', LLMS_Install::get_pages() ); foreach ( $pages as $page ) { if ( ! llms_create_page( $page['slug'], $page['title'], $page['content'], $page['option'] ) ) { return false; From ddd6d1029a663967be622b544c55c365c966c9ae Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Fri, 14 Jul 2023 10:12:04 -0400 Subject: [PATCH 10/62] removing changes to package-lock.json --- package-lock.json | 2328 +++++++++++++++++++++++++++++++++++++++------ 1 file changed, 2058 insertions(+), 270 deletions(-) diff --git a/package-lock.json b/package-lock.json index d8bf63680b..03694a55d2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,54 +1,17 @@ { "name": "lifterlms", - "version": "7.2.1", + "version": "7.1.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lifterlms", - "version": "7.2.1", + "version": "7.1.4", + "hasInstallScript": true, "license": "GPL-3.0", "dependencies": { - "@babel/core": "^7.16.5", "@emotion/styled": "^11.6.0", - "@fortawesome/fontawesome-free": "^6.1.2", - "@jest/test-sequencer": "^27.4.6", - "@testing-library/react": "^12.1.2", - "@wordpress/api-fetch": "^5.2.6", - "@wordpress/components": "^19.5.0", - "@wordpress/compose": "^5.0.6", - "@wordpress/e2e-test-utils": "^7.0.0", - "@wordpress/element": "^4.14.0", - "@wordpress/eslint-plugin": "^11.1.0", - "@wordpress/i18n": "^4.2.4", - "@wordpress/icons": "^6.1.1", - "@wordpress/scripts": "^23.6.0", - "@wordpress/url": "^3.3.1", - "babelify": "^10.0.0", - "browserify": "^17.0.0", - "chalk": "^4.1.2", - "cheerio": "^1.0.0-rc.10", - "classnames": "^2.3.1", - "columnify": "^1.5.4", - "commander": "^8.2.0", - "css-xpath": "^1.0.0", - "dotenv": "^8.2.0", - "eslint-import-resolver-node": "^0.3.6", - "fast-glob": "^3.2.11", - "inquirer": "^8.2.0", - "lodash": "^4.17.21", - "mini-css-extract-plugin": "^2.6.1", - "react-dom": "^17.0.2", - "react-infinite-scroller": "^1.2.6", - "react-select": "^5.2.1", - "react-snap": "^1.23.0", - "replace-in-file": "^6.3.1", - "semver": "^7.3.5", - "throttle-debounce": "^3.0.1", - "webpack-remove-empty-scripts": "^0.8.1", - "webpack-rtl-plugin": "^2.0.0", - "words-count": "^2.0.2", - "yaml": "^2.1.1" + "classnames": "^2.3.1" }, "devDependencies": { "@lifterlms/brand": "file:packages/brand", @@ -172,6 +135,7 @@ }, "node_modules/@babel/eslint-parser": { "version": "7.19.1", + "dev": true, "license": "MIT", "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", @@ -188,6 +152,7 @@ }, "node_modules/@babel/eslint-parser/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -207,6 +172,7 @@ }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -217,6 +183,7 @@ }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-explode-assignable-expression": "^7.18.6", @@ -251,6 +218,7 @@ }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -270,6 +238,7 @@ }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -284,6 +253,7 @@ }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.3.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.17.7", @@ -299,6 +269,7 @@ }, "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -313,6 +284,7 @@ }, "node_modules/@babel/helper-explode-assignable-expression": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -344,6 +316,7 @@ }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.9" @@ -381,6 +354,7 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -398,6 +372,7 @@ }, "node_modules/@babel/helper-remap-async-to-generator": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -414,6 +389,7 @@ }, "node_modules/@babel/helper-replace-supers": { "version": "7.19.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", @@ -438,6 +414,7 @@ }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.9" @@ -479,6 +456,7 @@ }, "node_modules/@babel/helper-wrap-function": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-function-name": "^7.19.0", @@ -571,6 +549,7 @@ }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -584,6 +563,7 @@ }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -599,6 +579,7 @@ }, "node_modules/@babel/plugin-proposal-async-generator-functions": { "version": "7.19.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", @@ -615,6 +596,7 @@ }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -629,6 +611,7 @@ }, "node_modules/@babel/plugin-proposal-class-static-block": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -644,6 +627,7 @@ }, "node_modules/@babel/plugin-proposal-dynamic-import": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -658,6 +642,7 @@ }, "node_modules/@babel/plugin-proposal-export-namespace-from": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -672,6 +657,7 @@ }, "node_modules/@babel/plugin-proposal-json-strings": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -686,6 +672,7 @@ }, "node_modules/@babel/plugin-proposal-logical-assignment-operators": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -700,6 +687,7 @@ }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -714,6 +702,7 @@ }, "node_modules/@babel/plugin-proposal-numeric-separator": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -728,6 +717,7 @@ }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.18.8", @@ -745,6 +735,7 @@ }, "node_modules/@babel/plugin-proposal-optional-catch-binding": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -759,6 +750,7 @@ }, "node_modules/@babel/plugin-proposal-optional-chaining": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -774,6 +766,7 @@ }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -788,6 +781,7 @@ }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -804,6 +798,7 @@ }, "node_modules/@babel/plugin-proposal-unicode-property-regex": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", @@ -818,6 +813,7 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -828,6 +824,7 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" @@ -838,6 +835,7 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -851,6 +849,7 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -861,6 +860,7 @@ }, "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" @@ -871,6 +871,7 @@ }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -884,6 +885,7 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -907,6 +909,7 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -917,6 +920,7 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -927,6 +931,7 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -937,6 +942,7 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -947,6 +953,7 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -957,6 +964,7 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -967,6 +975,7 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -980,6 +989,7 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -993,6 +1003,7 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1006,6 +1017,7 @@ }, "node_modules/@babel/plugin-transform-arrow-functions": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1019,6 +1031,7 @@ }, "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", @@ -1034,6 +1047,7 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1047,6 +1061,7 @@ }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1060,6 +1075,7 @@ }, "node_modules/@babel/plugin-transform-classes": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1081,6 +1097,7 @@ }, "node_modules/@babel/plugin-transform-classes/node_modules/globals": { "version": "11.12.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -1088,6 +1105,7 @@ }, "node_modules/@babel/plugin-transform-computed-properties": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1101,6 +1119,7 @@ }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.18.13", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1114,6 +1133,7 @@ }, "node_modules/@babel/plugin-transform-dotall-regex": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", @@ -1128,6 +1148,7 @@ }, "node_modules/@babel/plugin-transform-duplicate-keys": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1141,6 +1162,7 @@ }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", @@ -1155,6 +1177,7 @@ }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.18.8", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1168,6 +1191,7 @@ }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.18.9", @@ -1183,6 +1207,7 @@ }, "node_modules/@babel/plugin-transform-literals": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1196,6 +1221,7 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1209,6 +1235,7 @@ }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", @@ -1224,6 +1251,7 @@ }, "node_modules/@babel/plugin-transform-modules-commonjs": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", @@ -1240,6 +1268,7 @@ }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", @@ -1257,6 +1286,7 @@ }, "node_modules/@babel/plugin-transform-modules-umd": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", @@ -1271,6 +1301,7 @@ }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.19.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.19.0", @@ -1285,6 +1316,7 @@ }, "node_modules/@babel/plugin-transform-new-target": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1298,6 +1330,7 @@ }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1312,6 +1345,7 @@ }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.18.8", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1325,6 +1359,7 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1338,6 +1373,7 @@ }, "node_modules/@babel/plugin-transform-react-constant-elements": { "version": "7.18.12", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1351,6 +1387,7 @@ }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1364,6 +1401,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1381,6 +1419,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx-development": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/plugin-transform-react-jsx": "^7.18.6" @@ -1394,6 +1433,7 @@ }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1408,6 +1448,7 @@ }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1422,6 +1463,7 @@ }, "node_modules/@babel/plugin-transform-reserved-words": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1435,6 +1477,7 @@ }, "node_modules/@babel/plugin-transform-runtime": { "version": "7.19.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", @@ -1453,6 +1496,7 @@ }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -1460,6 +1504,7 @@ }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1473,6 +1518,7 @@ }, "node_modules/@babel/plugin-transform-spread": { "version": "7.19.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0", @@ -1487,6 +1533,7 @@ }, "node_modules/@babel/plugin-transform-sticky-regex": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1500,6 +1547,7 @@ }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1513,6 +1561,7 @@ }, "node_modules/@babel/plugin-transform-typeof-symbol": { "version": "7.18.9", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1526,6 +1575,7 @@ }, "node_modules/@babel/plugin-transform-typescript": { "version": "7.19.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.19.0", @@ -1541,6 +1591,7 @@ }, "node_modules/@babel/plugin-transform-unicode-escapes": { "version": "7.18.10", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1554,6 +1605,7 @@ }, "node_modules/@babel/plugin-transform-unicode-regex": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", @@ -1568,6 +1620,7 @@ }, "node_modules/@babel/preset-env": { "version": "7.19.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.19.3", @@ -1655,6 +1708,7 @@ }, "node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -1662,6 +1716,7 @@ }, "node_modules/@babel/preset-modules": { "version": "0.1.5", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", @@ -1676,6 +1731,7 @@ }, "node_modules/@babel/preset-react": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1694,6 +1750,7 @@ }, "node_modules/@babel/preset-typescript": { "version": "7.18.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1719,6 +1776,7 @@ }, "node_modules/@babel/runtime-corejs3": { "version": "7.19.1", + "dev": true, "license": "MIT", "dependencies": { "core-js-pure": "^3.25.1", @@ -1780,10 +1838,12 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", + "dev": true, "license": "MIT" }, "node_modules/@csstools/selector-specificity": { "version": "2.0.2", + "dev": true, "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" @@ -1799,6 +1859,7 @@ }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", + "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" @@ -1853,6 +1914,7 @@ }, "node_modules/@emotion/css": { "version": "11.10.0", + "dev": true, "license": "MIT", "dependencies": { "@emotion/babel-plugin": "^11.10.0", @@ -1972,6 +2034,7 @@ }, "node_modules/@es-joy/jsdoccomment": { "version": "0.20.1", + "dev": true, "license": "MIT", "dependencies": { "comment-parser": "1.3.0", @@ -1984,6 +2047,7 @@ }, "node_modules/@es-joy/jsdoccomment/node_modules/comment-parser": { "version": "1.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 12.0.0" @@ -1991,6 +2055,7 @@ }, "node_modules/@eslint/eslintrc": { "version": "1.3.2", + "dev": true, "license": "MIT", "dependencies": { "ajv": "^6.12.4", @@ -2012,10 +2077,12 @@ }, "node_modules/@floating-ui/core": { "version": "0.6.2", + "dev": true, "license": "MIT" }, "node_modules/@floating-ui/dom": { "version": "0.4.5", + "dev": true, "license": "MIT", "dependencies": { "@floating-ui/core": "^0.6.2" @@ -2023,6 +2090,7 @@ }, "node_modules/@floating-ui/react-dom": { "version": "0.6.3", + "dev": true, "license": "MIT", "dependencies": { "@floating-ui/dom": "^0.4.5", @@ -2035,6 +2103,7 @@ }, "node_modules/@fortawesome/fontawesome-free": { "version": "6.2.0", + "dev": true, "hasInstallScript": true, "license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)", "engines": { @@ -2048,6 +2117,7 @@ }, "node_modules/@humanwhocodes/config-array": { "version": "0.10.7", + "dev": true, "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", @@ -2060,10 +2130,12 @@ }, "node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/@humanwhocodes/gitignore-to-minimatch": { "version": "1.0.2", + "dev": true, "license": "Apache-2.0", "funding": { "type": "github", @@ -2072,6 +2144,7 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", + "dev": true, "license": "Apache-2.0", "engines": { "node": ">=12.22" @@ -2088,6 +2161,7 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -2095,6 +2169,7 @@ }, "node_modules/@jest/console": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -2110,6 +2185,7 @@ }, "node_modules/@jest/core": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", @@ -2155,6 +2231,7 @@ }, "node_modules/@jest/environment": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/fake-timers": "^27.5.1", @@ -2168,6 +2245,7 @@ }, "node_modules/@jest/expect": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2180,6 +2258,7 @@ }, "node_modules/@jest/expect-utils": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2191,6 +2270,7 @@ }, "node_modules/@jest/expect-utils/node_modules/jest-get-type": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2199,6 +2279,7 @@ }, "node_modules/@jest/expect/node_modules/@jest/transform": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2224,6 +2305,7 @@ }, "node_modules/@jest/expect/node_modules/@jest/types": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2240,6 +2322,7 @@ }, "node_modules/@jest/expect/node_modules/@types/yargs": { "version": "17.0.13", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2248,6 +2331,7 @@ }, "node_modules/@jest/expect/node_modules/ansi-styles": { "version": "5.2.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2259,6 +2343,7 @@ }, "node_modules/@jest/expect/node_modules/convert-source-map": { "version": "1.8.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2267,6 +2352,7 @@ }, "node_modules/@jest/expect/node_modules/diff-sequences": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2275,6 +2361,7 @@ }, "node_modules/@jest/expect/node_modules/expect": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2290,6 +2377,7 @@ }, "node_modules/@jest/expect/node_modules/jest-diff": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2304,6 +2392,7 @@ }, "node_modules/@jest/expect/node_modules/jest-get-type": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2312,6 +2401,7 @@ }, "node_modules/@jest/expect/node_modules/jest-haste-map": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2336,6 +2426,7 @@ }, "node_modules/@jest/expect/node_modules/jest-matcher-utils": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2350,6 +2441,7 @@ }, "node_modules/@jest/expect/node_modules/jest-message-util": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2369,6 +2461,7 @@ }, "node_modules/@jest/expect/node_modules/jest-regex-util": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2377,6 +2470,7 @@ }, "node_modules/@jest/expect/node_modules/jest-snapshot": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2411,6 +2505,7 @@ }, "node_modules/@jest/expect/node_modules/jest-util": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2427,6 +2522,7 @@ }, "node_modules/@jest/expect/node_modules/jest-worker": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2441,6 +2537,7 @@ }, "node_modules/@jest/expect/node_modules/pretty-format": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2454,16 +2551,19 @@ }, "node_modules/@jest/expect/node_modules/react-is": { "version": "18.2.0", + "dev": true, "license": "MIT", "peer": true }, "node_modules/@jest/expect/node_modules/safe-buffer": { "version": "5.1.2", + "dev": true, "license": "MIT", "peer": true }, "node_modules/@jest/expect/node_modules/supports-color": { "version": "8.1.1", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2478,6 +2578,7 @@ }, "node_modules/@jest/expect/node_modules/write-file-atomic": { "version": "4.0.2", + "dev": true, "license": "ISC", "peer": true, "dependencies": { @@ -2490,6 +2591,7 @@ }, "node_modules/@jest/fake-timers": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -2505,6 +2607,7 @@ }, "node_modules/@jest/globals": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -2517,6 +2620,7 @@ }, "node_modules/@jest/reporters": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", @@ -2559,6 +2663,7 @@ }, "node_modules/@jest/reporters/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -2566,6 +2671,7 @@ }, "node_modules/@jest/schemas": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2577,6 +2683,7 @@ }, "node_modules/@jest/source-map": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "callsites": "^3.0.0", @@ -2589,6 +2696,7 @@ }, "node_modules/@jest/source-map/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -2596,6 +2704,7 @@ }, "node_modules/@jest/test-result": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", @@ -2609,6 +2718,7 @@ }, "node_modules/@jest/test-sequencer": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", @@ -2622,6 +2732,7 @@ }, "node_modules/@jest/transform": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.1.0", @@ -2646,6 +2757,7 @@ }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "1.8.0", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.1" @@ -2653,10 +2765,12 @@ }, "node_modules/@jest/transform/node_modules/safe-buffer": { "version": "5.1.2", + "dev": true, "license": "MIT" }, "node_modules/@jest/transform/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -2664,6 +2778,7 @@ }, "node_modules/@jest/types": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", @@ -2704,6 +2819,7 @@ }, "node_modules/@jridgewell/source-map": { "version": "0.3.2", + "dev": true, "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", @@ -2724,6 +2840,7 @@ }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", + "dev": true, "license": "MIT" }, "node_modules/@lerna/changed": { @@ -5907,118 +6024,40 @@ } }, "node_modules/@lifterlms/brand": { - "version": "0.0.2", - "resolved": "file:packages/brand", - "dev": true, - "license": "GPL-3.0-or-later" + "resolved": "packages/brand", + "link": true }, "node_modules/@lifterlms/components": { - "version": "1.1.0", - "resolved": "file:packages/components", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@emotion/styled": "^11.6.0", - "@wordpress/api-fetch": "^5.2.6", - "@wordpress/components": "^19.5.0", - "@wordpress/compose": "^5.0.6", - "@wordpress/element": "^4.14.0", - "@wordpress/i18n": "^4.2.4", - "@wordpress/url": "^3.3.1", - "lodash": "^4.17.21", - "react-select": "^5.2.1", - "throttle-debounce": "^3.0.1" - } + "resolved": "packages/components", + "link": true }, "node_modules/@lifterlms/dev": { - "version": "0.2.1", - "resolved": "file:packages/dev", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "chalk": "^4.1.2", - "columnify": "^1.5.4", - "commander": "^8.2.0", - "inquirer": "^8.2.0", - "replace-in-file": "^6.3.1", - "semver": "^7.3.5", - "yaml": "^1.10.2" - }, - "bin": { - "llms-dev": "src/index.js" - }, - "engines": { - "node": ">=14.14.0" - } - }, - "node_modules/@lifterlms/dev/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } + "resolved": "packages/dev", + "link": true }, "node_modules/@lifterlms/fontawesome": { - "version": "0.0.1", - "resolved": "file:packages/fontawesome", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@emotion/styled": "^11.10.0", - "@fortawesome/fontawesome-free": "^6.1.2", - "react-infinite-scroller": "^1.2.6" - } + "resolved": "packages/fontawesome", + "link": true }, "node_modules/@lifterlms/icons": { - "version": "1.0.1-alpha.2", - "resolved": "file:packages/icons", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@wordpress/icons": "^6.1.1" - } + "resolved": "packages/icons", + "link": true }, "node_modules/@lifterlms/llms-e2e-test-utils": { - "version": "4.0.1", - "resolved": "file:packages/llms-e2e-test-utils", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@wordpress/e2e-test-utils": "^7.0.0", - "css-xpath": "^1.0.0", - "semver": "^7.3.5" - }, - "peerDependencies": { - "lodash": "^4.17.21" - } + "resolved": "packages/llms-e2e-test-utils", + "link": true }, "node_modules/@lifterlms/scripts": { - "version": "4.0.1", - "resolved": "file:packages/scripts", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@jest/test-sequencer": "^27.4.6", - "@wordpress/eslint-plugin": "^11.1.0", - "@wordpress/scripts": "^23.6.0", - "dotenv": "^8.2.0", - "eslint-import-resolver-node": "^0.3.6", - "fast-glob": "^3.2.11", - "mini-css-extract-plugin": "^2.6.1", - "webpack-remove-empty-scripts": "^0.8.1", - "webpack-rtl-plugin": "^2.0.0" - } + "resolved": "packages/scripts", + "link": true }, "node_modules/@lifterlms/utils": { - "version": "1.0.1-alpha.1", - "resolved": "file:packages/utils", - "dev": true, - "license": "GPL-3.0-or-later" + "resolved": "packages/utils", + "link": true }, "node_modules/@motionone/animation": { "version": "10.14.0", + "dev": true, "license": "MIT", "dependencies": { "@motionone/easing": "^10.14.0", @@ -6029,6 +6068,7 @@ }, "node_modules/@motionone/dom": { "version": "10.12.0", + "dev": true, "license": "MIT", "dependencies": { "@motionone/animation": "^10.12.0", @@ -6041,6 +6081,7 @@ }, "node_modules/@motionone/easing": { "version": "10.14.0", + "dev": true, "license": "MIT", "dependencies": { "@motionone/utils": "^10.14.0", @@ -6049,6 +6090,7 @@ }, "node_modules/@motionone/generators": { "version": "10.14.0", + "dev": true, "license": "MIT", "dependencies": { "@motionone/types": "^10.14.0", @@ -6058,10 +6100,12 @@ }, "node_modules/@motionone/types": { "version": "10.14.0", + "dev": true, "license": "MIT" }, "node_modules/@motionone/utils": { "version": "10.14.0", + "dev": true, "license": "MIT", "dependencies": { "@motionone/types": "^10.14.0", @@ -6071,6 +6115,7 @@ }, "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { "version": "5.1.1-v1", + "dev": true, "license": "MIT", "dependencies": { "eslint-scope": "5.1.1" @@ -6078,6 +6123,7 @@ }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", @@ -6089,6 +6135,7 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">= 8" @@ -6096,6 +6143,7 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", @@ -7003,6 +7051,7 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.7", + "dev": true, "license": "MIT", "dependencies": { "ansi-html-community": "^0.0.8", @@ -7051,6 +7100,7 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "locate-path": "^6.0.0", @@ -7065,6 +7115,7 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { "version": "6.0.0", + "dev": true, "license": "MIT", "dependencies": { "p-locate": "^5.0.0" @@ -7078,6 +7129,7 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-limit": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" @@ -7091,6 +7143,7 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "p-limit": "^3.0.2" @@ -7104,6 +7157,7 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { "version": "0.7.4", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">= 8" @@ -7111,10 +7165,12 @@ }, "node_modules/@polka/url": { "version": "1.0.0-next.21", + "dev": true, "license": "MIT" }, "node_modules/@popperjs/core": { "version": "2.11.6", + "dev": true, "license": "MIT", "funding": { "type": "opencollective", @@ -7123,6 +7179,7 @@ }, "node_modules/@romainberger/css-diff": { "version": "1.0.3", + "dev": true, "license": "MIT", "dependencies": { "lodash.merge": "^4.4.0", @@ -7131,6 +7188,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/ansi-regex": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7138,6 +7196,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/ansi-styles": { "version": "2.2.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7145,6 +7204,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/chalk": { "version": "1.1.3", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^2.2.1", @@ -7159,6 +7219,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/chalk/node_modules/supports-color": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -7166,6 +7227,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/escape-string-regexp": { "version": "1.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -7173,6 +7235,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/has-flag": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7180,6 +7243,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/postcss": { "version": "5.2.18", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^1.1.3", @@ -7193,6 +7257,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/strip-ansi": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" @@ -7203,6 +7268,7 @@ }, "node_modules/@romainberger/css-diff/node_modules/supports-color": { "version": "3.2.3", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^1.0.0" @@ -7213,15 +7279,18 @@ }, "node_modules/@sideway/formula": { "version": "3.0.1", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/@sinclair/typebox": { "version": "0.24.44", + "dev": true, "license": "MIT", "peer": true }, "node_modules/@sinonjs/commons": { "version": "1.8.3", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" @@ -7229,6 +7298,7 @@ }, "node_modules/@sinonjs/fake-timers": { "version": "8.1.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^1.7.0" @@ -7236,6 +7306,7 @@ }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7250,6 +7321,7 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7264,6 +7336,7 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7278,6 +7351,7 @@ }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7292,6 +7366,7 @@ }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7306,6 +7381,7 @@ }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7320,6 +7396,7 @@ }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7334,6 +7411,7 @@ }, "node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "6.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -7348,6 +7426,7 @@ }, "node_modules/@svgr/babel-preset": { "version": "6.4.0", + "dev": true, "license": "MIT", "dependencies": { "@svgr/babel-plugin-add-jsx-attribute": "^6.3.1", @@ -7372,6 +7451,7 @@ }, "node_modules/@svgr/core": { "version": "6.4.0", + "dev": true, "license": "MIT", "dependencies": { "@svgr/babel-preset": "^6.4.0", @@ -7389,6 +7469,7 @@ }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "6.4.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.4", @@ -7404,6 +7485,7 @@ }, "node_modules/@svgr/plugin-jsx": { "version": "6.4.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.18.5", @@ -7424,6 +7506,7 @@ }, "node_modules/@svgr/plugin-svgo": { "version": "6.3.1", + "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.1", @@ -7443,6 +7526,7 @@ }, "node_modules/@svgr/webpack": { "version": "6.4.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.18.5", @@ -7463,17 +7547,18 @@ } }, "node_modules/@testing-library/dom": { - "version": "8.20.1", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", - "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", + "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "dev": true, "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", - "aria-query": "5.1.3", + "aria-query": "^5.0.0", "chalk": "^4.1.0", "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", + "lz-string": "^1.4.4", "pretty-format": "^27.0.2" }, "engines": { @@ -7484,6 +7569,7 @@ "version": "12.1.5", "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-12.1.5.tgz", "integrity": "sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==", + "dev": true, "dependencies": { "@babel/runtime": "^7.12.5", "@testing-library/dom": "^8.0.0", @@ -7499,6 +7585,7 @@ }, "node_modules/@tootallnate/once": { "version": "1.1.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 6" @@ -7506,6 +7593,7 @@ }, "node_modules/@trysound/sax": { "version": "0.2.0", + "dev": true, "license": "ISC", "engines": { "node": ">=10.13.0" @@ -7514,10 +7602,12 @@ "node_modules/@types/aria-query": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", - "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==" + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", + "dev": true }, "node_modules/@types/babel__core": { "version": "7.1.19", + "dev": true, "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", @@ -7529,6 +7619,7 @@ }, "node_modules/@types/babel__generator": { "version": "7.6.4", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" @@ -7536,6 +7627,7 @@ }, "node_modules/@types/babel__template": { "version": "7.4.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", @@ -7544,6 +7636,7 @@ }, "node_modules/@types/babel__traverse": { "version": "7.18.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.3.0" @@ -7551,6 +7644,7 @@ }, "node_modules/@types/body-parser": { "version": "1.19.2", + "dev": true, "license": "MIT", "dependencies": { "@types/connect": "*", @@ -7559,6 +7653,7 @@ }, "node_modules/@types/bonjour": { "version": "3.5.10", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7566,6 +7661,7 @@ }, "node_modules/@types/cheerio": { "version": "0.22.31", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7573,6 +7669,7 @@ }, "node_modules/@types/connect": { "version": "3.4.35", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7580,6 +7677,7 @@ }, "node_modules/@types/connect-history-api-fallback": { "version": "1.3.5", + "dev": true, "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", @@ -7588,6 +7686,7 @@ }, "node_modules/@types/eslint": { "version": "8.21.1", + "dev": true, "license": "MIT", "dependencies": { "@types/estree": "*", @@ -7596,6 +7695,7 @@ }, "node_modules/@types/eslint-scope": { "version": "3.7.4", + "dev": true, "license": "MIT", "dependencies": { "@types/eslint": "*", @@ -7604,10 +7704,12 @@ }, "node_modules/@types/estree": { "version": "0.0.51", + "dev": true, "license": "MIT" }, "node_modules/@types/express": { "version": "4.17.14", + "dev": true, "license": "MIT", "dependencies": { "@types/body-parser": "*", @@ -7618,6 +7720,7 @@ }, "node_modules/@types/express-serve-static-core": { "version": "4.17.31", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -7627,6 +7730,7 @@ }, "node_modules/@types/glob": { "version": "7.2.0", + "dev": true, "license": "MIT", "dependencies": { "@types/minimatch": "*", @@ -7635,6 +7739,7 @@ }, "node_modules/@types/graceful-fs": { "version": "4.1.5", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7642,6 +7747,7 @@ }, "node_modules/@types/http-proxy": { "version": "1.17.9", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7649,10 +7755,12 @@ }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", + "dev": true, "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" @@ -7660,6 +7768,7 @@ }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" @@ -7667,38 +7776,47 @@ }, "node_modules/@types/json-schema": { "version": "7.0.11", + "dev": true, "license": "MIT" }, "node_modules/@types/json5": { "version": "0.0.29", + "dev": true, "license": "MIT" }, "node_modules/@types/lodash": { "version": "4.14.186", + "dev": true, "license": "MIT" }, "node_modules/@types/mime": { "version": "3.0.1", + "dev": true, "license": "MIT" }, "node_modules/@types/minimatch": { "version": "3.0.5", + "dev": true, "license": "MIT" }, "node_modules/@types/minimist": { "version": "1.2.2", + "dev": true, "license": "MIT" }, "node_modules/@types/mousetrap": { "version": "1.6.9", + "dev": true, "license": "MIT" }, "node_modules/@types/node": { "version": "18.14.0", + "dev": true, "license": "MIT" }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", + "dev": true, "license": "MIT" }, "node_modules/@types/parse-json": { @@ -7707,26 +7825,32 @@ }, "node_modules/@types/prettier": { "version": "2.7.1", + "dev": true, "license": "MIT" }, "node_modules/@types/prop-types": { "version": "15.7.5", + "dev": true, "license": "MIT" }, "node_modules/@types/q": { "version": "1.5.5", + "dev": true, "license": "MIT" }, "node_modules/@types/qs": { "version": "6.9.7", + "dev": true, "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.4", + "dev": true, "license": "MIT" }, "node_modules/@types/react": { "version": "17.0.50", + "dev": true, "license": "MIT", "dependencies": { "@types/prop-types": "*", @@ -7736,6 +7860,7 @@ }, "node_modules/@types/react-dom": { "version": "17.0.17", + "dev": true, "license": "MIT", "dependencies": { "@types/react": "^17" @@ -7743,6 +7868,7 @@ }, "node_modules/@types/react-transition-group": { "version": "4.4.5", + "dev": true, "license": "MIT", "dependencies": { "@types/react": "*" @@ -7750,14 +7876,17 @@ }, "node_modules/@types/retry": { "version": "0.12.0", + "dev": true, "license": "MIT" }, "node_modules/@types/scheduler": { "version": "0.16.2", + "dev": true, "license": "MIT" }, "node_modules/@types/serve-index": { "version": "1.9.1", + "dev": true, "license": "MIT", "dependencies": { "@types/express": "*" @@ -7765,6 +7894,7 @@ }, "node_modules/@types/serve-static": { "version": "1.15.0", + "dev": true, "license": "MIT", "dependencies": { "@types/mime": "*", @@ -7773,6 +7903,7 @@ }, "node_modules/@types/sockjs": { "version": "0.3.33", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7780,18 +7911,22 @@ }, "node_modules/@types/source-list-map": { "version": "0.1.2", + "dev": true, "license": "MIT" }, "node_modules/@types/stack-utils": { "version": "2.0.1", + "dev": true, "license": "MIT" }, "node_modules/@types/tapable": { "version": "1.0.8", + "dev": true, "license": "MIT" }, "node_modules/@types/uglify-js": { "version": "3.17.1", + "dev": true, "license": "MIT", "dependencies": { "source-map": "^0.6.1" @@ -7799,6 +7934,7 @@ }, "node_modules/@types/uglify-js/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -7829,6 +7965,7 @@ }, "node_modules/@types/webpack-sources": { "version": "3.2.0", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -7838,6 +7975,7 @@ }, "node_modules/@types/webpack-sources/node_modules/source-map": { "version": "0.7.4", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">= 8" @@ -7845,6 +7983,7 @@ }, "node_modules/@types/ws": { "version": "8.5.3", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7852,6 +7991,7 @@ }, "node_modules/@types/yargs": { "version": "16.0.4", + "dev": true, "license": "MIT", "dependencies": { "@types/yargs-parser": "*" @@ -7859,10 +7999,12 @@ }, "node_modules/@types/yargs-parser": { "version": "21.0.0", + "dev": true, "license": "MIT" }, "node_modules/@types/yauzl": { "version": "2.10.0", + "dev": true, "license": "MIT", "optional": true, "dependencies": { @@ -7871,6 +8013,7 @@ }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.39.0", + "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/scope-manager": "5.39.0", @@ -7901,6 +8044,7 @@ }, "node_modules/@typescript-eslint/experimental-utils": { "version": "5.39.0", + "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/utils": "5.39.0" @@ -7918,6 +8062,7 @@ }, "node_modules/@typescript-eslint/parser": { "version": "5.39.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/scope-manager": "5.39.0", @@ -7943,6 +8088,7 @@ }, "node_modules/@typescript-eslint/scope-manager": { "version": "5.39.0", + "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.39.0", @@ -7958,6 +8104,7 @@ }, "node_modules/@typescript-eslint/type-utils": { "version": "5.39.0", + "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/typescript-estree": "5.39.0", @@ -7983,6 +8130,7 @@ }, "node_modules/@typescript-eslint/types": { "version": "5.39.0", + "dev": true, "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -7994,6 +8142,7 @@ }, "node_modules/@typescript-eslint/typescript-estree": { "version": "5.39.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/types": "5.39.0", @@ -8019,6 +8168,7 @@ }, "node_modules/@typescript-eslint/utils": { "version": "5.39.0", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -8041,6 +8191,7 @@ }, "node_modules/@typescript-eslint/visitor-keys": { "version": "5.39.0", + "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.39.0", @@ -8056,6 +8207,7 @@ }, "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { "version": "3.3.0", + "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -8063,10 +8215,12 @@ }, "node_modules/@use-gesture/core": { "version": "10.2.20", + "dev": true, "license": "MIT" }, "node_modules/@use-gesture/react": { "version": "10.2.20", + "dev": true, "license": "MIT", "dependencies": { "@use-gesture/core": "10.2.20" @@ -8077,6 +8231,7 @@ }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/helper-numbers": "1.11.1", @@ -8085,18 +8240,22 @@ }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.11.1", + "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.11.1", + "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.11.1", + "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.1", @@ -8106,10 +8265,12 @@ }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.1", + "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8120,6 +8281,7 @@ }, "node_modules/@webassemblyjs/ieee754": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" @@ -8127,6 +8289,7 @@ }, "node_modules/@webassemblyjs/leb128": { "version": "1.11.1", + "dev": true, "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" @@ -8134,10 +8297,12 @@ }, "node_modules/@webassemblyjs/utf8": { "version": "1.11.1", + "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8152,6 +8317,7 @@ }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8163,6 +8329,7 @@ }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8173,6 +8340,7 @@ }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8185,6 +8353,7 @@ }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.11.1", + "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8193,6 +8362,7 @@ }, "node_modules/@webpack-cli/configtest": { "version": "1.2.0", + "dev": true, "license": "MIT", "peerDependencies": { "webpack": "4.x.x || 5.x.x", @@ -8201,6 +8371,7 @@ }, "node_modules/@webpack-cli/info": { "version": "1.5.0", + "dev": true, "license": "MIT", "dependencies": { "envinfo": "^7.7.3" @@ -8211,6 +8382,7 @@ }, "node_modules/@webpack-cli/serve": { "version": "1.7.0", + "dev": true, "license": "MIT", "peerDependencies": { "webpack-cli": "4.x.x" @@ -8223,6 +8395,7 @@ }, "node_modules/@wojtekmaj/enzyme-adapter-react-17": { "version": "0.6.7", + "dev": true, "license": "MIT", "dependencies": { "@wojtekmaj/enzyme-adapter-utils": "^0.1.4", @@ -8240,6 +8413,7 @@ }, "node_modules/@wojtekmaj/enzyme-adapter-utils": { "version": "0.1.4", + "dev": true, "license": "MIT", "dependencies": { "function.prototype.name": "^1.1.0", @@ -8253,6 +8427,7 @@ }, "node_modules/@wordpress/a11y": { "version": "3.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8265,6 +8440,7 @@ }, "node_modules/@wordpress/api-fetch": { "version": "5.2.7", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8277,6 +8453,7 @@ }, "node_modules/@wordpress/babel-plugin-import-jsx-pragma": { "version": "3.2.0", + "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -8287,6 +8464,7 @@ }, "node_modules/@wordpress/babel-preset-default": { "version": "6.17.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/core": "^7.16.0", @@ -8308,10 +8486,12 @@ }, "node_modules/@wordpress/base-styles": { "version": "4.9.0", + "dev": true, "license": "GPL-2.0-or-later" }, "node_modules/@wordpress/browserslist-config": { "version": "4.1.3", + "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -8319,6 +8499,7 @@ }, "node_modules/@wordpress/components": { "version": "19.17.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8372,10 +8553,12 @@ }, "node_modules/@wordpress/components/node_modules/@emotion/utils": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/@wordpress/components/node_modules/@wordpress/icons": { "version": "9.9.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8388,6 +8571,7 @@ }, "node_modules/@wordpress/compose": { "version": "5.16.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8414,6 +8598,7 @@ }, "node_modules/@wordpress/data": { "version": "7.2.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8440,10 +8625,12 @@ }, "node_modules/@wordpress/data/node_modules/is-promise": { "version": "4.0.0", + "dev": true, "license": "MIT" }, "node_modules/@wordpress/date": { "version": "4.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8457,6 +8644,7 @@ }, "node_modules/@wordpress/dependency-extraction-webpack-plugin": { "version": "3.7.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "json2php": "^0.0.4", @@ -8471,6 +8659,7 @@ }, "node_modules/@wordpress/deprecated": { "version": "3.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8499,6 +8688,7 @@ }, "node_modules/@wordpress/dom": { "version": "3.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8510,6 +8700,7 @@ }, "node_modules/@wordpress/dom-ready": { "version": "3.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8520,6 +8711,7 @@ }, "node_modules/@wordpress/e2e-test-utils": { "version": "7.11.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8541,6 +8733,7 @@ }, "node_modules/@wordpress/e2e-test-utils/node_modules/@wordpress/api-fetch": { "version": "6.15.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8553,6 +8746,7 @@ }, "node_modules/@wordpress/element": { "version": "4.16.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8570,6 +8764,7 @@ }, "node_modules/@wordpress/escape-html": { "version": "2.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8580,6 +8775,7 @@ }, "node_modules/@wordpress/eslint-plugin": { "version": "11.1.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/eslint-parser": "^7.16.0", @@ -8621,6 +8817,7 @@ }, "node_modules/@wordpress/hooks": { "version": "3.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8631,6 +8828,7 @@ }, "node_modules/@wordpress/i18n": { "version": "4.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8649,6 +8847,7 @@ }, "node_modules/@wordpress/icons": { "version": "6.3.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8661,6 +8860,7 @@ }, "node_modules/@wordpress/is-shallow-equal": { "version": "4.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8671,6 +8871,7 @@ }, "node_modules/@wordpress/jest-console": { "version": "5.4.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8685,6 +8886,7 @@ }, "node_modules/@wordpress/jest-preset-default": { "version": "8.5.2", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@wojtekmaj/enzyme-adapter-react-17": "^0.6.1", @@ -8705,6 +8907,7 @@ }, "node_modules/@wordpress/keycodes": { "version": "3.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8718,6 +8921,7 @@ }, "node_modules/@wordpress/npm-package-json-lint-config": { "version": "4.3.0", + "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=14" @@ -8728,6 +8932,7 @@ }, "node_modules/@wordpress/postcss-plugins-preset": { "version": "3.10.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@wordpress/base-styles": "^4.7.0", @@ -8742,6 +8947,7 @@ }, "node_modules/@wordpress/prettier-config": { "version": "1.4.0", + "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -8752,6 +8958,7 @@ }, "node_modules/@wordpress/primitives": { "version": "3.16.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8764,6 +8971,7 @@ }, "node_modules/@wordpress/priority-queue": { "version": "2.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8775,6 +8983,7 @@ }, "node_modules/@wordpress/redux-routine": { "version": "4.18.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8791,10 +9000,12 @@ }, "node_modules/@wordpress/redux-routine/node_modules/is-promise": { "version": "4.0.0", + "dev": true, "license": "MIT" }, "node_modules/@wordpress/rich-text": { "version": "5.16.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8819,6 +9030,7 @@ }, "node_modules/@wordpress/scripts": { "version": "23.7.2", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/core": "^7.16.0", @@ -8891,6 +9103,7 @@ }, "node_modules/@wordpress/scripts/node_modules/@wordpress/eslint-plugin": { "version": "12.9.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/eslint-parser": "^7.16.0", @@ -8931,10 +9144,12 @@ }, "node_modules/@wordpress/scripts/node_modules/devtools-protocol": { "version": "0.0.981744", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/@wordpress/scripts/node_modules/jest": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", @@ -8959,6 +9174,7 @@ "node_modules/@wordpress/scripts/node_modules/prettier": { "name": "wp-prettier", "version": "2.6.2", + "dev": true, "license": "MIT", "bin": { "prettier": "bin-prettier.js" @@ -8972,6 +9188,7 @@ }, "node_modules/@wordpress/scripts/node_modules/puppeteer-core": { "version": "13.7.0", + "dev": true, "license": "Apache-2.0", "dependencies": { "cross-fetch": "3.1.5", @@ -8993,6 +9210,7 @@ }, "node_modules/@wordpress/scripts/node_modules/ws": { "version": "8.5.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" @@ -9012,6 +9230,7 @@ }, "node_modules/@wordpress/stylelint-config": { "version": "20.0.3", + "dev": true, "license": "MIT", "dependencies": { "stylelint-config-recommended": "^6.0.0", @@ -9026,6 +9245,7 @@ }, "node_modules/@wordpress/url": { "version": "3.19.0", + "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -9037,6 +9257,7 @@ }, "node_modules/@wordpress/warning": { "version": "2.18.0", + "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -9044,10 +9265,12 @@ }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", + "dev": true, "license": "Apache-2.0" }, "node_modules/@yarnpkg/lockfile": { @@ -9105,6 +9328,7 @@ }, "node_modules/abab": { "version": "2.0.6", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/abbrev": { @@ -9114,6 +9338,7 @@ }, "node_modules/accepts": { "version": "1.3.8", + "dev": true, "license": "MIT", "dependencies": { "mime-types": "~2.1.34", @@ -9125,6 +9350,7 @@ }, "node_modules/acorn": { "version": "6.4.2", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -9135,6 +9361,7 @@ }, "node_modules/acorn-globals": { "version": "6.0.0", + "dev": true, "license": "MIT", "dependencies": { "acorn": "^7.1.1", @@ -9143,6 +9370,7 @@ }, "node_modules/acorn-globals/node_modules/acorn": { "version": "7.4.1", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -9153,6 +9381,7 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", + "dev": true, "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" @@ -9162,6 +9391,7 @@ "version": "1.8.2", "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, "dependencies": { "acorn": "^7.0.0", "acorn-walk": "^7.0.0", @@ -9172,6 +9402,7 @@ "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -9181,6 +9412,7 @@ }, "node_modules/acorn-walk": { "version": "7.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -9193,6 +9425,7 @@ }, "node_modules/adm-zip": { "version": "0.5.9", + "dev": true, "license": "MIT", "engines": { "node": ">=6.0" @@ -9200,6 +9433,7 @@ }, "node_modules/agent-base": { "version": "6.0.2", + "dev": true, "license": "MIT", "dependencies": { "debug": "4" @@ -9235,6 +9469,7 @@ }, "node_modules/ajv": { "version": "6.12.6", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -9249,6 +9484,7 @@ }, "node_modules/ajv-errors": { "version": "1.0.1", + "dev": true, "license": "MIT", "peerDependencies": { "ajv": ">=5.0.0" @@ -9256,6 +9492,7 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", + "dev": true, "license": "MIT", "dependencies": { "ajv": "^8.0.0" @@ -9271,6 +9508,7 @@ }, "node_modules/ajv-formats/node_modules/ajv": { "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -9285,10 +9523,12 @@ }, "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/ajv-keywords": { "version": "3.5.2", + "dev": true, "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" @@ -9296,6 +9536,7 @@ }, "node_modules/alphanum-sort": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/ansi-colors": { @@ -9311,6 +9552,7 @@ }, "node_modules/ansi-escapes": { "version": "4.3.2", + "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.21.3" @@ -9335,6 +9577,7 @@ }, "node_modules/ansi-html-community": { "version": "0.0.8", + "dev": true, "engines": [ "node >= 0.8.0" ], @@ -9345,6 +9588,7 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9352,6 +9596,7 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", + "dev": true, "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -9373,6 +9618,7 @@ }, "node_modules/ansis": { "version": "1.4.0", + "dev": true, "license": "ISC", "engines": { "node": ">=12.13" @@ -9384,6 +9630,7 @@ }, "node_modules/anymatch": { "version": "3.1.2", + "dev": true, "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", @@ -9441,12 +9688,14 @@ }, "node_modules/argparse": { "version": "2.0.1", + "dev": true, "license": "Python-2.0" }, "node_modules/aria-query": { "version": "5.1.3", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, "dependencies": { "deep-equal": "^2.0.5" } @@ -9491,23 +9740,12 @@ }, "node_modules/arr-union": { "version": "3.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/array-differ": { "version": "3.0.0", "dev": true, @@ -9526,6 +9764,7 @@ }, "node_modules/array-flatten": { "version": "1.1.1", + "dev": true, "license": "MIT" }, "node_modules/array-ify": { @@ -9535,6 +9774,7 @@ }, "node_modules/array-includes": { "version": "3.1.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9560,6 +9800,7 @@ }, "node_modules/array-union": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9567,6 +9808,7 @@ }, "node_modules/array-uniq": { "version": "1.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9582,6 +9824,7 @@ }, "node_modules/array.prototype.filter": { "version": "1.0.1", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9599,6 +9842,7 @@ }, "node_modules/array.prototype.find": { "version": "2.2.0", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9612,6 +9856,7 @@ }, "node_modules/array.prototype.flat": { "version": "1.3.0", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9628,6 +9873,7 @@ }, "node_modules/array.prototype.flatmap": { "version": "1.3.0", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9644,6 +9890,7 @@ }, "node_modules/array.prototype.reduce": { "version": "1.0.4", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9661,6 +9908,7 @@ }, "node_modules/arrify": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9675,6 +9923,7 @@ "version": "5.4.1", "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", @@ -9685,12 +9934,14 @@ "node_modules/asn1.js/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true }, "node_modules/assert": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, "dependencies": { "object-assign": "^4.1.1", "util": "0.10.3" @@ -9699,12 +9950,14 @@ "node_modules/assert/node_modules/inherits": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==" + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "dev": true }, "node_modules/assert/node_modules/util": { "version": "0.10.3", "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", + "dev": true, "dependencies": { "inherits": "2.0.1" } @@ -9719,10 +9972,12 @@ }, "node_modules/ast-types-flow": { "version": "0.0.7", + "dev": true, "license": "ISC" }, "node_modules/astral-regex": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9730,6 +9985,7 @@ }, "node_modules/async": { "version": "2.6.4", + "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.17.14" @@ -9757,7 +10013,8 @@ "node_modules/async-limiter": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true }, "node_modules/async-settle": { "version": "1.0.0", @@ -9772,6 +10029,7 @@ }, "node_modules/asynckit": { "version": "0.4.0", + "dev": true, "license": "MIT" }, "node_modules/at-least-node": { @@ -9795,6 +10053,7 @@ }, "node_modules/autoprefixer": { "version": "10.4.12", + "dev": true, "funding": [ { "type": "opencollective", @@ -9828,6 +10087,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, "engines": { "node": ">= 0.4" }, @@ -9837,6 +10097,7 @@ }, "node_modules/axe-core": { "version": "4.4.3", + "dev": true, "license": "MPL-2.0", "engines": { "node": ">=4" @@ -9844,10 +10105,12 @@ }, "node_modules/axobject-query": { "version": "2.2.0", + "dev": true, "license": "Apache-2.0" }, "node_modules/babel-jest": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/transform": "^27.5.1", @@ -9868,6 +10131,7 @@ }, "node_modules/babel-loader": { "version": "8.2.5", + "dev": true, "license": "MIT", "dependencies": { "find-cache-dir": "^3.3.1", @@ -9885,6 +10149,7 @@ }, "node_modules/babel-loader/node_modules/schema-utils": { "version": "2.7.1", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.5", @@ -9901,6 +10166,7 @@ }, "node_modules/babel-plugin-dynamic-import-node": { "version": "2.3.3", + "dev": true, "license": "MIT", "dependencies": { "object.assign": "^4.1.0" @@ -9908,6 +10174,7 @@ }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", @@ -9922,6 +10189,7 @@ }, "node_modules/babel-plugin-istanbul/node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", + "dev": true, "license": "ISC", "dependencies": { "camelcase": "^5.3.1", @@ -9936,6 +10204,7 @@ }, "node_modules/babel-plugin-istanbul/node_modules/argparse": { "version": "1.0.10", + "dev": true, "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -9943,6 +10212,7 @@ }, "node_modules/babel-plugin-istanbul/node_modules/camelcase": { "version": "5.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -9950,6 +10220,7 @@ }, "node_modules/babel-plugin-istanbul/node_modules/js-yaml": { "version": "3.14.1", + "dev": true, "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -9961,6 +10232,7 @@ }, "node_modules/babel-plugin-istanbul/node_modules/resolve-from": { "version": "5.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9968,10 +10240,12 @@ }, "node_modules/babel-plugin-istanbul/node_modules/sprintf-js": { "version": "1.0.3", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/babel-plugin-jest-hoist": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", @@ -9998,6 +10272,7 @@ }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.3.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.17.7", @@ -10010,6 +10285,7 @@ }, "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -10017,6 +10293,7 @@ }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.6.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3", @@ -10028,6 +10305,7 @@ }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.4.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3" @@ -10038,6 +10316,7 @@ }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -10059,6 +10338,7 @@ }, "node_modules/babel-preset-current-node-syntax/node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -10069,6 +10349,7 @@ }, "node_modules/babel-preset-current-node-syntax/node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -10079,6 +10360,7 @@ }, "node_modules/babel-preset-jest": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^27.5.1", @@ -10095,6 +10377,7 @@ "version": "10.0.0", "resolved": "https://registry.npmjs.org/babelify/-/babelify-10.0.0.tgz", "integrity": "sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg==", + "dev": true, "engines": { "node": ">=6.9.0" }, @@ -10163,10 +10446,12 @@ }, "node_modules/balanced-match": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", + "dev": true, "funding": [ { "type": "github", @@ -10185,6 +10470,7 @@ }, "node_modules/batch": { "version": "0.6.1", + "dev": true, "license": "MIT" }, "node_modules/before-after-hook": { @@ -10194,6 +10480,7 @@ }, "node_modules/big.js": { "version": "5.2.2", + "dev": true, "license": "MIT", "engines": { "node": "*" @@ -10237,6 +10524,7 @@ }, "node_modules/binary-extensions": { "version": "2.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -10258,6 +10546,7 @@ }, "node_modules/bl": { "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { "buffer": "^5.5.0", @@ -10267,6 +10556,7 @@ }, "node_modules/bl/node_modules/readable-stream": { "version": "3.6.0", + "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -10280,12 +10570,14 @@ "node_modules/bn.js": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "dev": true }, "node_modules/body-parser": { "version": "1.18.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", "integrity": "sha512-YQyoqQG3sO8iCmf8+hyVpgHHOv0/hCEFiS4zTGUwTA1HjAFX66wRcNQrVCeJq9pgESMRvUAOvSil5MJlmccuKQ==", + "dev": true, "dependencies": { "bytes": "3.0.0", "content-type": "~1.0.4", @@ -10306,6 +10598,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { "ms": "2.0.0" } @@ -10314,6 +10607,7 @@ "version": "0.4.23", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -10324,14 +10618,17 @@ "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/body-scroll-lock": { "version": "3.1.5", + "dev": true, "license": "MIT" }, "node_modules/bonjour-service": { "version": "1.0.14", + "dev": true, "license": "MIT", "dependencies": { "array-flatten": "^2.1.2", @@ -10342,14 +10639,17 @@ }, "node_modules/bonjour-service/node_modules/array-flatten": { "version": "2.1.2", + "dev": true, "license": "MIT" }, "node_modules/boolbase": { "version": "1.0.0", + "dev": true, "license": "ISC" }, "node_modules/brace-expansion": { "version": "1.1.11", + "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", @@ -10358,6 +10658,7 @@ }, "node_modules/braces": { "version": "3.0.2", + "dev": true, "license": "MIT", "dependencies": { "fill-range": "^7.0.1" @@ -10368,17 +10669,20 @@ }, "node_modules/brcast": { "version": "2.0.2", + "dev": true, "license": "MIT" }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "dev": true }, "node_modules/browser-pack": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz", "integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==", + "dev": true, "dependencies": { "combine-source-map": "~0.8.0", "defined": "^1.0.0", @@ -10393,12 +10697,14 @@ }, "node_modules/browser-process-hrtime": { "version": "1.0.0", + "dev": true, "license": "BSD-2-Clause" }, "node_modules/browser-resolve": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz", "integrity": "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==", + "dev": true, "dependencies": { "resolve": "^1.17.0" } @@ -10407,6 +10713,7 @@ "version": "17.0.0", "resolved": "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz", "integrity": "sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w==", + "dev": true, "dependencies": { "assert": "^1.4.0", "browser-pack": "^6.0.1", @@ -10468,6 +10775,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, "dependencies": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", @@ -10481,6 +10789,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, "dependencies": { "browserify-aes": "^1.0.4", "browserify-des": "^1.0.0", @@ -10491,6 +10800,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, "dependencies": { "cipher-base": "^1.0.1", "des.js": "^1.0.0", @@ -10502,6 +10812,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, "dependencies": { "bn.js": "^5.0.0", "randombytes": "^2.0.1" @@ -10511,6 +10822,7 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, "dependencies": { "bn.js": "^5.1.1", "browserify-rsa": "^4.0.1", @@ -10527,6 +10839,7 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -10540,6 +10853,7 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, "dependencies": { "pako": "~1.0.5" } @@ -10548,6 +10862,7 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", + "dev": true, "dependencies": { "base64-js": "^1.0.2", "ieee754": "^1.1.4" @@ -10585,6 +10900,7 @@ }, "node_modules/bser": { "version": "2.1.1", + "dev": true, "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" @@ -10592,6 +10908,7 @@ }, "node_modules/buffer": { "version": "5.7.1", + "dev": true, "funding": [ { "type": "github", @@ -10614,6 +10931,7 @@ }, "node_modules/buffer-crc32": { "version": "0.2.13", + "dev": true, "license": "MIT", "engines": { "node": "*" @@ -10629,17 +10947,20 @@ }, "node_modules/buffer-from": { "version": "1.1.2", + "dev": true, "license": "MIT" }, "node_modules/buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", + "dev": true }, "node_modules/builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", + "dev": true }, "node_modules/builtins": { "version": "1.0.3", @@ -10656,6 +10977,7 @@ }, "node_modules/bytes": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -10788,10 +11110,12 @@ "node_modules/cached-path-relative": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.1.0.tgz", - "integrity": "sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==" + "integrity": "sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==", + "dev": true }, "node_modules/call-bind": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.1", @@ -10803,6 +11127,7 @@ }, "node_modules/caller-callsite": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "callsites": "^2.0.0" @@ -10813,6 +11138,7 @@ }, "node_modules/caller-callsite/node_modules/callsites": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -10820,6 +11146,7 @@ }, "node_modules/caller-path": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "caller-callsite": "^2.0.0" @@ -10837,6 +11164,7 @@ }, "node_modules/camel-case": { "version": "4.1.2", + "dev": true, "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", @@ -10845,6 +11173,7 @@ }, "node_modules/camelcase": { "version": "6.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -10855,6 +11184,7 @@ }, "node_modules/camelcase-keys": { "version": "6.2.2", + "dev": true, "license": "MIT", "dependencies": { "camelcase": "^5.3.1", @@ -10870,6 +11200,7 @@ }, "node_modules/camelcase-keys/node_modules/camelcase": { "version": "5.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -10877,6 +11208,7 @@ }, "node_modules/caniuse-api": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -10887,6 +11219,7 @@ }, "node_modules/caniuse-api/node_modules/lodash.memoize": { "version": "4.1.2", + "dev": true, "license": "MIT" }, "node_modules/caniuse-lite": { @@ -10905,6 +11238,7 @@ }, "node_modules/capital-case": { "version": "1.0.4", + "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -10923,6 +11257,7 @@ }, "node_modules/chalk": { "version": "4.1.2", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -10937,6 +11272,7 @@ }, "node_modules/change-case": { "version": "4.1.2", + "dev": true, "license": "MIT", "dependencies": { "camel-case": "^4.1.2", @@ -10955,6 +11291,7 @@ }, "node_modules/char-regex": { "version": "1.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -10998,10 +11335,12 @@ }, "node_modules/chardet": { "version": "0.7.0", + "dev": true, "license": "MIT" }, "node_modules/check-node-version": { "version": "4.2.1", + "dev": true, "license": "Unlicense", "dependencies": { "chalk": "^3.0.0", @@ -11020,6 +11359,7 @@ }, "node_modules/check-node-version/node_modules/chalk": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -11031,6 +11371,7 @@ }, "node_modules/check-node-version/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -11038,6 +11379,7 @@ }, "node_modules/cheerio": { "version": "1.0.0-rc.12", + "dev": true, "license": "MIT", "dependencies": { "cheerio-select": "^2.1.0", @@ -11057,6 +11399,7 @@ }, "node_modules/cheerio-select": { "version": "2.1.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -11072,6 +11415,7 @@ }, "node_modules/chokidar": { "version": "3.5.3", + "dev": true, "funding": [ { "type": "individual", @@ -11097,6 +11441,7 @@ }, "node_modules/chokidar/node_modules/glob-parent": { "version": "5.1.2", + "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.1" @@ -11115,6 +11460,7 @@ }, "node_modules/chrome-trace-event": { "version": "1.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=6.0" @@ -11122,12 +11468,14 @@ }, "node_modules/ci-info": { "version": "3.4.0", + "dev": true, "license": "MIT" }, "node_modules/cipher-base": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -11135,6 +11483,7 @@ }, "node_modules/cjs-module-lexer": { "version": "1.2.2", + "dev": true, "license": "MIT" }, "node_modules/class-utils": { @@ -11159,6 +11508,7 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, "dependencies": { "source-map": "~0.6.0" }, @@ -11170,6 +11520,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -11184,6 +11535,7 @@ }, "node_modules/clean-webpack-plugin": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/webpack": "^4.4.31", @@ -11198,6 +11550,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/@types/webpack": { "version": "4.41.32", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -11210,6 +11563,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/array-union": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "array-uniq": "^1.0.1" @@ -11220,6 +11574,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/del": { "version": "4.1.1", + "dev": true, "license": "MIT", "dependencies": { "@types/glob": "^7.1.1", @@ -11236,6 +11591,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/globby": { "version": "6.1.0", + "dev": true, "license": "MIT", "dependencies": { "array-union": "^1.0.1", @@ -11250,6 +11606,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/globby/node_modules/pify": { "version": "2.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -11257,6 +11614,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/p-map": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -11264,6 +11622,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/rimraf": { "version": "2.7.1", + "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -11274,6 +11633,7 @@ }, "node_modules/clean-webpack-plugin/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -11281,6 +11641,7 @@ }, "node_modules/cli-cursor": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" @@ -11291,6 +11652,7 @@ }, "node_modules/cli-spinners": { "version": "2.6.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -11301,6 +11663,7 @@ }, "node_modules/cli-width": { "version": "3.0.0", + "dev": true, "license": "ISC", "engines": { "node": ">= 10" @@ -11308,6 +11671,7 @@ }, "node_modules/clipboard": { "version": "2.0.11", + "dev": true, "license": "MIT", "dependencies": { "good-listener": "^1.2.2", @@ -11333,6 +11697,7 @@ }, "node_modules/clone-deep": { "version": "0.2.4", + "dev": true, "license": "MIT", "dependencies": { "for-own": "^0.1.3", @@ -11347,6 +11712,7 @@ }, "node_modules/clone-deep/node_modules/for-own": { "version": "0.1.5", + "dev": true, "license": "MIT", "dependencies": { "for-in": "^1.0.1" @@ -11357,6 +11723,7 @@ }, "node_modules/clone-deep/node_modules/is-plain-object": { "version": "2.0.4", + "dev": true, "license": "MIT", "dependencies": { "isobject": "^3.0.1" @@ -11393,6 +11760,7 @@ }, "node_modules/co": { "version": "4.6.0", + "dev": true, "license": "MIT", "engines": { "iojs": ">= 1.0.0", @@ -11401,6 +11769,7 @@ }, "node_modules/coa": { "version": "2.0.2", + "dev": true, "license": "MIT", "dependencies": { "@types/q": "^1.5.1", @@ -11413,6 +11782,7 @@ }, "node_modules/coa/node_modules/ansi-styles": { "version": "3.2.1", + "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -11423,6 +11793,7 @@ }, "node_modules/coa/node_modules/chalk": { "version": "2.4.2", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -11435,6 +11806,7 @@ }, "node_modules/coa/node_modules/color-convert": { "version": "1.9.3", + "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -11442,10 +11814,12 @@ }, "node_modules/coa/node_modules/color-name": { "version": "1.1.3", + "dev": true, "license": "MIT" }, "node_modules/coa/node_modules/escape-string-regexp": { "version": "1.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -11453,6 +11827,7 @@ }, "node_modules/coa/node_modules/has-flag": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -11460,6 +11835,7 @@ }, "node_modules/coa/node_modules/supports-color": { "version": "5.5.0", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -11487,6 +11863,7 @@ }, "node_modules/collect-v8-coverage": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/collection-map": { @@ -11516,6 +11893,7 @@ }, "node_modules/color": { "version": "3.2.1", + "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.3", @@ -11524,6 +11902,7 @@ }, "node_modules/color-convert": { "version": "2.0.1", + "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -11534,10 +11913,12 @@ }, "node_modules/color-name": { "version": "1.1.4", + "dev": true, "license": "MIT" }, "node_modules/color-string": { "version": "1.9.1", + "dev": true, "license": "MIT", "dependencies": { "color-name": "^1.0.0", @@ -11554,6 +11935,7 @@ }, "node_modules/color/node_modules/color-convert": { "version": "1.9.3", + "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -11561,24 +11943,29 @@ }, "node_modules/color/node_modules/color-name": { "version": "1.1.3", + "dev": true, "license": "MIT" }, "node_modules/colord": { "version": "2.9.3", + "dev": true, "license": "MIT" }, "node_modules/colorette": { "version": "2.0.19", + "dev": true, "license": "MIT" }, "node_modules/colors": { "version": "0.6.2", + "dev": true, "engines": { "node": ">=0.1.90" } }, "node_modules/columnify": { "version": "1.6.0", + "dev": true, "license": "MIT", "dependencies": { "strip-ansi": "^6.0.1", @@ -11592,6 +11979,7 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", "integrity": "sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg==", + "dev": true, "dependencies": { "convert-source-map": "~1.1.0", "inline-source-map": "~0.6.0", @@ -11601,6 +11989,7 @@ }, "node_modules/combined-stream": { "version": "1.0.8", + "dev": true, "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" @@ -11611,6 +12000,7 @@ }, "node_modules/commander": { "version": "8.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 12" @@ -11631,10 +12021,12 @@ }, "node_modules/common-path-prefix": { "version": "3.0.0", + "dev": true, "license": "ISC" }, "node_modules/commondir": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/component-emitter": { @@ -11644,6 +12036,7 @@ }, "node_modules/compressible": { "version": "2.0.18", + "dev": true, "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" @@ -11654,6 +12047,7 @@ }, "node_modules/compression": { "version": "1.7.4", + "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.5", @@ -11670,6 +12064,7 @@ }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", + "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -11677,22 +12072,27 @@ }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/compression/node_modules/safe-buffer": { "version": "5.1.2", + "dev": true, "license": "MIT" }, "node_modules/compute-scroll-into-view": { "version": "1.0.17", + "dev": true, "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", + "dev": true, "license": "MIT" }, "node_modules/concat-stream": { "version": "1.6.2", + "dev": true, "engines": [ "node >= 0.8" ], @@ -11706,6 +12106,7 @@ }, "node_modules/concat-stream/node_modules/typedarray": { "version": "0.0.6", + "dev": true, "license": "MIT" }, "node_modules/config-chain": { @@ -11724,6 +12125,7 @@ }, "node_modules/connect-history-api-fallback": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8" @@ -11732,7 +12134,8 @@ "node_modules/console-browserify": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true }, "node_modules/console-control-strings": { "version": "1.1.0", @@ -11741,10 +12144,12 @@ }, "node_modules/consolidated-events": { "version": "2.0.2", + "dev": true, "license": "MIT" }, "node_modules/constant-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -11755,18 +12160,21 @@ "node_modules/constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true }, "node_modules/content-disposition": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.4", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -11827,18 +12235,21 @@ "node_modules/convert-source-map": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", - "integrity": "sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==" + "integrity": "sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==", + "dev": true }, "node_modules/cookie": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==", + "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", + "dev": true, "license": "MIT" }, "node_modules/copy-descriptor": { @@ -11880,6 +12291,7 @@ }, "node_modules/copy-webpack-plugin": { "version": "10.2.4", + "dev": true, "license": "MIT", "dependencies": { "fast-glob": "^3.2.7", @@ -11902,6 +12314,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/ajv": { "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -11916,6 +12329,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -11926,6 +12340,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/array-union": { "version": "3.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -11936,6 +12351,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/globby": { "version": "12.2.0", + "dev": true, "license": "MIT", "dependencies": { "array-union": "^3.0.1", @@ -11954,10 +12370,12 @@ }, "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/copy-webpack-plugin/node_modules/schema-utils": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -11975,6 +12393,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/slash": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -11985,6 +12404,7 @@ }, "node_modules/core-js": { "version": "3.25.5", + "dev": true, "hasInstallScript": true, "license": "MIT", "funding": { @@ -11994,6 +12414,7 @@ }, "node_modules/core-js-compat": { "version": "3.25.5", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.21.4" @@ -12005,6 +12426,7 @@ }, "node_modules/core-js-pure": { "version": "3.25.5", + "dev": true, "hasInstallScript": true, "license": "MIT", "funding": { @@ -12014,6 +12436,7 @@ }, "node_modules/core-util-is": { "version": "1.0.3", + "dev": true, "license": "MIT" }, "node_modules/cosmiconfig": { @@ -12041,6 +12464,7 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, "dependencies": { "bn.js": "^4.1.0", "elliptic": "^6.5.3" @@ -12049,12 +12473,14 @@ "node_modules/create-ecdh/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true }, "node_modules/create-hash": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", @@ -12067,6 +12493,7 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, "dependencies": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", @@ -12078,6 +12505,7 @@ }, "node_modules/cross-fetch": { "version": "3.1.5", + "dev": true, "license": "MIT", "dependencies": { "node-fetch": "2.6.7" @@ -12085,6 +12513,7 @@ }, "node_modules/cross-spawn": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "lru-cache": "^4.0.1", @@ -12094,6 +12523,7 @@ }, "node_modules/cross-spawn/node_modules/lru-cache": { "version": "4.1.5", + "dev": true, "license": "ISC", "dependencies": { "pseudomap": "^1.0.2", @@ -12102,12 +12532,14 @@ }, "node_modules/cross-spawn/node_modules/yallist": { "version": "2.1.2", + "dev": true, "license": "ISC" }, "node_modules/crypto-browserify": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, "dependencies": { "browserify-cipher": "^1.0.0", "browserify-sign": "^4.0.0", @@ -12127,6 +12559,7 @@ }, "node_modules/css-color-names": { "version": "0.0.4", + "dev": true, "license": "MIT", "engines": { "node": "*" @@ -12134,6 +12567,7 @@ }, "node_modules/css-declaration-sorter": { "version": "6.3.1", + "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >=14" @@ -12144,6 +12578,7 @@ }, "node_modules/css-functions-list": { "version": "3.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=12.22" @@ -12151,6 +12586,7 @@ }, "node_modules/css-loader": { "version": "6.7.1", + "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", @@ -12175,6 +12611,7 @@ }, "node_modules/css-select": { "version": "5.1.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -12189,12 +12626,14 @@ }, "node_modules/css-select-base-adapter": { "version": "0.1.1", + "dev": true, "license": "MIT" }, "node_modules/css-tree": { "version": "1.0.0-alpha.28", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz", "integrity": "sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==", + "dev": true, "dependencies": { "mdn-data": "~1.1.0", "source-map": "^0.5.3" @@ -12205,6 +12644,7 @@ }, "node_modules/css-what": { "version": "6.1.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -12215,10 +12655,12 @@ }, "node_modules/css-xpath": { "version": "1.0.0", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/cssesc": { "version": "3.0.0", + "dev": true, "license": "MIT", "bin": { "cssesc": "bin/cssesc" @@ -12229,6 +12671,7 @@ }, "node_modules/cssnano": { "version": "5.1.13", + "dev": true, "license": "MIT", "dependencies": { "cssnano-preset-default": "^5.2.12", @@ -12248,6 +12691,7 @@ }, "node_modules/cssnano-preset-default": { "version": "5.2.12", + "dev": true, "license": "MIT", "dependencies": { "css-declaration-sorter": "^6.3.0", @@ -12289,6 +12733,7 @@ }, "node_modules/cssnano-util-get-arguments": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -12296,6 +12741,7 @@ }, "node_modules/cssnano-util-get-match": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -12303,6 +12749,7 @@ }, "node_modules/cssnano-util-raw-cache": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -12313,10 +12760,12 @@ }, "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { "version": "0.2.1", + "dev": true, "license": "ISC" }, "node_modules/cssnano-util-raw-cache/node_modules/postcss": { "version": "7.0.39", + "dev": true, "license": "MIT", "dependencies": { "picocolors": "^0.2.1", @@ -12332,6 +12781,7 @@ }, "node_modules/cssnano-util-raw-cache/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -12339,6 +12789,7 @@ }, "node_modules/cssnano-util-same-parent": { "version": "4.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -12346,6 +12797,7 @@ }, "node_modules/cssnano-utils": { "version": "3.1.0", + "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -12356,6 +12808,7 @@ }, "node_modules/cssnano/node_modules/yaml": { "version": "1.10.2", + "dev": true, "license": "ISC", "engines": { "node": ">= 6" @@ -12365,6 +12818,7 @@ "version": "3.5.1", "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", + "dev": true, "dependencies": { "css-tree": "1.0.0-alpha.29" }, @@ -12376,6 +12830,7 @@ "version": "1.0.0-alpha.29", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", + "dev": true, "dependencies": { "mdn-data": "~1.1.0", "source-map": "^0.5.3" @@ -12386,10 +12841,12 @@ }, "node_modules/cssom": { "version": "0.4.4", + "dev": true, "license": "MIT" }, "node_modules/cssstyle": { "version": "2.3.0", + "dev": true, "license": "MIT", "dependencies": { "cssom": "~0.3.6" @@ -12400,6 +12857,7 @@ }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", + "dev": true, "license": "MIT" }, "node_modules/csstype": { @@ -12408,6 +12866,7 @@ }, "node_modules/cwd": { "version": "0.10.0", + "dev": true, "license": "MIT", "dependencies": { "find-pkg": "^0.1.2", @@ -12479,6 +12938,7 @@ }, "node_modules/damerau-levenshtein": { "version": "1.0.8", + "dev": true, "license": "BSD-2-Clause" }, "node_modules/dargs": { @@ -12492,10 +12952,12 @@ "node_modules/dash-ast": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz", - "integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==" + "integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==", + "dev": true }, "node_modules/data-urls": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "abab": "^2.0.3", @@ -12508,6 +12970,7 @@ }, "node_modules/data-urls/node_modules/webidl-conversions": { "version": "6.1.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=10.4" @@ -12515,6 +12978,7 @@ }, "node_modules/data-urls/node_modules/whatwg-url": { "version": "8.7.0", + "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.7.0", @@ -12558,6 +13022,7 @@ }, "node_modules/decamelize": { "version": "1.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -12565,6 +13030,7 @@ }, "node_modules/decamelize-keys": { "version": "1.1.0", + "dev": true, "license": "MIT", "dependencies": { "decamelize": "^1.1.0", @@ -12576,6 +13042,7 @@ }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -12583,6 +13050,7 @@ }, "node_modules/decimal.js": { "version": "10.4.1", + "dev": true, "license": "MIT" }, "node_modules/decode-uri-component": { @@ -12595,19 +13063,20 @@ }, "node_modules/dedent": { "version": "0.7.0", + "dev": true, "license": "MIT" }, "node_modules/deep-equal": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.2.tgz", - "integrity": "sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.1", + "es-get-iterator": "^1.1.2", + "get-intrinsic": "^1.1.3", "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", + "is-array-buffer": "^3.0.1", "is-date-object": "^1.0.5", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", @@ -12615,7 +13084,7 @@ "object-is": "^1.1.5", "object-keys": "^1.1.1", "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", + "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4", "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", @@ -12628,10 +13097,12 @@ "node_modules/deep-equal/node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true }, "node_modules/deep-extend": { "version": "0.6.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4.0.0" @@ -12639,10 +13110,12 @@ }, "node_modules/deep-is": { "version": "0.1.4", + "dev": true, "license": "MIT" }, "node_modules/deepmerge": { "version": "4.2.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -12650,6 +13123,7 @@ }, "node_modules/default-gateway": { "version": "6.0.3", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" @@ -12668,15 +13142,16 @@ }, "node_modules/define-lazy-prop": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "version": "1.1.4", + "dev": true, + "license": "MIT", "dependencies": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" @@ -12746,12 +13221,14 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/delayed-stream": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -12759,6 +13236,7 @@ }, "node_modules/delegate": { "version": "3.2.0", + "dev": true, "license": "MIT" }, "node_modules/delegates": { @@ -12768,6 +13246,7 @@ }, "node_modules/depd": { "version": "1.1.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -12782,6 +13261,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz", "integrity": "sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==", + "dev": true, "dependencies": { "JSONStream": "^1.0.3", "shasum-object": "^1.0.0", @@ -12793,9 +13273,10 @@ } }, "node_modules/des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, "dependencies": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" @@ -12804,7 +13285,8 @@ "node_modules/destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" + "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", + "dev": true }, "node_modules/detect-file": { "version": "1.0.0", @@ -12832,12 +13314,14 @@ }, "node_modules/detect-node": { "version": "2.1.0", + "dev": true, "license": "MIT" }, "node_modules/detective": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "dev": true, "dependencies": { "acorn-node": "^1.8.2", "defined": "^1.0.0", @@ -12852,6 +13336,7 @@ }, "node_modules/devtools-protocol": { "version": "0.0.1036444", + "dev": true, "license": "BSD-3-Clause", "peer": true }, @@ -12866,6 +13351,7 @@ }, "node_modules/diff-sequences": { "version": "27.5.1", + "dev": true, "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -12875,6 +13361,7 @@ "version": "5.0.3", "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, "dependencies": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", @@ -12884,10 +13371,12 @@ "node_modules/diffie-hellman/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true }, "node_modules/dir-glob": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "path-type": "^4.0.0" @@ -12898,6 +13387,7 @@ }, "node_modules/direction": { "version": "1.0.4", + "dev": true, "license": "MIT", "bin": { "direction": "cli.js" @@ -12909,14 +13399,17 @@ }, "node_modules/discontinuous-range": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/dns-equal": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/dns-packet": { "version": "5.4.0", + "dev": true, "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" @@ -12927,6 +13420,7 @@ }, "node_modules/doctrine": { "version": "3.0.0", + "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" @@ -12937,6 +13431,7 @@ }, "node_modules/document.contains": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.3" @@ -12948,10 +13443,12 @@ "node_modules/dom-accessibility-api": { "version": "0.5.16", "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true }, "node_modules/dom-helpers": { "version": "5.2.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.7", @@ -12960,10 +13457,12 @@ }, "node_modules/dom-scroll-into-view": { "version": "1.2.1", + "dev": true, "license": "MIT" }, "node_modules/dom-serializer": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", @@ -12978,6 +13477,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, "engines": { "node": ">=0.4", "npm": ">=1.2" @@ -12985,6 +13485,7 @@ }, "node_modules/domelementtype": { "version": "2.3.0", + "dev": true, "funding": [ { "type": "github", @@ -12995,6 +13496,7 @@ }, "node_modules/domexception": { "version": "2.0.1", + "dev": true, "license": "MIT", "dependencies": { "webidl-conversions": "^5.0.0" @@ -13005,6 +13507,7 @@ }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=8" @@ -13012,6 +13515,7 @@ }, "node_modules/domhandler": { "version": "5.0.3", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" @@ -13025,6 +13529,7 @@ }, "node_modules/domutils": { "version": "3.0.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", @@ -13037,6 +13542,7 @@ }, "node_modules/dot-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -13059,6 +13565,7 @@ }, "node_modules/dotenv": { "version": "8.6.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=10" @@ -13066,6 +13573,7 @@ }, "node_modules/downshift": { "version": "6.1.12", + "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.14.8", @@ -13080,18 +13588,21 @@ }, "node_modules/duplexer": { "version": "0.1.2", + "dev": true, "license": "MIT" }, "node_modules/duplexer2": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "dev": true, "dependencies": { "readable-stream": "^2.0.2" } }, "node_modules/ee-first": { "version": "1.1.1", + "dev": true, "license": "MIT" }, "node_modules/electron-to-chromium": { @@ -13102,6 +13613,7 @@ "version": "6.5.4", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -13115,10 +13627,12 @@ "node_modules/elliptic/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true }, "node_modules/emittery": { "version": "0.8.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -13129,10 +13643,12 @@ }, "node_modules/emoji-regex": { "version": "8.0.0", + "dev": true, "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -13140,6 +13656,7 @@ }, "node_modules/encodeurl": { "version": "1.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -13147,6 +13664,7 @@ }, "node_modules/encoding": { "version": "0.1.13", + "dev": true, "license": "MIT", "dependencies": { "iconv-lite": "^0.6.2" @@ -13154,6 +13672,7 @@ }, "node_modules/encoding/node_modules/iconv-lite": { "version": "0.6.3", + "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -13164,6 +13683,7 @@ }, "node_modules/end-of-stream": { "version": "1.4.4", + "dev": true, "license": "MIT", "dependencies": { "once": "^1.4.0" @@ -13171,6 +13691,7 @@ }, "node_modules/enhanced-resolve": { "version": "5.10.0", + "dev": true, "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", @@ -13201,6 +13722,7 @@ }, "node_modules/entities": { "version": "4.4.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -13219,6 +13741,7 @@ }, "node_modules/envinfo": { "version": "7.8.1", + "dev": true, "license": "MIT", "bin": { "envinfo": "dist/cli.js" @@ -13229,6 +13752,7 @@ }, "node_modules/enzyme": { "version": "3.11.0", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.flat": "^1.2.3", @@ -13260,6 +13784,7 @@ }, "node_modules/enzyme-shallow-equal": { "version": "1.0.4", + "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.3", @@ -13271,6 +13796,7 @@ }, "node_modules/enzyme-to-json": { "version": "3.6.2", + "dev": true, "license": "MIT", "dependencies": { "@types/cheerio": "^0.22.22", @@ -13286,10 +13812,12 @@ }, "node_modules/enzyme-to-json/node_modules/react-is": { "version": "16.13.1", + "dev": true, "license": "MIT" }, "node_modules/equivalent-key-map": { "version": "0.2.2", + "dev": true, "license": "MIT" }, "node_modules/err-code": { @@ -13306,6 +13834,7 @@ }, "node_modules/error-stack-parser": { "version": "2.1.4", + "dev": true, "license": "MIT", "dependencies": { "stackframe": "^1.3.4" @@ -13313,6 +13842,7 @@ }, "node_modules/es-abstract": { "version": "1.20.3", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -13349,12 +13879,14 @@ }, "node_modules/es-array-method-boxes-properly": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/es-get-iterator": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dev": true, "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", @@ -13373,14 +13905,17 @@ "node_modules/es-get-iterator/node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true }, "node_modules/es-module-lexer": { "version": "0.9.3", + "dev": true, "license": "MIT" }, "node_modules/es-shim-unscopables": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.3" @@ -13388,6 +13923,7 @@ }, "node_modules/es-to-primitive": { "version": "1.2.1", + "dev": true, "license": "MIT", "dependencies": { "is-callable": "^1.1.4", @@ -13404,12 +13940,14 @@ "node_modules/es6-promise": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", + "dev": true }, "node_modules/es6-promisify": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", + "dev": true, "dependencies": { "es6-promise": "^4.0.3" } @@ -13480,6 +14018,7 @@ }, "node_modules/escape-html": { "version": "1.0.3", + "dev": true, "license": "MIT" }, "node_modules/escape-string-regexp": { @@ -13494,6 +14033,7 @@ }, "node_modules/escodegen": { "version": "2.0.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", @@ -13514,6 +14054,7 @@ }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "optional": true, "engines": { @@ -13522,6 +14063,7 @@ }, "node_modules/eslint": { "version": "8.24.0", + "dev": true, "license": "MIT", "dependencies": { "@eslint/eslintrc": "^1.3.2", @@ -13576,6 +14118,7 @@ }, "node_modules/eslint-config-prettier": { "version": "8.5.0", + "dev": true, "license": "MIT", "bin": { "eslint-config-prettier": "bin/cli.js" @@ -13586,6 +14129,7 @@ }, "node_modules/eslint-import-resolver-node": { "version": "0.3.6", + "dev": true, "license": "MIT", "dependencies": { "debug": "^3.2.7", @@ -13594,6 +14138,7 @@ }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", + "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.1" @@ -13601,6 +14146,7 @@ }, "node_modules/eslint-module-utils": { "version": "2.7.4", + "dev": true, "license": "MIT", "dependencies": { "debug": "^3.2.7" @@ -13616,6 +14162,7 @@ }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", + "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.1" @@ -13623,6 +14170,7 @@ }, "node_modules/eslint-plugin-import": { "version": "2.26.0", + "dev": true, "license": "MIT", "dependencies": { "array-includes": "^3.1.4", @@ -13648,6 +14196,7 @@ }, "node_modules/eslint-plugin-import/node_modules/debug": { "version": "2.6.9", + "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -13655,6 +14204,7 @@ }, "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", + "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" @@ -13665,10 +14215,12 @@ }, "node_modules/eslint-plugin-import/node_modules/ms": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/eslint-plugin-jest": { "version": "25.7.0", + "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/experimental-utils": "^5.0.0" @@ -13691,6 +14243,7 @@ }, "node_modules/eslint-plugin-jsdoc": { "version": "37.9.7", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@es-joy/jsdoccomment": "~0.20.1", @@ -13711,6 +14264,7 @@ }, "node_modules/eslint-plugin-jsdoc/node_modules/comment-parser": { "version": "1.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 12.0.0" @@ -13718,6 +14272,7 @@ }, "node_modules/eslint-plugin-jsx-a11y": { "version": "6.6.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.18.9", @@ -13743,6 +14298,7 @@ }, "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { "version": "4.2.2", + "dev": true, "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.10.2", @@ -13754,10 +14310,12 @@ }, "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { "version": "9.2.2", + "dev": true, "license": "MIT" }, "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -13765,6 +14323,7 @@ }, "node_modules/eslint-plugin-playwright": { "version": "0.8.0", + "dev": true, "license": "MIT", "peerDependencies": { "eslint": ">=7", @@ -13778,6 +14337,7 @@ }, "node_modules/eslint-plugin-prettier": { "version": "3.4.1", + "dev": true, "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0" @@ -13797,6 +14357,7 @@ }, "node_modules/eslint-plugin-react": { "version": "7.31.8", + "dev": true, "license": "MIT", "dependencies": { "array-includes": "^3.1.5", @@ -13823,6 +14384,7 @@ }, "node_modules/eslint-plugin-react-hooks": { "version": "4.6.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -13833,6 +14395,7 @@ }, "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", + "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" @@ -13843,6 +14406,7 @@ }, "node_modules/eslint-plugin-react/node_modules/resolve": { "version": "2.0.0-next.4", + "dev": true, "license": "MIT", "dependencies": { "is-core-module": "^2.9.0", @@ -13858,6 +14422,7 @@ }, "node_modules/eslint-plugin-react/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -13865,6 +14430,7 @@ }, "node_modules/eslint-scope": { "version": "5.1.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", @@ -13876,6 +14442,7 @@ }, "node_modules/eslint-scope/node_modules/estraverse": { "version": "4.3.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=4.0" @@ -13883,6 +14450,7 @@ }, "node_modules/eslint-utils": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "eslint-visitor-keys": "^2.0.0" @@ -13899,6 +14467,7 @@ }, "node_modules/eslint-visitor-keys": { "version": "2.1.0", + "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10" @@ -13906,6 +14475,7 @@ }, "node_modules/eslint/node_modules/cross-spawn": { "version": "7.0.3", + "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -13918,6 +14488,7 @@ }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.1.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", @@ -13929,6 +14500,7 @@ }, "node_modules/eslint/node_modules/eslint-visitor-keys": { "version": "3.3.0", + "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -13936,6 +14508,7 @@ }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "locate-path": "^6.0.0", @@ -13950,6 +14523,7 @@ }, "node_modules/eslint/node_modules/levn": { "version": "0.4.1", + "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", @@ -13961,6 +14535,7 @@ }, "node_modules/eslint/node_modules/locate-path": { "version": "6.0.0", + "dev": true, "license": "MIT", "dependencies": { "p-locate": "^5.0.0" @@ -13974,6 +14549,7 @@ }, "node_modules/eslint/node_modules/optionator": { "version": "0.9.1", + "dev": true, "license": "MIT", "dependencies": { "deep-is": "^0.1.3", @@ -13989,6 +14565,7 @@ }, "node_modules/eslint/node_modules/p-limit": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" @@ -14002,6 +14579,7 @@ }, "node_modules/eslint/node_modules/p-locate": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "p-limit": "^3.0.2" @@ -14015,6 +14593,7 @@ }, "node_modules/eslint/node_modules/prelude-ls": { "version": "1.2.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8.0" @@ -14022,6 +14601,7 @@ }, "node_modules/eslint/node_modules/shebang-command": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -14032,6 +14612,7 @@ }, "node_modules/eslint/node_modules/shebang-regex": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -14039,6 +14620,7 @@ }, "node_modules/eslint/node_modules/type-check": { "version": "0.4.0", + "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" @@ -14049,6 +14631,7 @@ }, "node_modules/eslint/node_modules/which": { "version": "2.0.2", + "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -14062,6 +14645,7 @@ }, "node_modules/espree": { "version": "9.4.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.8.0", @@ -14077,6 +14661,7 @@ }, "node_modules/espree/node_modules/acorn": { "version": "8.8.0", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -14087,6 +14672,7 @@ }, "node_modules/espree/node_modules/eslint-visitor-keys": { "version": "3.3.0", + "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -14094,6 +14680,7 @@ }, "node_modules/esprima": { "version": "4.0.1", + "dev": true, "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", @@ -14105,6 +14692,7 @@ }, "node_modules/esquery": { "version": "1.4.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" @@ -14115,6 +14703,7 @@ }, "node_modules/esrecurse": { "version": "4.3.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" @@ -14125,6 +14714,7 @@ }, "node_modules/estraverse": { "version": "5.3.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=4.0" @@ -14132,6 +14722,7 @@ }, "node_modules/esutils": { "version": "2.0.3", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" @@ -14139,6 +14730,7 @@ }, "node_modules/etag": { "version": "1.8.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -14201,10 +14793,12 @@ }, "node_modules/eventemitter3": { "version": "4.0.7", + "dev": true, "license": "MIT" }, "node_modules/events": { "version": "3.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.x" @@ -14214,6 +14808,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, "dependencies": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" @@ -14221,6 +14816,7 @@ }, "node_modules/execa": { "version": "5.1.1", + "dev": true, "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", @@ -14242,6 +14838,7 @@ }, "node_modules/execa/node_modules/cross-spawn": { "version": "7.0.3", + "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -14254,6 +14851,7 @@ }, "node_modules/execa/node_modules/human-signals": { "version": "2.1.0", + "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10.17.0" @@ -14261,6 +14859,7 @@ }, "node_modules/execa/node_modules/shebang-command": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -14271,6 +14870,7 @@ }, "node_modules/execa/node_modules/shebang-regex": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -14278,6 +14878,7 @@ }, "node_modules/execa/node_modules/which": { "version": "2.0.2", + "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -14291,12 +14892,14 @@ }, "node_modules/exit": { "version": "0.1.2", + "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/expand-tilde": { "version": "1.2.2", + "dev": true, "license": "MIT", "dependencies": { "os-homedir": "^1.0.1" @@ -14307,6 +14910,7 @@ }, "node_modules/expect": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -14320,12 +14924,14 @@ }, "node_modules/expect-puppeteer": { "version": "4.4.0", + "dev": true, "license": "MIT" }, "node_modules/express": { "version": "4.16.4", "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", + "dev": true, "dependencies": { "accepts": "~1.3.5", "array-flatten": "1.1.1", @@ -14365,12 +14971,14 @@ "node_modules/express-history-api-fallback": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/express-history-api-fallback/-/express-history-api-fallback-2.2.1.tgz", - "integrity": "sha512-swxwm3aP8vrOOvlzOdZvHlSZtJGwHKaY94J6AkrAgCTmcbko3IRwbkhLv2wKV1WeZhjxX58aLMpP3atDBnKuZg==" + "integrity": "sha512-swxwm3aP8vrOOvlzOdZvHlSZtJGwHKaY94J6AkrAgCTmcbko3IRwbkhLv2wKV1WeZhjxX58aLMpP3atDBnKuZg==", + "dev": true }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { "ms": "2.0.0" } @@ -14378,12 +14986,14 @@ "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/express/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/extend": { "version": "3.0.2", @@ -14426,6 +15036,7 @@ }, "node_modules/external-editor": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "chardet": "^0.7.0", @@ -14438,6 +15049,7 @@ }, "node_modules/external-editor/node_modules/tmp": { "version": "0.0.33", + "dev": true, "license": "MIT", "dependencies": { "os-tmpdir": "~1.0.2" @@ -14448,6 +15060,7 @@ }, "node_modules/extract-zip": { "version": "2.0.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", @@ -14466,6 +15079,7 @@ }, "node_modules/extract-zip/node_modules/get-stream": { "version": "5.2.0", + "dev": true, "license": "MIT", "dependencies": { "pump": "^3.0.0" @@ -14493,14 +15107,17 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", + "dev": true, "license": "MIT" }, "node_modules/fast-diff": { "version": "1.2.0", + "dev": true, "license": "Apache-2.0" }, "node_modules/fast-glob": { "version": "3.2.12", + "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -14515,6 +15132,7 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", + "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.1" @@ -14525,19 +15143,23 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", + "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", + "dev": true, "license": "MIT" }, "node_modules/fast-safe-stringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "dev": true }, "node_modules/fastest-levenshtein": { "version": "1.0.16", + "dev": true, "license": "MIT", "engines": { "node": ">= 4.9.1" @@ -14545,6 +15167,7 @@ }, "node_modules/fastq": { "version": "1.13.0", + "dev": true, "license": "ISC", "dependencies": { "reusify": "^1.0.4" @@ -14552,6 +15175,7 @@ }, "node_modules/faye-websocket": { "version": "0.11.4", + "dev": true, "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" @@ -14562,6 +15186,7 @@ }, "node_modules/fb-watchman": { "version": "2.0.2", + "dev": true, "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" @@ -14569,6 +15194,7 @@ }, "node_modules/fd-slicer": { "version": "1.1.0", + "dev": true, "license": "MIT", "dependencies": { "pend": "~1.2.0" @@ -14576,6 +15202,7 @@ }, "node_modules/figures": { "version": "3.2.0", + "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" @@ -14589,6 +15216,7 @@ }, "node_modules/figures/node_modules/escape-string-regexp": { "version": "1.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -14596,6 +15224,7 @@ }, "node_modules/file-entry-cache": { "version": "6.0.1", + "dev": true, "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" @@ -14612,6 +15241,7 @@ }, "node_modules/filename-reserved-regex": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -14619,6 +15249,7 @@ }, "node_modules/filenamify": { "version": "4.3.0", + "dev": true, "license": "MIT", "dependencies": { "filename-reserved-regex": "^2.0.0", @@ -14634,6 +15265,7 @@ }, "node_modules/filenamify/node_modules/escape-string-regexp": { "version": "1.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -14641,6 +15273,7 @@ }, "node_modules/filenamify/node_modules/strip-outer": { "version": "1.0.1", + "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" @@ -14651,6 +15284,7 @@ }, "node_modules/filenamify/node_modules/trim-repeated": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" @@ -14663,12 +15297,14 @@ "version": "3.6.1", "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", + "dev": true, "engines": { "node": ">= 0.4.0" } }, "node_modules/fill-range": { "version": "7.0.1", + "dev": true, "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" @@ -14681,6 +15317,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "dev": true, "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -14698,6 +15335,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { "ms": "2.0.0" } @@ -14705,10 +15343,12 @@ "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/find-cache-dir": { "version": "3.3.2", + "dev": true, "license": "MIT", "dependencies": { "commondir": "^1.0.1", @@ -14724,10 +15364,12 @@ }, "node_modules/find-parent-dir": { "version": "0.3.1", + "dev": true, "license": "MIT" }, "node_modules/find-pkg": { "version": "0.1.2", + "dev": true, "license": "MIT", "dependencies": { "find-file-up": "^0.1.2" @@ -14738,6 +15380,7 @@ }, "node_modules/find-pkg/node_modules/find-file-up": { "version": "0.1.3", + "dev": true, "license": "MIT", "dependencies": { "fs-exists-sync": "^0.1.0", @@ -14753,6 +15396,7 @@ }, "node_modules/find-up": { "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { "locate-path": "^5.0.0", @@ -14764,6 +15408,7 @@ }, "node_modules/findup": { "version": "0.1.5", + "dev": true, "dependencies": { "colors": "~0.6.0-1", "commander": "~2.1.0" @@ -14777,6 +15422,7 @@ }, "node_modules/findup/node_modules/commander": { "version": "2.1.0", + "dev": true, "engines": { "node": ">= 0.6.x" } @@ -14799,6 +15445,7 @@ }, "node_modules/flat-cache": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "flatted": "^3.1.0", @@ -14810,6 +15457,7 @@ }, "node_modules/flatted": { "version": "3.2.7", + "dev": true, "license": "ISC" }, "node_modules/flush-write-stream": { @@ -14823,6 +15471,7 @@ }, "node_modules/follow-redirects": { "version": "1.15.2", + "dev": true, "funding": [ { "type": "individual", @@ -14843,12 +15492,14 @@ "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/for-in": { "version": "1.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -14872,6 +15523,7 @@ }, "node_modules/form-data": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -14884,6 +15536,7 @@ }, "node_modules/forwarded": { "version": "0.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -14891,6 +15544,7 @@ }, "node_modules/fraction.js": { "version": "4.2.0", + "dev": true, "license": "MIT", "engines": { "node": "*" @@ -14913,6 +15567,7 @@ }, "node_modules/framer-motion": { "version": "6.5.1", + "dev": true, "license": "MIT", "dependencies": { "@motionone/dom": "10.12.0", @@ -14932,6 +15587,7 @@ }, "node_modules/framer-motion/node_modules/@emotion/is-prop-valid": { "version": "0.8.8", + "dev": true, "license": "MIT", "optional": true, "dependencies": { @@ -14940,11 +15596,13 @@ }, "node_modules/framer-motion/node_modules/@emotion/memoize": { "version": "0.7.4", + "dev": true, "license": "MIT", "optional": true }, "node_modules/framesync": { "version": "6.0.1", + "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.1.0" @@ -14952,6 +15610,7 @@ }, "node_modules/fresh": { "version": "0.5.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -14964,10 +15623,12 @@ }, "node_modules/fs-constants": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/fs-exists-sync": { "version": "0.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -14998,14 +15659,17 @@ }, "node_modules/fs-monkey": { "version": "1.0.3", + "dev": true, "license": "Unlicense" }, "node_modules/fs.realpath": { "version": "1.0.0", + "dev": true, "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.2", + "dev": true, "license": "MIT", "optional": true, "os": [ @@ -15021,6 +15685,7 @@ }, "node_modules/function.prototype.name": { "version": "1.1.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -15037,6 +15702,7 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", + "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15052,23 +15718,24 @@ "node_modules/get-assigned-identifiers": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", - "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==" + "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==", + "dev": true }, "node_modules/get-caller-file": { "version": "2.0.5", + "dev": true, "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "version": "1.2.0", + "dev": true, + "license": "MIT", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-proto": "^1.0.1", "has-symbols": "^1.0.3" }, "funding": { @@ -15077,6 +15744,7 @@ }, "node_modules/get-package-type": { "version": "0.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8.0.0" @@ -15174,6 +15842,7 @@ }, "node_modules/get-stdin": { "version": "9.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -15184,6 +15853,7 @@ }, "node_modules/get-stream": { "version": "6.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -15194,6 +15864,7 @@ }, "node_modules/get-symbol-description": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -15216,6 +15887,7 @@ }, "node_modules/gettext-parser": { "version": "1.4.0", + "dev": true, "license": "MIT", "dependencies": { "encoding": "^0.1.12", @@ -15270,6 +15942,7 @@ }, "node_modules/glob": { "version": "7.2.3", + "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", @@ -15288,6 +15961,7 @@ }, "node_modules/glob-parent": { "version": "6.0.2", + "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.3" @@ -15298,6 +15972,7 @@ }, "node_modules/glob-to-regexp": { "version": "0.4.1", + "dev": true, "license": "BSD-2-Clause" }, "node_modules/glob-watcher": { @@ -15859,6 +16534,7 @@ }, "node_modules/global-cache": { "version": "1.2.1", + "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.2", @@ -15870,6 +16546,7 @@ }, "node_modules/global-modules": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" @@ -15880,6 +16557,7 @@ }, "node_modules/global-prefix": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "ini": "^1.3.5", @@ -15892,10 +16570,12 @@ }, "node_modules/global-prefix/node_modules/ini": { "version": "1.3.8", + "dev": true, "license": "ISC" }, "node_modules/global-prefix/node_modules/kind-of": { "version": "6.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -15903,6 +16583,7 @@ }, "node_modules/globals": { "version": "13.17.0", + "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.20.2" @@ -15916,6 +16597,7 @@ }, "node_modules/globals/node_modules/type-fest": { "version": "0.20.2", + "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -15926,6 +16608,7 @@ }, "node_modules/globby": { "version": "11.1.0", + "dev": true, "license": "MIT", "dependencies": { "array-union": "^2.1.0", @@ -15944,6 +16627,7 @@ }, "node_modules/globjoin": { "version": "0.1.4", + "dev": true, "license": "MIT" }, "node_modules/glogg": { @@ -15959,6 +16643,7 @@ }, "node_modules/good-listener": { "version": "1.2.2", + "dev": true, "license": "MIT", "dependencies": { "delegate": "^3.1.2" @@ -15968,6 +16653,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -15977,16 +16663,19 @@ }, "node_modules/graceful-fs": { "version": "4.2.10", + "dev": true, "license": "ISC" }, "node_modules/gradient-parser": { "version": "0.1.5", + "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/grapheme-splitter": { "version": "1.0.4", + "dev": true, "license": "MIT" }, "node_modules/gulp": { @@ -18075,6 +18764,7 @@ }, "node_modules/gzip-size": { "version": "6.0.0", + "dev": true, "license": "MIT", "dependencies": { "duplexer": "^0.1.2" @@ -18088,10 +18778,12 @@ }, "node_modules/handle-thing": { "version": "2.0.1", + "dev": true, "license": "MIT" }, "node_modules/hard-rejection": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -18109,6 +18801,7 @@ }, "node_modules/has-ansi": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" @@ -18119,6 +18812,7 @@ }, "node_modules/has-ansi/node_modules/ansi-regex": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -18126,6 +18820,7 @@ }, "node_modules/has-bigints": { "version": "1.0.2", + "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -18133,6 +18828,7 @@ }, "node_modules/has-flag": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18151,6 +18847,7 @@ }, "node_modules/has-property-descriptors": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.1" @@ -18159,19 +18856,9 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/has-symbols": { "version": "1.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -18182,6 +18869,7 @@ }, "node_modules/has-tostringtag": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" @@ -18249,6 +18937,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, "dependencies": { "inherits": "^2.0.4", "readable-stream": "^3.6.0", @@ -18262,6 +18951,7 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -18275,6 +18965,7 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" @@ -18284,12 +18975,14 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, "bin": { "he": "bin/he" } }, "node_modules/header-case": { "version": "2.0.4", + "dev": true, "license": "MIT", "dependencies": { "capital-case": "^1.0.4", @@ -18298,28 +18991,33 @@ }, "node_modules/hex-color-regex": { "version": "1.1.0", + "dev": true, "license": "MIT" }, "node_modules/hey-listen": { "version": "1.0.8", + "dev": true, "license": "MIT" }, "node_modules/highland": { "version": "2.13.0", "resolved": "https://registry.npmjs.org/highland/-/highland-2.13.0.tgz", "integrity": "sha512-zGZBcgAHPY2Zf9VG9S5IrlcC7CH9ELioXVtp9T5bU2a4fP2zIsA+Y8pV/n/h2lMwbWMHTX0I0xN0ODJ3Pd3aBQ==", + "dev": true, "dependencies": { "util-deprecate": "^1.0.2" } }, "node_modules/highlight-words-core": { "version": "1.2.2", + "dev": true, "license": "MIT" }, "node_modules/hmac-drbg": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", @@ -18339,6 +19037,7 @@ }, "node_modules/homedir-polyfill": { "version": "1.0.3", + "dev": true, "license": "MIT", "dependencies": { "parse-passwd": "^1.0.0" @@ -18360,6 +19059,7 @@ }, "node_modules/hpack.js": { "version": "2.1.6", + "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.1", @@ -18370,14 +19070,17 @@ }, "node_modules/hsl-regex": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/hsla-regex": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/html-element-map": { "version": "1.3.1", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.filter": "^1.0.0", @@ -18389,6 +19092,7 @@ }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", + "dev": true, "license": "MIT", "dependencies": { "whatwg-encoding": "^1.0.5" @@ -18399,16 +19103,19 @@ }, "node_modules/html-entities": { "version": "2.3.3", + "dev": true, "license": "MIT" }, "node_modules/html-escaper": { "version": "2.0.2", + "dev": true, "license": "MIT" }, "node_modules/html-minifier": { "version": "3.5.21", "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dev": true, "dependencies": { "camel-case": "3.0.x", "clean-css": "4.2.x", @@ -18429,6 +19136,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, "dependencies": { "no-case": "^2.2.0", "upper-case": "^1.1.1" @@ -18437,17 +19145,20 @@ "node_modules/html-minifier/node_modules/commander": { "version": "2.17.1", "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "dev": true }, "node_modules/html-minifier/node_modules/lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==" + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true }, "node_modules/html-minifier/node_modules/no-case": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, "dependencies": { "lower-case": "^1.1.1" } @@ -18456,6 +19167,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dev": true, "dependencies": { "no-case": "^2.2.0" } @@ -18464,6 +19176,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -18472,6 +19185,7 @@ "version": "3.4.10", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, "dependencies": { "commander": "~2.19.0", "source-map": "~0.6.1" @@ -18486,15 +19200,18 @@ "node_modules/html-minifier/node_modules/uglify-js/node_modules/commander": { "version": "2.19.0", "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==" + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true }, "node_modules/html-minifier/node_modules/upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==" + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true }, "node_modules/html-tags": { "version": "3.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18507,12 +19224,14 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", "integrity": "sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg==", + "dev": true, "engines": { "node": ">=0.10" } }, "node_modules/htmlparser2": { "version": "8.0.1", + "dev": true, "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -18535,10 +19254,12 @@ }, "node_modules/http-deceiver": { "version": "1.2.7", + "dev": true, "license": "MIT" }, "node_modules/http-errors": { "version": "1.6.3", + "dev": true, "license": "MIT", "dependencies": { "depd": "~1.1.2", @@ -18552,14 +19273,17 @@ }, "node_modules/http-errors/node_modules/inherits": { "version": "2.0.3", + "dev": true, "license": "ISC" }, "node_modules/http-parser-js": { "version": "0.5.8", + "dev": true, "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", + "dev": true, "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", @@ -18572,6 +19296,7 @@ }, "node_modules/http-proxy-agent": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "@tootallnate/once": "1", @@ -18584,6 +19309,7 @@ }, "node_modules/http-proxy-middleware": { "version": "2.0.6", + "dev": true, "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", @@ -18606,6 +19332,7 @@ }, "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -18617,10 +19344,12 @@ "node_modules/https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true }, "node_modules/https-proxy-agent": { "version": "5.0.1", + "dev": true, "license": "MIT", "dependencies": { "agent-base": "6", @@ -18640,6 +19369,7 @@ }, "node_modules/iconv-lite": { "version": "0.4.24", + "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" @@ -18650,6 +19380,7 @@ }, "node_modules/icss-utils": { "version": "5.1.0", + "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -18660,6 +19391,7 @@ }, "node_modules/ieee754": { "version": "1.2.1", + "dev": true, "funding": [ { "type": "github", @@ -18678,6 +19410,7 @@ }, "node_modules/ignore": { "version": "5.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -18685,6 +19418,7 @@ }, "node_modules/ignore-walk": { "version": "4.0.1", + "dev": true, "license": "ISC", "dependencies": { "minimatch": "^3.0.4" @@ -18695,6 +19429,7 @@ }, "node_modules/immutable": { "version": "4.1.0", + "dev": true, "license": "MIT" }, "node_modules/import-fresh": { @@ -18713,6 +19448,7 @@ }, "node_modules/import-lazy": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18720,6 +19456,7 @@ }, "node_modules/import-local": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", @@ -18737,6 +19474,7 @@ }, "node_modules/import-local/node_modules/resolve-cwd": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" @@ -18747,6 +19485,7 @@ }, "node_modules/import-local/node_modules/resolve-from": { "version": "5.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18754,6 +19493,7 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.19" @@ -18761,6 +19501,7 @@ }, "node_modules/indent-string": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18768,6 +19509,7 @@ }, "node_modules/indexes-of": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/infer-owner": { @@ -18777,6 +19519,7 @@ }, "node_modules/inflight": { "version": "1.0.6", + "dev": true, "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -18785,10 +19528,12 @@ }, "node_modules/inherits": { "version": "2.0.4", + "dev": true, "license": "ISC" }, "node_modules/ini": { "version": "3.0.1", + "dev": true, "license": "ISC", "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" @@ -18798,12 +19543,14 @@ "version": "0.6.2", "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", "integrity": "sha512-0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA==", + "dev": true, "dependencies": { "source-map": "~0.5.3" } }, "node_modules/inquirer": { "version": "8.2.4", + "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", @@ -18830,6 +19577,7 @@ "version": "7.2.1", "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz", "integrity": "sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg==", + "dev": true, "dependencies": { "acorn-node": "^1.5.2", "combine-source-map": "^0.8.0", @@ -18848,6 +19596,7 @@ }, "node_modules/internal-slot": { "version": "1.0.5", + "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.0", @@ -18881,6 +19630,7 @@ }, "node_modules/ipaddr.js": { "version": "1.9.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" @@ -18888,6 +19638,7 @@ }, "node_modules/irregular-plurals": { "version": "3.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18907,6 +19658,7 @@ }, "node_modules/is-absolute-url": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -18946,6 +19698,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -18961,6 +19714,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.0", @@ -18976,6 +19730,7 @@ }, "node_modules/is-bigint": { "version": "1.0.4", + "dev": true, "license": "MIT", "dependencies": { "has-bigints": "^1.0.1" @@ -18986,6 +19741,7 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", + "dev": true, "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" @@ -18996,6 +19752,7 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -19010,10 +19767,12 @@ }, "node_modules/is-buffer": { "version": "1.1.6", + "dev": true, "license": "MIT" }, "node_modules/is-callable": { "version": "1.2.7", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -19040,6 +19799,7 @@ }, "node_modules/is-color-stop": { "version": "1.1.0", + "dev": true, "license": "MIT", "dependencies": { "css-color-names": "^0.0.4", @@ -19062,6 +19822,7 @@ }, "node_modules/is-date-object": { "version": "1.0.5", + "dev": true, "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" @@ -19084,6 +19845,7 @@ }, "node_modules/is-directory": { "version": "0.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19091,6 +19853,7 @@ }, "node_modules/is-docker": { "version": "2.2.1", + "dev": true, "license": "MIT", "bin": { "is-docker": "cli.js" @@ -19104,6 +19867,7 @@ }, "node_modules/is-extendable": { "version": "0.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19111,6 +19875,7 @@ }, "node_modules/is-extglob": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19118,6 +19883,7 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19125,6 +19891,7 @@ }, "node_modules/is-generator-fn": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -19134,6 +19901,7 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -19146,6 +19914,7 @@ }, "node_modules/is-glob": { "version": "4.0.3", + "dev": true, "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" @@ -19165,6 +19934,7 @@ }, "node_modules/is-interactive": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19179,6 +19949,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -19193,6 +19964,7 @@ }, "node_modules/is-negative-zero": { "version": "2.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -19203,6 +19975,7 @@ }, "node_modules/is-number": { "version": "7.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.12.0" @@ -19210,6 +19983,7 @@ }, "node_modules/is-number-object": { "version": "1.0.7", + "dev": true, "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" @@ -19223,6 +19997,7 @@ }, "node_modules/is-obj": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19230,6 +20005,7 @@ }, "node_modules/is-path-cwd": { "version": "2.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -19237,6 +20013,7 @@ }, "node_modules/is-path-in-cwd": { "version": "2.1.0", + "dev": true, "license": "MIT", "dependencies": { "is-path-inside": "^2.1.0" @@ -19247,6 +20024,7 @@ }, "node_modules/is-path-inside": { "version": "2.1.0", + "dev": true, "license": "MIT", "dependencies": { "path-is-inside": "^1.0.2" @@ -19257,6 +20035,7 @@ }, "node_modules/is-plain-obj": { "version": "1.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19264,6 +20043,7 @@ }, "node_modules/is-plain-object": { "version": "5.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19271,6 +20051,7 @@ }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/is-promise": { @@ -19280,6 +20061,7 @@ }, "node_modules/is-regex": { "version": "1.1.4", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -19305,18 +20087,21 @@ }, "node_modules/is-resolvable": { "version": "1.1.0", + "dev": true, "license": "ISC" }, "node_modules/is-set": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2" @@ -19335,6 +20120,7 @@ }, "node_modules/is-stream": { "version": "2.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19345,6 +20131,7 @@ }, "node_modules/is-string": { "version": "1.0.7", + "dev": true, "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" @@ -19358,10 +20145,12 @@ }, "node_modules/is-subset": { "version": "0.1.1", + "dev": true, "license": "MIT" }, "node_modules/is-symbol": { "version": "1.0.4", + "dev": true, "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" @@ -19386,12 +20175,14 @@ }, "node_modules/is-touch-device": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/is-typed-array": { "version": "1.1.10", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dev": true, "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -19408,6 +20199,7 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/is-unc-path": { @@ -19423,6 +20215,7 @@ }, "node_modules/is-unicode-supported": { "version": "0.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -19448,12 +20241,14 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakref": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2" @@ -19466,6 +20261,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -19502,6 +20298,7 @@ }, "node_modules/is-wsl": { "version": "2.2.0", + "dev": true, "license": "MIT", "dependencies": { "is-docker": "^2.0.0" @@ -19512,14 +20309,17 @@ }, "node_modules/isarray": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", + "dev": true, "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19529,6 +20329,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", "integrity": "sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA==", + "dev": true, "dependencies": { "node-fetch": "^1.0.1", "whatwg-fetch": ">=0.10.0" @@ -19538,6 +20339,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -19546,6 +20348,7 @@ "version": "1.7.3", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "dev": true, "dependencies": { "encoding": "^0.1.11", "is-stream": "^1.0.1" @@ -19553,6 +20356,7 @@ }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=8" @@ -19560,6 +20364,7 @@ }, "node_modules/istanbul-lib-instrument": { "version": "5.2.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", @@ -19574,6 +20379,7 @@ }, "node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -19581,6 +20387,7 @@ }, "node_modules/istanbul-lib-report": { "version": "3.0.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", @@ -19593,6 +20400,7 @@ }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", @@ -19605,6 +20413,7 @@ }, "node_modules/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -19612,6 +20421,7 @@ }, "node_modules/istanbul-reports": { "version": "3.1.5", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", @@ -19623,6 +20433,7 @@ }, "node_modules/jest": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -19648,6 +20459,7 @@ }, "node_modules/jest-changed-files": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -19660,6 +20472,7 @@ }, "node_modules/jest-circus": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -19688,6 +20501,7 @@ }, "node_modules/jest-cli": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", @@ -19720,6 +20534,7 @@ }, "node_modules/jest-cli/node_modules/cliui": { "version": "7.0.4", + "dev": true, "license": "ISC", "dependencies": { "string-width": "^4.2.0", @@ -19729,6 +20544,7 @@ }, "node_modules/jest-cli/node_modules/y18n": { "version": "5.0.8", + "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -19736,6 +20552,7 @@ }, "node_modules/jest-cli/node_modules/yargs": { "version": "16.2.0", + "dev": true, "license": "MIT", "dependencies": { "cliui": "^7.0.2", @@ -19752,6 +20569,7 @@ }, "node_modules/jest-cli/node_modules/yargs-parser": { "version": "20.2.9", + "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -19759,6 +20577,7 @@ }, "node_modules/jest-config": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.8.0", @@ -19800,6 +20619,7 @@ }, "node_modules/jest-dev-server": { "version": "6.1.1", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.2", @@ -19813,6 +20633,7 @@ }, "node_modules/jest-dev-server/node_modules/commander": { "version": "5.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 6" @@ -19820,6 +20641,7 @@ }, "node_modules/jest-dev-server/node_modules/find-process": { "version": "1.4.7", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.0.0", @@ -19832,6 +20654,7 @@ }, "node_modules/jest-diff": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.0.0", @@ -19845,6 +20668,7 @@ }, "node_modules/jest-docblock": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" @@ -19855,6 +20679,7 @@ }, "node_modules/jest-docblock/node_modules/detect-newline": { "version": "3.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19862,6 +20687,7 @@ }, "node_modules/jest-each": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -19876,6 +20702,7 @@ }, "node_modules/jest-environment-jsdom": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -19892,6 +20719,7 @@ }, "node_modules/jest-environment-node": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -19907,6 +20735,7 @@ }, "node_modules/jest-get-type": { "version": "27.5.1", + "dev": true, "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -19914,6 +20743,7 @@ }, "node_modules/jest-haste-map": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -19938,6 +20768,7 @@ }, "node_modules/jest-jasmine2": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -19964,6 +20795,7 @@ }, "node_modules/jest-leak-detector": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "jest-get-type": "^27.5.1", @@ -19975,6 +20807,7 @@ }, "node_modules/jest-matcher-utils": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.0.0", @@ -19988,6 +20821,7 @@ }, "node_modules/jest-message-util": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", @@ -20006,6 +20840,7 @@ }, "node_modules/jest-mock": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20017,6 +20852,7 @@ }, "node_modules/jest-pnp-resolver": { "version": "1.2.2", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -20032,6 +20868,7 @@ }, "node_modules/jest-regex-util": { "version": "27.5.1", + "dev": true, "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -20039,6 +20876,7 @@ }, "node_modules/jest-resolve": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20058,6 +20896,7 @@ }, "node_modules/jest-resolve-dependencies": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20070,6 +20909,7 @@ }, "node_modules/jest-runner": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", @@ -20100,6 +20940,7 @@ }, "node_modules/jest-runtime": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -20131,6 +20972,7 @@ }, "node_modules/jest-runtime/node_modules/strip-bom": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -20138,6 +20980,7 @@ }, "node_modules/jest-serializer": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -20149,6 +20992,7 @@ }, "node_modules/jest-snapshot": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.7.2", @@ -20180,6 +21024,7 @@ }, "node_modules/jest-util": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20195,6 +21040,7 @@ }, "node_modules/jest-validate": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20210,6 +21056,7 @@ }, "node_modules/jest-watcher": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", @@ -20226,6 +21073,7 @@ }, "node_modules/jest-worker": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -20238,6 +21086,7 @@ }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -20251,6 +21100,7 @@ }, "node_modules/jest/node_modules/@jest/console": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20267,6 +21117,7 @@ }, "node_modules/jest/node_modules/@jest/core": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20313,6 +21164,7 @@ }, "node_modules/jest/node_modules/@jest/environment": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20327,6 +21179,7 @@ }, "node_modules/jest/node_modules/@jest/fake-timers": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20343,6 +21196,7 @@ }, "node_modules/jest/node_modules/@jest/globals": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20357,6 +21211,7 @@ }, "node_modules/jest/node_modules/@jest/reporters": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20400,6 +21255,7 @@ }, "node_modules/jest/node_modules/@jest/source-map": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20413,6 +21269,7 @@ }, "node_modules/jest/node_modules/@jest/test-result": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20427,6 +21284,7 @@ }, "node_modules/jest/node_modules/@jest/test-sequencer": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20441,6 +21299,7 @@ }, "node_modules/jest/node_modules/@jest/transform": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20466,6 +21325,7 @@ }, "node_modules/jest/node_modules/@jest/types": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20482,6 +21342,7 @@ }, "node_modules/jest/node_modules/@sinonjs/fake-timers": { "version": "9.1.2", + "dev": true, "license": "BSD-3-Clause", "peer": true, "dependencies": { @@ -20490,6 +21351,7 @@ }, "node_modules/jest/node_modules/@types/yargs": { "version": "17.0.13", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20498,6 +21360,7 @@ }, "node_modules/jest/node_modules/ansi-styles": { "version": "5.2.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -20509,6 +21372,7 @@ }, "node_modules/jest/node_modules/babel-jest": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20529,6 +21393,7 @@ }, "node_modules/jest/node_modules/babel-plugin-jest-hoist": { "version": "29.0.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20543,6 +21408,7 @@ }, "node_modules/jest/node_modules/babel-preset-jest": { "version": "29.0.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20558,6 +21424,7 @@ }, "node_modules/jest/node_modules/convert-source-map": { "version": "1.8.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20566,6 +21433,7 @@ }, "node_modules/jest/node_modules/detect-newline": { "version": "3.1.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -20574,6 +21442,7 @@ }, "node_modules/jest/node_modules/diff-sequences": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -20582,6 +21451,7 @@ }, "node_modules/jest/node_modules/emittery": { "version": "0.10.2", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -20593,6 +21463,7 @@ }, "node_modules/jest/node_modules/expect": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20608,6 +21479,7 @@ }, "node_modules/jest/node_modules/jest-changed-files": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20620,6 +21492,7 @@ }, "node_modules/jest/node_modules/jest-circus": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20649,6 +21522,7 @@ }, "node_modules/jest/node_modules/jest-cli": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20682,6 +21556,7 @@ }, "node_modules/jest/node_modules/jest-config": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20726,6 +21601,7 @@ }, "node_modules/jest/node_modules/jest-diff": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20740,6 +21616,7 @@ }, "node_modules/jest/node_modules/jest-docblock": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20751,6 +21628,7 @@ }, "node_modules/jest/node_modules/jest-each": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20766,6 +21644,7 @@ }, "node_modules/jest/node_modules/jest-environment-node": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20782,6 +21661,7 @@ }, "node_modules/jest/node_modules/jest-get-type": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -20790,6 +21670,7 @@ }, "node_modules/jest/node_modules/jest-haste-map": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20814,6 +21695,7 @@ }, "node_modules/jest/node_modules/jest-leak-detector": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20826,6 +21708,7 @@ }, "node_modules/jest/node_modules/jest-matcher-utils": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20840,6 +21723,7 @@ }, "node_modules/jest/node_modules/jest-message-util": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20859,6 +21743,7 @@ }, "node_modules/jest/node_modules/jest-mock": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20872,6 +21757,7 @@ }, "node_modules/jest/node_modules/jest-regex-util": { "version": "29.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -20880,6 +21766,7 @@ }, "node_modules/jest/node_modules/jest-resolve": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20899,6 +21786,7 @@ }, "node_modules/jest/node_modules/jest-resolve-dependencies": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20911,6 +21799,7 @@ }, "node_modules/jest/node_modules/jest-runner": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20942,6 +21831,7 @@ }, "node_modules/jest/node_modules/jest-runtime": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20974,6 +21864,7 @@ }, "node_modules/jest/node_modules/jest-snapshot": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21008,6 +21899,7 @@ }, "node_modules/jest/node_modules/jest-util": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21024,6 +21916,7 @@ }, "node_modules/jest/node_modules/jest-validate": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21040,6 +21933,7 @@ }, "node_modules/jest/node_modules/jest-watcher": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21058,6 +21952,7 @@ }, "node_modules/jest/node_modules/jest-worker": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21072,6 +21967,7 @@ }, "node_modules/jest/node_modules/p-limit": { "version": "3.1.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21086,6 +21982,7 @@ }, "node_modules/jest/node_modules/pretty-format": { "version": "29.1.2", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21099,16 +21996,19 @@ }, "node_modules/jest/node_modules/react-is": { "version": "18.2.0", + "dev": true, "license": "MIT", "peer": true }, "node_modules/jest/node_modules/safe-buffer": { "version": "5.1.2", + "dev": true, "license": "MIT", "peer": true }, "node_modules/jest/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "peer": true, "engines": { @@ -21117,6 +22017,7 @@ }, "node_modules/jest/node_modules/source-map-support": { "version": "0.5.13", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21126,6 +22027,7 @@ }, "node_modules/jest/node_modules/strip-bom": { "version": "4.0.0", + "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21134,6 +22036,7 @@ }, "node_modules/jest/node_modules/supports-color": { "version": "8.1.1", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21148,6 +22051,7 @@ }, "node_modules/jest/node_modules/v8-to-istanbul": { "version": "9.0.1", + "dev": true, "license": "ISC", "peer": true, "dependencies": { @@ -21161,6 +22065,7 @@ }, "node_modules/jest/node_modules/write-file-atomic": { "version": "4.0.2", + "dev": true, "license": "ISC", "peer": true, "dependencies": { @@ -21173,10 +22078,12 @@ }, "node_modules/js-base64": { "version": "2.6.4", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/js-sdsl": { "version": "4.1.5", + "dev": true, "license": "MIT" }, "node_modules/js-tokens": { @@ -21185,6 +22092,7 @@ }, "node_modules/js-yaml": { "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { "argparse": "^2.0.1" @@ -21195,6 +22103,7 @@ }, "node_modules/jsdoc-type-pratt-parser": { "version": "2.2.5", + "dev": true, "license": "MIT", "engines": { "node": ">=12.0.0" @@ -21202,6 +22111,7 @@ }, "node_modules/jsdom": { "version": "16.7.0", + "dev": true, "license": "MIT", "dependencies": { "abab": "^2.0.5", @@ -21246,6 +22156,7 @@ }, "node_modules/jsdom/node_modules/acorn": { "version": "8.8.0", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -21256,6 +22167,7 @@ }, "node_modules/jsdom/node_modules/form-data": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -21268,10 +22180,12 @@ }, "node_modules/jsdom/node_modules/parse5": { "version": "6.0.1", + "dev": true, "license": "MIT" }, "node_modules/jsdom/node_modules/webidl-conversions": { "version": "6.1.0", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=10.4" @@ -21279,6 +22193,7 @@ }, "node_modules/jsdom/node_modules/whatwg-url": { "version": "8.7.0", + "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.7.0", @@ -21291,6 +22206,7 @@ }, "node_modules/jsdom/node_modules/ws": { "version": "7.5.9", + "dev": true, "license": "MIT", "engines": { "node": ">=8.3.0" @@ -21320,6 +22236,7 @@ }, "node_modules/json-parse-better-errors": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/json-parse-even-better-errors": { @@ -21328,10 +22245,12 @@ }, "node_modules/json-schema-traverse": { "version": "0.4.1", + "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/json-stringify-nice": { @@ -21349,6 +22268,7 @@ }, "node_modules/json2php": { "version": "0.0.4", + "dev": true, "license": "BSD" }, "node_modules/json5": { @@ -21364,6 +22284,7 @@ }, "node_modules/jsonc-parser": { "version": "3.0.0", + "dev": true, "license": "MIT" }, "node_modules/jsonfile": { @@ -21379,6 +22300,7 @@ }, "node_modules/jsonparse": { "version": "1.3.1", + "dev": true, "engines": [ "node >= 0.2.0" ], @@ -21386,6 +22308,7 @@ }, "node_modules/JSONStream": { "version": "1.3.5", + "dev": true, "license": "(MIT OR Apache-2.0)", "dependencies": { "jsonparse": "^1.2.0", @@ -21400,6 +22323,7 @@ }, "node_modules/jsx-ast-utils": { "version": "3.3.3", + "dev": true, "license": "MIT", "dependencies": { "array-includes": "^3.1.5", @@ -21426,6 +22350,7 @@ }, "node_modules/kind-of": { "version": "3.2.2", + "dev": true, "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" @@ -21444,6 +22369,7 @@ }, "node_modules/kleur": { "version": "3.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -21451,6 +22377,7 @@ }, "node_modules/klona": { "version": "2.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">= 8" @@ -21458,12 +22385,14 @@ }, "node_modules/known-css-properties": { "version": "0.25.0", + "dev": true, "license": "MIT" }, "node_modules/labeled-stream-splicer": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz", "integrity": "sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==", + "dev": true, "dependencies": { "inherits": "^2.0.1", "stream-splicer": "^2.0.0" @@ -21471,10 +22400,12 @@ }, "node_modules/language-subtag-registry": { "version": "0.3.22", + "dev": true, "license": "CC0-1.0" }, "node_modules/language-tags": { "version": "1.0.5", + "dev": true, "license": "MIT", "dependencies": { "language-subtag-registry": "~0.3.2" @@ -21494,6 +22425,7 @@ }, "node_modules/lazy-cache": { "version": "1.0.4", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -23316,6 +24248,7 @@ }, "node_modules/leven": { "version": "3.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -23323,6 +24256,7 @@ }, "node_modules/levn": { "version": "0.3.0", + "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2", @@ -23362,6 +24296,7 @@ }, "node_modules/lilconfig": { "version": "2.0.6", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -23373,6 +24308,7 @@ }, "node_modules/linkify-it": { "version": "3.0.3", + "dev": true, "license": "MIT", "dependencies": { "uc.micro": "^1.0.1" @@ -23380,6 +24316,7 @@ }, "node_modules/loader-runner": { "version": "4.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6.11.5" @@ -23387,6 +24324,7 @@ }, "node_modules/loader-utils": { "version": "2.0.4", + "dev": true, "license": "MIT", "dependencies": { "big.js": "^5.2.2", @@ -23399,6 +24337,7 @@ }, "node_modules/locate-path": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "p-locate": "^4.1.0" @@ -23409,6 +24348,7 @@ }, "node_modules/lodash": { "version": "4.17.21", + "dev": true, "license": "MIT" }, "node_modules/lodash._reinterpolate": { @@ -23423,6 +24363,7 @@ }, "node_modules/lodash.debounce": { "version": "4.0.8", + "dev": true, "license": "MIT" }, "node_modules/lodash.defaults": { @@ -23432,14 +24373,17 @@ }, "node_modules/lodash.escape": { "version": "4.0.1", + "dev": true, "license": "MIT" }, "node_modules/lodash.flattendeep": { "version": "4.4.0", + "dev": true, "license": "MIT" }, "node_modules/lodash.isequal": { "version": "4.5.0", + "dev": true, "license": "MIT" }, "node_modules/lodash.ismatch": { @@ -23450,10 +24394,12 @@ "node_modules/lodash.memoize": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", - "integrity": "sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==" + "integrity": "sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==", + "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", + "dev": true, "license": "MIT" }, "node_modules/lodash.template": { @@ -23475,14 +24421,17 @@ }, "node_modules/lodash.truncate": { "version": "4.4.2", + "dev": true, "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", + "dev": true, "license": "MIT" }, "node_modules/log-symbols": { "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.0", @@ -23516,6 +24465,7 @@ }, "node_modules/lower-case": { "version": "2.0.2", + "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -23523,6 +24473,7 @@ }, "node_modules/lru-cache": { "version": "6.0.0", + "dev": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" @@ -23589,12 +24540,14 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, "bin": { "lz-string": "bin/bin.js" } }, "node_modules/make-dir": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "semver": "^6.0.0" @@ -23608,6 +24561,7 @@ }, "node_modules/make-dir/node_modules/semver": { "version": "6.3.0", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -23790,6 +24744,7 @@ }, "node_modules/makeerror": { "version": "1.0.12", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" @@ -23805,6 +24760,7 @@ }, "node_modules/map-obj": { "version": "4.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -23820,6 +24776,7 @@ }, "node_modules/map-values": { "version": "1.0.1", + "dev": true, "license": "Public Domain" }, "node_modules/map-visit": { @@ -23844,6 +24801,7 @@ }, "node_modules/markdown-it": { "version": "12.3.2", + "dev": true, "license": "MIT", "dependencies": { "argparse": "^2.0.1", @@ -23858,6 +24816,7 @@ }, "node_modules/markdown-it/node_modules/entities": { "version": "2.1.0", + "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -23870,6 +24829,7 @@ }, "node_modules/markdownlint": { "version": "0.25.1", + "dev": true, "license": "MIT", "dependencies": { "markdown-it": "12.3.2" @@ -23880,6 +24840,7 @@ }, "node_modules/markdownlint-cli": { "version": "0.31.1", + "dev": true, "license": "MIT", "dependencies": { "commander": "~9.0.0", @@ -23902,6 +24863,7 @@ }, "node_modules/markdownlint-cli/node_modules/commander": { "version": "9.0.0", + "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || >=14" @@ -23909,6 +24871,7 @@ }, "node_modules/markdownlint-cli/node_modules/minimatch": { "version": "3.0.8", + "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -23919,6 +24882,7 @@ }, "node_modules/markdownlint-rule-helpers": { "version": "0.16.0", + "dev": true, "license": "MIT" }, "node_modules/matched": { @@ -23938,6 +24902,7 @@ }, "node_modules/mathml-tag-names": { "version": "2.1.3", + "dev": true, "license": "MIT", "funding": { "type": "github", @@ -23948,6 +24913,7 @@ "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1", @@ -23986,14 +24952,17 @@ "node_modules/mdn-data": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", - "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==" + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==", + "dev": true }, "node_modules/mdurl": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/media-typer": { "version": "0.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -24001,6 +24970,7 @@ }, "node_modules/memfs": { "version": "3.4.7", + "dev": true, "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.3" @@ -24011,14 +24981,17 @@ }, "node_modules/memize": { "version": "1.1.0", + "dev": true, "license": "MIT" }, "node_modules/memoize-one": { "version": "5.2.1", + "dev": true, "license": "MIT" }, "node_modules/meow": { "version": "6.1.1", + "dev": true, "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", @@ -24042,6 +25015,7 @@ }, "node_modules/meow/node_modules/type-fest": { "version": "0.13.1", + "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -24057,6 +25031,7 @@ }, "node_modules/merge-deep": { "version": "3.0.3", + "dev": true, "license": "MIT", "dependencies": { "arr-union": "^3.1.0", @@ -24069,14 +25044,17 @@ }, "node_modules/merge-descriptors": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/merge-stream": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 8" @@ -24084,6 +25062,7 @@ }, "node_modules/methods": { "version": "1.1.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -24091,6 +25070,7 @@ }, "node_modules/micromatch": { "version": "4.0.5", + "dev": true, "license": "MIT", "dependencies": { "braces": "^3.0.2", @@ -24104,6 +25084,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, "dependencies": { "bn.js": "^4.0.0", "brorand": "^1.0.1" @@ -24115,12 +25096,14 @@ "node_modules/miller-rabin/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true }, "node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, "bin": { "mime": "cli.js" }, @@ -24130,6 +25113,7 @@ }, "node_modules/mime-db": { "version": "1.52.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -24137,6 +25121,7 @@ }, "node_modules/mime-types": { "version": "2.1.35", + "dev": true, "license": "MIT", "dependencies": { "mime-db": "1.52.0" @@ -24147,6 +25132,7 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -24154,6 +25140,7 @@ }, "node_modules/min-indent": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -24161,6 +25148,7 @@ }, "node_modules/mini-css-extract-plugin": { "version": "2.6.1", + "dev": true, "license": "MIT", "dependencies": { "schema-utils": "^4.0.0" @@ -24178,6 +25166,7 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv": { "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -24192,6 +25181,7 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -24202,10 +25192,12 @@ }, "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -24225,6 +25217,7 @@ "version": "0.8.1", "resolved": "https://registry.npmjs.org/minimalcss/-/minimalcss-0.8.1.tgz", "integrity": "sha512-a+kbRVvxz+oQf43pweflM38KvcvVuTvv3v6a8UgVbfS7E2rktSJSf8kfbGToSXgbiBDP83WTh8MWL6PdT9ljag==", + "dev": true, "dependencies": { "cheerio": "1.0.0-rc.2", "css-tree": "1.0.0-alpha.28", @@ -24241,6 +25234,7 @@ "version": "1.0.0-rc.2", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz", "integrity": "sha512-9LDHQy1jHc/eXMzPN6/oah9Qba4CjdKECC7YYEE/2zge/tsGwt19NQp5NFdfd5Lx6TZlyC5SXNQkG41P9r6XDg==", + "dev": true, "dependencies": { "css-select": "~1.2.0", "dom-serializer": "~0.1.0", @@ -24257,6 +25251,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", "integrity": "sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==", + "dev": true, "dependencies": { "boolbase": "~1.0.0", "css-what": "2.1", @@ -24268,6 +25263,7 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "dev": true, "engines": { "node": "*" } @@ -24276,6 +25272,7 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "dev": true, "dependencies": { "domelementtype": "^1.3.0", "entities": "^1.1.1" @@ -24284,12 +25281,14 @@ "node_modules/minimalcss/node_modules/domelementtype": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true }, "node_modules/minimalcss/node_modules/domhandler": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, "dependencies": { "domelementtype": "1" } @@ -24298,6 +25297,7 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", + "dev": true, "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -24306,12 +25306,14 @@ "node_modules/minimalcss/node_modules/entities": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true }, "node_modules/minimalcss/node_modules/htmlparser2": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, "dependencies": { "domelementtype": "^1.3.1", "domhandler": "^2.3.0", @@ -24325,6 +25327,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, "dependencies": { "boolbase": "~1.0.0" } @@ -24333,6 +25336,7 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", + "dev": true, "dependencies": { "@types/node": "*" } @@ -24341,6 +25345,7 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -24352,15 +25357,18 @@ }, "node_modules/minimalistic-assert": { "version": "1.0.1", + "dev": true, "license": "ISC" }, "node_modules/minimalistic-crypto-utils": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "dev": true }, "node_modules/minimatch": { "version": "3.1.2", + "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -24371,10 +25379,12 @@ }, "node_modules/minimist": { "version": "1.2.6", + "dev": true, "license": "MIT" }, "node_modules/minimist-options": { "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { "arrify": "^1.0.1", @@ -24387,6 +25397,7 @@ }, "node_modules/minimist-options/node_modules/kind-of": { "version": "6.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24520,6 +25531,7 @@ }, "node_modules/mixin-object": { "version": "2.0.1", + "dev": true, "license": "MIT", "dependencies": { "for-in": "^0.1.3", @@ -24531,6 +25543,7 @@ }, "node_modules/mixin-object/node_modules/for-in": { "version": "0.1.8", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24549,6 +25562,7 @@ }, "node_modules/mkdirp-classic": { "version": "0.5.3", + "dev": true, "license": "MIT" }, "node_modules/mkdirp-infer-owner": { @@ -24576,6 +25590,7 @@ "version": "6.2.3", "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz", "integrity": "sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA==", + "dev": true, "dependencies": { "browser-resolve": "^2.0.0", "cached-path-relative": "^1.0.2", @@ -24602,6 +25617,7 @@ }, "node_modules/moment": { "version": "2.29.4", + "dev": true, "license": "MIT", "engines": { "node": "*" @@ -24609,6 +25625,7 @@ }, "node_modules/moment-timezone": { "version": "0.5.37", + "dev": true, "license": "MIT", "dependencies": { "moment": ">= 2.9.0" @@ -24619,14 +25636,17 @@ }, "node_modules/moo": { "version": "0.5.2", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/mousetrap": { "version": "1.6.5", + "dev": true, "license": "Apache-2.0 WITH LLVM-exception" }, "node_modules/mrmime": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -24638,6 +25658,7 @@ }, "node_modules/multicast-dns": { "version": "7.2.5", + "dev": true, "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", @@ -24657,6 +25678,7 @@ }, "node_modules/mute-stream": { "version": "0.0.8", + "dev": true, "license": "ISC" }, "node_modules/nan": { @@ -24667,6 +25689,7 @@ }, "node_modules/nanoid": { "version": "3.3.4", + "dev": true, "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" @@ -24677,10 +25700,12 @@ }, "node_modules/natural-compare": { "version": "1.4.0", + "dev": true, "license": "MIT" }, "node_modules/nearley": { "version": "2.20.1", + "dev": true, "license": "MIT", "dependencies": { "commander": "^2.19.0", @@ -24701,10 +25726,12 @@ }, "node_modules/nearley/node_modules/commander": { "version": "2.20.3", + "dev": true, "license": "MIT" }, "node_modules/negotiator": { "version": "0.6.3", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -24712,6 +25739,7 @@ }, "node_modules/neo-async": { "version": "2.6.2", + "dev": true, "license": "MIT" }, "node_modules/next-tick": { @@ -24721,6 +25749,7 @@ }, "node_modules/no-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "lower-case": "^2.0.2", @@ -24734,6 +25763,7 @@ }, "node_modules/node-fetch": { "version": "2.6.7", + "dev": true, "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" @@ -24752,6 +25782,7 @@ }, "node_modules/node-forge": { "version": "1.3.1", + "dev": true, "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" @@ -24769,6 +25800,7 @@ }, "node_modules/node-int64": { "version": "0.4.0", + "dev": true, "license": "MIT" }, "node_modules/node-version-compare": { @@ -24792,6 +25824,7 @@ }, "node_modules/normalize-package-data": { "version": "2.5.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", @@ -24802,10 +25835,12 @@ }, "node_modules/normalize-package-data/node_modules/hosted-git-info": { "version": "2.8.9", + "dev": true, "license": "ISC" }, "node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.1", + "dev": true, "license": "ISC", "bin": { "semver": "bin/semver" @@ -24813,6 +25848,7 @@ }, "node_modules/normalize-path": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24820,6 +25856,7 @@ }, "node_modules/normalize-range": { "version": "0.1.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24827,6 +25864,7 @@ }, "node_modules/normalize-url": { "version": "6.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -24853,6 +25891,7 @@ }, "node_modules/npm-bundled": { "version": "1.1.2", + "dev": true, "license": "ISC", "dependencies": { "npm-normalize-package-bin": "^1.0.1" @@ -24871,6 +25910,7 @@ }, "node_modules/npm-normalize-package-bin": { "version": "1.0.1", + "dev": true, "license": "ISC" }, "node_modules/npm-package-arg": { @@ -24888,6 +25928,7 @@ }, "node_modules/npm-package-json-lint": { "version": "5.4.2", + "dev": true, "license": "MIT", "dependencies": { "ajv": "^6.12.6", @@ -24916,6 +25957,7 @@ }, "node_modules/npm-package-json-lint/node_modules/is-plain-obj": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -24926,6 +25968,7 @@ }, "node_modules/npm-packlist": { "version": "3.0.0", + "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.6", @@ -25085,6 +26128,7 @@ }, "node_modules/npm-run-path": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.0.0" @@ -25127,6 +26171,7 @@ }, "node_modules/nth-check": { "version": "2.1.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" @@ -25145,6 +26190,7 @@ }, "node_modules/nwsapi": { "version": "2.2.2", + "dev": true, "license": "MIT" }, "node_modules/nx": { @@ -25339,10 +26385,12 @@ }, "node_modules/object-filter": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/object-inspect": { "version": "1.12.2", + "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -25350,6 +26398,7 @@ }, "node_modules/object-is": { "version": "1.1.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -25364,6 +26413,7 @@ }, "node_modules/object-keys": { "version": "1.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -25382,6 +26432,7 @@ }, "node_modules/object.assign": { "version": "4.1.4", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -25412,6 +26463,7 @@ }, "node_modules/object.entries": { "version": "1.1.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -25424,6 +26476,7 @@ }, "node_modules/object.fromentries": { "version": "2.0.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -25439,6 +26492,7 @@ }, "node_modules/object.getownpropertydescriptors": { "version": "2.1.4", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.reduce": "^1.0.4", @@ -25455,6 +26509,7 @@ }, "node_modules/object.hasown": { "version": "1.1.1", + "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.4", @@ -25501,6 +26556,7 @@ }, "node_modules/object.values": { "version": "1.1.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -25516,12 +26572,14 @@ }, "node_modules/obuf": { "version": "1.1.2", + "dev": true, "license": "MIT" }, "node_modules/on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dev": true, "dependencies": { "ee-first": "1.1.1" }, @@ -25531,6 +26589,7 @@ }, "node_modules/on-headers": { "version": "1.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -25538,6 +26597,7 @@ }, "node_modules/once": { "version": "1.4.0", + "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" @@ -25545,6 +26605,7 @@ }, "node_modules/onetime": { "version": "5.1.2", + "dev": true, "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" @@ -25558,6 +26619,7 @@ }, "node_modules/open": { "version": "8.4.0", + "dev": true, "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", @@ -25573,6 +26635,7 @@ }, "node_modules/opener": { "version": "1.5.2", + "dev": true, "license": "(WTFPL OR MIT)", "bin": { "opener": "bin/opener-bin.js" @@ -25580,6 +26643,7 @@ }, "node_modules/optionator": { "version": "0.8.2", + "dev": true, "license": "MIT", "dependencies": { "deep-is": "~0.1.3", @@ -25595,6 +26659,7 @@ }, "node_modules/ora": { "version": "5.4.1", + "dev": true, "license": "MIT", "dependencies": { "bl": "^4.1.0", @@ -25625,10 +26690,12 @@ "node_modules/os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true }, "node_modules/os-homedir": { "version": "1.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25647,6 +26714,7 @@ }, "node_modules/os-tmpdir": { "version": "1.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25662,6 +26730,7 @@ }, "node_modules/p-limit": { "version": "2.3.0", + "dev": true, "license": "MIT", "dependencies": { "p-try": "^2.0.0" @@ -25675,6 +26744,7 @@ }, "node_modules/p-locate": { "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { "p-limit": "^2.2.0" @@ -25741,6 +26811,7 @@ }, "node_modules/p-retry": { "version": "4.6.2", + "dev": true, "license": "MIT", "dependencies": { "@types/retry": "0.12.0", @@ -25763,6 +26834,7 @@ }, "node_modules/p-try": { "version": "2.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -25785,10 +26857,12 @@ "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true }, "node_modules/param-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", @@ -25809,6 +26883,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", "integrity": "sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg==", + "dev": true, "dependencies": { "path-platform": "~0.11.15" } @@ -25817,6 +26892,7 @@ "version": "5.1.6", "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, "dependencies": { "asn1.js": "^5.2.0", "browserify-aes": "^1.0.0", @@ -25890,6 +26966,7 @@ }, "node_modules/parse-passwd": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25897,6 +26974,7 @@ }, "node_modules/parse5": { "version": "7.1.1", + "dev": true, "license": "MIT", "dependencies": { "entities": "^4.4.0" @@ -25907,6 +26985,7 @@ }, "node_modules/parse5-htmlparser2-tree-adapter": { "version": "7.0.0", + "dev": true, "license": "MIT", "dependencies": { "domhandler": "^5.0.2", @@ -25918,6 +26997,7 @@ }, "node_modules/parseurl": { "version": "1.3.3", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -25925,6 +27005,7 @@ }, "node_modules/pascal-case": { "version": "3.1.2", + "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -25942,10 +27023,12 @@ "node_modules/path-browserify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true }, "node_modules/path-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", @@ -25959,6 +27042,7 @@ }, "node_modules/path-exists": { "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -25966,6 +27050,7 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25973,10 +27058,12 @@ }, "node_modules/path-is-inside": { "version": "1.0.2", + "dev": true, "license": "(WTFPL OR MIT)" }, "node_modules/path-key": { "version": "3.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -25990,6 +27077,7 @@ "version": "0.11.15", "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", "integrity": "sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg==", + "dev": true, "engines": { "node": ">= 0.8.0" } @@ -26020,6 +27108,7 @@ }, "node_modules/path-to-regexp": { "version": "0.1.7", + "dev": true, "license": "MIT" }, "node_modules/path-type": { @@ -26044,6 +27133,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, "dependencies": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", @@ -26057,10 +27147,12 @@ }, "node_modules/pend": { "version": "1.2.0", + "dev": true, "license": "MIT" }, "node_modules/performance-now": { "version": "2.1.0", + "dev": true, "license": "MIT" }, "node_modules/picocolors": { @@ -26069,6 +27161,7 @@ }, "node_modules/picomatch": { "version": "2.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8.6" @@ -26079,6 +27172,7 @@ }, "node_modules/pify": { "version": "4.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -26086,6 +27180,7 @@ }, "node_modules/pinkie": { "version": "2.0.4", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -26093,6 +27188,7 @@ }, "node_modules/pinkie-promise": { "version": "2.0.1", + "dev": true, "license": "MIT", "dependencies": { "pinkie": "^2.0.0" @@ -26103,6 +27199,7 @@ }, "node_modules/pirates": { "version": "4.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">= 6" @@ -26110,6 +27207,7 @@ }, "node_modules/pkg-dir": { "version": "4.2.0", + "dev": true, "license": "MIT", "dependencies": { "find-up": "^4.0.0" @@ -26134,6 +27232,7 @@ }, "node_modules/plur": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "irregular-plurals": "^3.2.0" @@ -26147,6 +27246,7 @@ }, "node_modules/popmotion": { "version": "11.0.3", + "dev": true, "license": "MIT", "dependencies": { "framesync": "6.0.1", @@ -26165,6 +27265,7 @@ }, "node_modules/postcss": { "version": "8.4.17", + "dev": true, "funding": [ { "type": "opencollective", @@ -26187,6 +27288,7 @@ }, "node_modules/postcss-calc": { "version": "8.2.4", + "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.9", @@ -26198,6 +27300,7 @@ }, "node_modules/postcss-colormin": { "version": "5.3.0", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -26214,6 +27317,7 @@ }, "node_modules/postcss-convert-values": { "version": "5.1.2", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.20.3", @@ -26228,6 +27332,7 @@ }, "node_modules/postcss-discard-comments": { "version": "5.1.2", + "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -26238,6 +27343,7 @@ }, "node_modules/postcss-discard-duplicates": { "version": "5.1.0", + "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -26248,6 +27354,7 @@ }, "node_modules/postcss-discard-empty": { "version": "5.1.1", + "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -26258,6 +27365,7 @@ }, "node_modules/postcss-discard-overridden": { "version": "5.1.0", + "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -26268,6 +27376,7 @@ }, "node_modules/postcss-loader": { "version": "6.2.1", + "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.0", @@ -26288,10 +27397,12 @@ }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", + "dev": true, "license": "MIT" }, "node_modules/postcss-merge-longhand": { "version": "5.1.6", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", @@ -26306,6 +27417,7 @@ }, "node_modules/postcss-merge-rules": { "version": "5.1.2", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -26322,6 +27434,7 @@ }, "node_modules/postcss-minify-font-values": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26335,6 +27448,7 @@ }, "node_modules/postcss-minify-gradients": { "version": "5.1.1", + "dev": true, "license": "MIT", "dependencies": { "colord": "^2.9.1", @@ -26350,6 +27464,7 @@ }, "node_modules/postcss-minify-params": { "version": "5.1.3", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -26365,6 +27480,7 @@ }, "node_modules/postcss-minify-selectors": { "version": "5.2.1", + "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -26378,6 +27494,7 @@ }, "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", + "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -26388,6 +27505,7 @@ }, "node_modules/postcss-modules-local-by-default": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", @@ -26403,6 +27521,7 @@ }, "node_modules/postcss-modules-scope": { "version": "3.0.0", + "dev": true, "license": "ISC", "dependencies": { "postcss-selector-parser": "^6.0.4" @@ -26416,6 +27535,7 @@ }, "node_modules/postcss-modules-values": { "version": "4.0.0", + "dev": true, "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" @@ -26429,6 +27549,7 @@ }, "node_modules/postcss-normalize-charset": { "version": "5.1.0", + "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -26439,6 +27560,7 @@ }, "node_modules/postcss-normalize-display-values": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26452,6 +27574,7 @@ }, "node_modules/postcss-normalize-positions": { "version": "5.1.1", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26465,6 +27588,7 @@ }, "node_modules/postcss-normalize-repeat-style": { "version": "5.1.1", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26478,6 +27602,7 @@ }, "node_modules/postcss-normalize-string": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26491,6 +27616,7 @@ }, "node_modules/postcss-normalize-timing-functions": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26504,6 +27630,7 @@ }, "node_modules/postcss-normalize-unicode": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -26518,6 +27645,7 @@ }, "node_modules/postcss-normalize-url": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "normalize-url": "^6.0.1", @@ -26532,6 +27660,7 @@ }, "node_modules/postcss-normalize-whitespace": { "version": "5.1.1", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26545,6 +27674,7 @@ }, "node_modules/postcss-ordered-values": { "version": "5.1.3", + "dev": true, "license": "MIT", "dependencies": { "cssnano-utils": "^3.1.0", @@ -26559,6 +27689,7 @@ }, "node_modules/postcss-reduce-initial": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -26573,6 +27704,7 @@ }, "node_modules/postcss-reduce-transforms": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -26586,10 +27718,12 @@ }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.1", + "dev": true, "license": "MIT" }, "node_modules/postcss-safe-parser": { "version": "6.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=12.0" @@ -26604,6 +27738,7 @@ }, "node_modules/postcss-scss": { "version": "4.0.5", + "dev": true, "funding": [ { "type": "opencollective", @@ -26624,6 +27759,7 @@ }, "node_modules/postcss-selector-parser": { "version": "6.0.10", + "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -26635,6 +27771,7 @@ }, "node_modules/postcss-svgo": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", @@ -26649,6 +27786,7 @@ }, "node_modules/postcss-unique-selectors": { "version": "5.1.1", + "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -26662,16 +27800,19 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", + "dev": true, "license": "MIT" }, "node_modules/prelude-ls": { "version": "1.1.2", + "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/prettier": { "version": "2.7.1", + "dev": true, "license": "MIT", "peer": true, "bin": { @@ -26686,6 +27827,7 @@ }, "node_modules/prettier-linter-helpers": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "fast-diff": "^1.1.2" @@ -26696,6 +27838,7 @@ }, "node_modules/pretty-format": { "version": "27.5.1", + "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1", @@ -26708,6 +27851,7 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -26736,16 +27880,19 @@ "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, "engines": { "node": ">= 0.6.0" } }, "node_modules/process-nextick-args": { "version": "2.0.1", + "dev": true, "license": "MIT" }, "node_modules/progress": { "version": "2.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -26794,6 +27941,7 @@ }, "node_modules/prompts": { "version": "2.4.2", + "dev": true, "license": "MIT", "dependencies": { "kleur": "^3.0.3", @@ -26805,6 +27953,7 @@ }, "node_modules/prop-types": { "version": "15.8.1", + "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", @@ -26814,6 +27963,7 @@ }, "node_modules/prop-types-exact": { "version": "1.2.0", + "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.3", @@ -26823,6 +27973,7 @@ }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", + "dev": true, "license": "MIT" }, "node_modules/proto-list": { @@ -26837,6 +27988,7 @@ }, "node_modules/proxy-addr": { "version": "2.0.7", + "dev": true, "license": "MIT", "dependencies": { "forwarded": "0.2.0", @@ -26848,20 +28000,24 @@ }, "node_modules/proxy-from-env": { "version": "1.1.0", + "dev": true, "license": "MIT" }, "node_modules/pseudomap": { "version": "1.0.2", + "dev": true, "license": "ISC" }, "node_modules/psl": { "version": "1.9.0", + "dev": true, "license": "MIT" }, "node_modules/public-encrypt": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, "dependencies": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", @@ -26874,10 +28030,12 @@ "node_modules/public-encrypt/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true }, "node_modules/pump": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", @@ -26887,13 +28045,15 @@ "node_modules/punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true }, "node_modules/puppeteer": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz", "integrity": "sha512-bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ==", "deprecated": "< 19.4.0 is no longer supported", + "dev": true, "hasInstallScript": true, "dependencies": { "debug": "^4.1.0", @@ -26911,6 +28071,7 @@ }, "node_modules/puppeteer-core": { "version": "18.0.5", + "dev": true, "license": "Apache-2.0", "peer": true, "dependencies": { @@ -26934,6 +28095,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", + "dev": true, "dependencies": { "es6-promisify": "^5.0.0" }, @@ -26945,6 +28107,7 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, "dependencies": { "concat-stream": "^1.6.2", "debug": "^2.6.9", @@ -26959,6 +28122,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { "ms": "2.0.0" } @@ -26966,12 +28130,14 @@ "node_modules/puppeteer/node_modules/extract-zip/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/puppeteer/node_modules/https-proxy-agent": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", + "dev": true, "dependencies": { "agent-base": "^4.3.0", "debug": "^3.1.0" @@ -26984,6 +28150,7 @@ "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "dependencies": { "ms": "^2.1.1" } @@ -26992,6 +28159,7 @@ "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, "dependencies": { "minimist": "^1.2.6" }, @@ -27003,6 +28171,7 @@ "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, "dependencies": { "glob": "^7.1.3" }, @@ -27014,12 +28183,14 @@ "version": "6.2.2", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, "dependencies": { "async-limiter": "~1.0.0" } }, "node_modules/q": { "version": "1.5.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.6.0", @@ -27030,24 +28201,38 @@ "version": "6.5.2", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true, "engines": { "node": ">=0.6" } }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, "node_modules/querystring-es3": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "dev": true, "engines": { "node": ">=0.4.x" } }, "node_modules/querystringify": { "version": "2.2.0", + "dev": true, "license": "MIT" }, "node_modules/queue-microtask": { "version": "1.2.3", + "dev": true, "funding": [ { "type": "github", @@ -27066,6 +28251,7 @@ }, "node_modules/quick-lru": { "version": "4.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -27073,6 +28259,7 @@ }, "node_modules/raf": { "version": "3.4.1", + "dev": true, "license": "MIT", "dependencies": { "performance-now": "^2.1.0" @@ -27080,10 +28267,12 @@ }, "node_modules/railroad-diagrams": { "version": "1.0.0", + "dev": true, "license": "CC0-1.0" }, "node_modules/randexp": { "version": "0.4.6", + "dev": true, "license": "MIT", "dependencies": { "discontinuous-range": "1.0.0", @@ -27095,6 +28284,7 @@ }, "node_modules/randombytes": { "version": "2.1.0", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" @@ -27104,6 +28294,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, "dependencies": { "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" @@ -27111,6 +28302,7 @@ }, "node_modules/range-parser": { "version": "1.2.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -27120,6 +28312,7 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", + "dev": true, "dependencies": { "bytes": "3.0.0", "http-errors": "1.6.3", @@ -27134,6 +28327,7 @@ "version": "0.4.23", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -27143,6 +28337,7 @@ }, "node_modules/re-resizable": { "version": "6.9.9", + "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.13.1 || ^17.0.0 || ^18.0.0", @@ -27162,6 +28357,7 @@ }, "node_modules/react-colorful": { "version": "5.6.1", + "dev": true, "license": "MIT", "peerDependencies": { "react": ">=16.8.0", @@ -27170,6 +28366,7 @@ }, "node_modules/react-dates": { "version": "21.8.0", + "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.15.0", @@ -27198,6 +28395,7 @@ }, "node_modules/react-dates/node_modules/airbnb-prop-types": { "version": "2.16.0", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", @@ -27219,6 +28417,7 @@ }, "node_modules/react-dates/node_modules/deepmerge": { "version": "1.5.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -27226,10 +28425,12 @@ }, "node_modules/react-dates/node_modules/react-is": { "version": "16.13.1", + "dev": true, "license": "MIT" }, "node_modules/react-dates/node_modules/react-with-direction": { "version": "1.4.0", + "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.16.0", @@ -27248,6 +28449,7 @@ }, "node_modules/react-dom": { "version": "17.0.2", + "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", @@ -27260,6 +28462,7 @@ }, "node_modules/react-infinite-scroller": { "version": "1.2.6", + "dev": true, "license": "MIT", "dependencies": { "prop-types": "^15.5.8" @@ -27270,10 +28473,12 @@ }, "node_modules/react-is": { "version": "17.0.2", + "dev": true, "license": "MIT" }, "node_modules/react-moment-proptypes": { "version": "1.8.1", + "dev": true, "license": "MIT", "dependencies": { "moment": ">=1.6.0" @@ -27284,6 +28489,7 @@ }, "node_modules/react-outside-click-handler": { "version": "1.3.0", + "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.15.0", @@ -27299,6 +28505,7 @@ }, "node_modules/react-outside-click-handler/node_modules/airbnb-prop-types": { "version": "2.16.0", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", @@ -27320,10 +28527,12 @@ }, "node_modules/react-outside-click-handler/node_modules/react-is": { "version": "16.13.1", + "dev": true, "license": "MIT" }, "node_modules/react-portal": { "version": "4.2.2", + "dev": true, "license": "MIT", "dependencies": { "prop-types": "^15.5.8" @@ -27335,6 +28544,7 @@ }, "node_modules/react-refresh": { "version": "0.10.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -27342,6 +28552,7 @@ }, "node_modules/react-select": { "version": "5.4.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0", @@ -27359,6 +28570,7 @@ }, "node_modules/react-shallow-renderer": { "version": "16.15.0", + "dev": true, "license": "MIT", "dependencies": { "object-assign": "^4.1.1", @@ -27372,6 +28584,7 @@ "version": "1.23.0", "resolved": "https://registry.npmjs.org/react-snap/-/react-snap-1.23.0.tgz", "integrity": "sha512-spmg2maHSedLrn6QBAfLJkyMqeeffLTIs7h40pS1copW2xBrajx4HEAcanm+7IVGO6SYCPoGwvbU3U30UFN25g==", + "dev": true, "dependencies": { "clean-css": "4.2.1", "express": "4.16.4", @@ -27394,13 +28607,15 @@ "node_modules/react-snap/node_modules/minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q==" + "integrity": "sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q==", + "dev": true }, "node_modules/react-snap/node_modules/mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha512-SknJC52obPfGQPnjIkXbmA6+5H15E+fR+E4iR2oQ3zzCLbd7/ONua69R/Gw7AgkTLsRG+r5fzksYwWe1AgTyWA==", "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, "dependencies": { "minimist": "0.0.8" }, @@ -27410,6 +28625,7 @@ }, "node_modules/react-test-renderer": { "version": "17.0.2", + "dev": true, "license": "MIT", "dependencies": { "object-assign": "^4.1.1", @@ -27423,6 +28639,7 @@ }, "node_modules/react-transition-group": { "version": "4.4.5", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@babel/runtime": "^7.5.5", @@ -27437,6 +28654,7 @@ }, "node_modules/react-with-styles": { "version": "4.2.0", + "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.14.0", @@ -27453,6 +28671,7 @@ }, "node_modules/react-with-styles-interface-css": { "version": "6.0.0", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.flat": "^1.2.1", @@ -27465,6 +28684,7 @@ }, "node_modules/react-with-styles/node_modules/airbnb-prop-types": { "version": "2.16.0", + "dev": true, "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", @@ -27486,6 +28706,7 @@ }, "node_modules/react-with-styles/node_modules/deepmerge": { "version": "1.5.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -27493,6 +28714,7 @@ }, "node_modules/react-with-styles/node_modules/react-dom": { "version": "16.14.0", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -27507,10 +28729,12 @@ }, "node_modules/react-with-styles/node_modules/react-is": { "version": "16.13.1", + "dev": true, "license": "MIT" }, "node_modules/react-with-styles/node_modules/react-with-direction": { "version": "1.4.0", + "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.16.0", @@ -27529,6 +28753,7 @@ }, "node_modules/react-with-styles/node_modules/scheduler": { "version": "0.19.1", + "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -27559,6 +28784,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", "integrity": "sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w==", + "dev": true, "dependencies": { "readable-stream": "^2.0.2" } @@ -27669,6 +28895,7 @@ }, "node_modules/read-pkg": { "version": "5.2.0", + "dev": true, "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", @@ -27682,6 +28909,7 @@ }, "node_modules/read-pkg-up": { "version": "7.0.1", + "dev": true, "license": "MIT", "dependencies": { "find-up": "^4.1.0", @@ -27697,6 +28925,7 @@ }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", + "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" @@ -27704,6 +28933,7 @@ }, "node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", + "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" @@ -27711,6 +28941,7 @@ }, "node_modules/readable-stream": { "version": "2.3.7", + "dev": true, "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", @@ -27724,10 +28955,12 @@ }, "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", + "dev": true, "license": "MIT" }, "node_modules/readable-stream/node_modules/string_decoder": { "version": "1.1.1", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" @@ -27746,6 +28979,7 @@ }, "node_modules/readdirp": { "version": "3.6.0", + "dev": true, "license": "MIT", "dependencies": { "picomatch": "^2.2.1" @@ -27756,6 +28990,7 @@ }, "node_modules/reakit": { "version": "1.3.11", + "dev": true, "license": "MIT", "dependencies": { "@popperjs/core": "^2.5.4", @@ -27775,6 +29010,7 @@ }, "node_modules/reakit-system": { "version": "0.15.2", + "dev": true, "license": "MIT", "dependencies": { "reakit-utils": "^0.15.2" @@ -27786,6 +29022,7 @@ }, "node_modules/reakit-utils": { "version": "0.15.2", + "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0", @@ -27794,6 +29031,7 @@ }, "node_modules/reakit-warning": { "version": "0.6.2", + "dev": true, "license": "MIT", "dependencies": { "reakit-utils": "^0.15.2" @@ -27804,6 +29042,7 @@ }, "node_modules/rechoir": { "version": "0.7.1", + "dev": true, "license": "MIT", "dependencies": { "resolve": "^1.9.0" @@ -27814,6 +29053,7 @@ }, "node_modules/redent": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "indent-string": "^4.0.0", @@ -27825,6 +29065,7 @@ }, "node_modules/redux": { "version": "4.2.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.9.2" @@ -27832,14 +29073,17 @@ }, "node_modules/reflect.ownkeys": { "version": "0.2.0", + "dev": true, "license": "MIT" }, "node_modules/regenerate": { "version": "1.4.2", + "dev": true, "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.1.0", + "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2" @@ -27854,6 +29098,7 @@ }, "node_modules/regenerator-transform": { "version": "0.15.0", + "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.4" @@ -27872,13 +29117,13 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "version": "1.4.3", + "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" }, "engines": { "node": ">= 0.4" @@ -27889,6 +29134,7 @@ }, "node_modules/regexpp": { "version": "3.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -27899,6 +29145,7 @@ }, "node_modules/regexpu-core": { "version": "5.2.1", + "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2", @@ -27914,6 +29161,7 @@ }, "node_modules/regextras": { "version": "0.8.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.1.14" @@ -27921,10 +29169,12 @@ }, "node_modules/regjsgen": { "version": "0.7.1", + "dev": true, "license": "MIT" }, "node_modules/regjsparser": { "version": "0.9.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "jsesc": "~0.5.0" @@ -27935,6 +29185,7 @@ }, "node_modules/regjsparser/node_modules/jsesc": { "version": "0.5.0", + "dev": true, "bin": { "jsesc": "bin/jsesc" } @@ -27943,6 +29194,7 @@ "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, "engines": { "node": ">= 0.10" } @@ -28002,10 +29254,12 @@ }, "node_modules/rememo": { "version": "4.0.1", + "dev": true, "license": "MIT" }, "node_modules/remove-accents": { "version": "0.4.3", + "dev": true, "license": "MIT" }, "node_modules/remove-bom-buffer": { @@ -28077,6 +29331,7 @@ }, "node_modules/replace-in-file": { "version": "6.3.5", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.2", @@ -28092,10 +29347,12 @@ }, "node_modules/requestidlecallback": { "version": "0.3.0", + "dev": true, "license": "MIT" }, "node_modules/require-directory": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28103,6 +29360,7 @@ }, "node_modules/require-from-string": { "version": "2.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28115,6 +29373,7 @@ }, "node_modules/requireindex": { "version": "1.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.5" @@ -28134,6 +29393,7 @@ }, "node_modules/requires-port": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/resolve": { @@ -28153,6 +29413,7 @@ }, "node_modules/resolve-bin": { "version": "0.4.3", + "dev": true, "license": "MIT", "dependencies": { "find-parent-dir": "~0.3.0" @@ -28160,6 +29421,7 @@ }, "node_modules/resolve-dir": { "version": "0.1.1", + "dev": true, "license": "MIT", "dependencies": { "expand-tilde": "^1.2.2", @@ -28171,6 +29433,7 @@ }, "node_modules/resolve-dir/node_modules/global-modules": { "version": "0.2.3", + "dev": true, "license": "MIT", "dependencies": { "global-prefix": "^0.1.4", @@ -28182,6 +29445,7 @@ }, "node_modules/resolve-dir/node_modules/global-prefix": { "version": "0.1.5", + "dev": true, "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.0", @@ -28195,10 +29459,12 @@ }, "node_modules/resolve-dir/node_modules/ini": { "version": "1.3.8", + "dev": true, "license": "ISC" }, "node_modules/resolve-dir/node_modules/is-windows": { "version": "0.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28229,6 +29495,7 @@ }, "node_modules/resolve.exports": { "version": "1.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -28236,6 +29503,7 @@ }, "node_modules/restore-cursor": { "version": "3.1.0", + "dev": true, "license": "MIT", "dependencies": { "onetime": "^5.1.0", @@ -28247,6 +29515,7 @@ }, "node_modules/ret": { "version": "0.1.15", + "dev": true, "license": "MIT", "engines": { "node": ">=0.12" @@ -28254,6 +29523,7 @@ }, "node_modules/retry": { "version": "0.13.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -28261,6 +29531,7 @@ }, "node_modules/reusify": { "version": "1.0.4", + "dev": true, "license": "MIT", "engines": { "iojs": ">=1.0.0", @@ -28269,14 +29540,17 @@ }, "node_modules/rgb-regex": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/rgba-regex": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/rimraf": { "version": "3.0.2", + "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -28292,6 +29566,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" @@ -28299,6 +29574,7 @@ }, "node_modules/rst-selector-parser": { "version": "2.2.3", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "lodash.flattendeep": "^4.4.0", @@ -28307,6 +29583,7 @@ }, "node_modules/rtlcss": { "version": "2.4.0", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.3.0", @@ -28321,6 +29598,7 @@ }, "node_modules/rtlcss/node_modules/ansi-styles": { "version": "3.2.1", + "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -28331,6 +29609,7 @@ }, "node_modules/rtlcss/node_modules/chalk": { "version": "2.4.2", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -28343,6 +29622,7 @@ }, "node_modules/rtlcss/node_modules/color-convert": { "version": "1.9.3", + "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -28350,10 +29630,12 @@ }, "node_modules/rtlcss/node_modules/color-name": { "version": "1.1.3", + "dev": true, "license": "MIT" }, "node_modules/rtlcss/node_modules/escape-string-regexp": { "version": "1.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -28361,6 +29643,7 @@ }, "node_modules/rtlcss/node_modules/has-flag": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -28368,6 +29651,7 @@ }, "node_modules/rtlcss/node_modules/mkdirp": { "version": "0.5.6", + "dev": true, "license": "MIT", "dependencies": { "minimist": "^1.2.6" @@ -28378,6 +29662,7 @@ }, "node_modules/rtlcss/node_modules/postcss": { "version": "6.0.23", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.4.1", @@ -28390,6 +29675,7 @@ }, "node_modules/rtlcss/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -28397,6 +29683,7 @@ }, "node_modules/rtlcss/node_modules/strip-json-comments": { "version": "2.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28404,6 +29691,7 @@ }, "node_modules/rtlcss/node_modules/supports-color": { "version": "5.5.0", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -28414,6 +29702,7 @@ }, "node_modules/run-async": { "version": "2.4.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.12.0" @@ -28421,6 +29710,7 @@ }, "node_modules/run-con": { "version": "1.2.11", + "dev": true, "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", @@ -28434,6 +29724,7 @@ }, "node_modules/run-parallel": { "version": "1.2.0", + "dev": true, "funding": [ { "type": "github", @@ -28455,10 +29746,12 @@ }, "node_modules/rungen": { "version": "0.3.2", + "dev": true, "license": "MIT" }, "node_modules/rxjs": { "version": "7.5.7", + "dev": true, "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" @@ -28466,6 +29759,7 @@ }, "node_modules/safe-buffer": { "version": "5.2.1", + "dev": true, "funding": [ { "type": "github", @@ -28492,6 +29786,7 @@ }, "node_modules/safe-regex-test": { "version": "1.0.0", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -28504,10 +29799,12 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", + "dev": true, "license": "MIT" }, "node_modules/sass": { "version": "1.55.0", + "dev": true, "license": "MIT", "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -28523,6 +29820,7 @@ }, "node_modules/sass-loader": { "version": "12.6.0", + "dev": true, "license": "MIT", "dependencies": { "klona": "^2.0.4", @@ -28559,10 +29857,12 @@ }, "node_modules/sax": { "version": "1.2.4", + "dev": true, "license": "ISC" }, "node_modules/saxes": { "version": "5.0.1", + "dev": true, "license": "ISC", "dependencies": { "xmlchars": "^2.2.0" @@ -28573,6 +29873,7 @@ }, "node_modules/scheduler": { "version": "0.20.2", + "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", @@ -28581,6 +29882,7 @@ }, "node_modules/schema-utils": { "version": "3.1.1", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", @@ -28597,14 +29899,17 @@ }, "node_modules/select": { "version": "1.1.2", + "dev": true, "license": "MIT" }, "node_modules/select-hose": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/selfsigned": { "version": "2.1.1", + "dev": true, "license": "MIT", "dependencies": { "node-forge": "^1" @@ -28615,6 +29920,7 @@ }, "node_modules/semver": { "version": "7.3.7", + "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" @@ -28641,6 +29947,7 @@ "version": "0.16.2", "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "dev": true, "dependencies": { "debug": "2.6.9", "depd": "~1.1.2", @@ -28664,6 +29971,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { "ms": "2.0.0" } @@ -28672,6 +29980,7 @@ "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true, "bin": { "mime": "cli.js" } @@ -28679,10 +29988,12 @@ "node_modules/send/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, "node_modules/sentence-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -28692,6 +30003,7 @@ }, "node_modules/serialize-javascript": { "version": "6.0.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" @@ -28699,6 +30011,7 @@ }, "node_modules/serve-index": { "version": "1.9.1", + "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.4", @@ -28715,6 +30028,7 @@ }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", + "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -28722,12 +30036,14 @@ }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/serve-static": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "dev": true, "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -28745,12 +30061,14 @@ }, "node_modules/setprototypeof": { "version": "1.1.0", + "dev": true, "license": "ISC" }, "node_modules/sha.js": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -28761,6 +30079,7 @@ }, "node_modules/shallow-clone": { "version": "0.1.2", + "dev": true, "license": "MIT", "dependencies": { "is-extendable": "^0.1.1", @@ -28774,6 +30093,7 @@ }, "node_modules/shallow-clone/node_modules/kind-of": { "version": "2.0.1", + "dev": true, "license": "MIT", "dependencies": { "is-buffer": "^1.0.2" @@ -28784,6 +30104,7 @@ }, "node_modules/shallow-clone/node_modules/lazy-cache": { "version": "0.2.7", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28793,12 +30114,14 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz", "integrity": "sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==", + "dev": true, "dependencies": { "fast-safe-stringify": "^2.0.7" } }, "node_modules/shebang-command": { "version": "1.2.0", + "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" @@ -28809,21 +30132,24 @@ }, "node_modules/shebang-regex": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz", + "integrity": "sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel": { "version": "1.0.4", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.0", @@ -28836,12 +30162,14 @@ }, "node_modules/signal-exit": { "version": "3.0.7", + "dev": true, "license": "ISC" }, "node_modules/simple-concat": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "dev": true, "funding": [ { "type": "github", @@ -28859,6 +30187,7 @@ }, "node_modules/simple-swizzle": { "version": "0.2.2", + "dev": true, "license": "MIT", "dependencies": { "is-arrayish": "^0.3.1" @@ -28866,10 +30195,12 @@ }, "node_modules/simple-swizzle/node_modules/is-arrayish": { "version": "0.3.2", + "dev": true, "license": "MIT" }, "node_modules/sirv": { "version": "1.0.19", + "dev": true, "license": "MIT", "dependencies": { "@polka/url": "^1.0.0-next.20", @@ -28882,10 +30213,12 @@ }, "node_modules/sisteransi": { "version": "1.0.5", + "dev": true, "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -28893,6 +30226,7 @@ }, "node_modules/slice-ansi": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", @@ -28917,6 +30251,7 @@ }, "node_modules/snake-case": { "version": "3.0.4", + "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", @@ -28925,6 +30260,7 @@ }, "node_modules/sockjs": { "version": "0.3.24", + "dev": true, "license": "MIT", "dependencies": { "faye-websocket": "^0.11.3", @@ -28960,6 +30296,7 @@ }, "node_modules/source-list-map": { "version": "2.0.1", + "dev": true, "license": "MIT" }, "node_modules/source-map": { @@ -28971,6 +30308,7 @@ }, "node_modules/source-map-js": { "version": "1.0.2", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -28978,6 +30316,7 @@ }, "node_modules/source-map-loader": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "abab": "^2.0.5", @@ -28997,6 +30336,7 @@ }, "node_modules/source-map-loader/node_modules/iconv-lite": { "version": "0.6.3", + "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -29019,6 +30359,7 @@ }, "node_modules/source-map-support": { "version": "0.5.21", + "dev": true, "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", @@ -29027,6 +30368,7 @@ }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -29041,6 +30383,7 @@ "version": "2.1.8", "resolved": "https://registry.npmjs.org/sourcemapped-stacktrace-node/-/sourcemapped-stacktrace-node-2.1.8.tgz", "integrity": "sha512-xQOqfT5mquKLBp+H06WTeGYEQh7OF5wa44IPHbh+qNdTP15xSzxwISPml1xCweJ6DExDpDDxXe/P34wP+GdDrg==", + "dev": true, "dependencies": { "es6-promise": "^4.1.1", "isomorphic-fetch": "^2.2.1", @@ -29054,6 +30397,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -29068,6 +30412,7 @@ }, "node_modules/spawnd": { "version": "6.0.2", + "dev": true, "license": "MIT", "dependencies": { "exit": "^0.1.2", @@ -29077,6 +30422,7 @@ }, "node_modules/spdx-correct": { "version": "3.1.1", + "dev": true, "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", @@ -29085,10 +30431,12 @@ }, "node_modules/spdx-exceptions": { "version": "2.3.0", + "dev": true, "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", @@ -29097,10 +30445,12 @@ }, "node_modules/spdx-license-ids": { "version": "3.0.12", + "dev": true, "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -29115,6 +30465,7 @@ }, "node_modules/spdy-transport": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -29127,6 +30478,7 @@ }, "node_modules/spdy-transport/node_modules/readable-stream": { "version": "3.6.0", + "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -29161,6 +30513,7 @@ }, "node_modules/sprintf-js": { "version": "1.1.2", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/ssri": { @@ -29176,6 +30529,7 @@ }, "node_modules/stable": { "version": "0.1.8", + "dev": true, "license": "MIT" }, "node_modules/stack-trace": { @@ -29188,6 +30542,7 @@ }, "node_modules/stack-utils": { "version": "2.0.5", + "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" @@ -29198,6 +30553,7 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -29205,6 +30561,7 @@ }, "node_modules/stackframe": { "version": "1.3.4", + "dev": true, "license": "MIT" }, "node_modules/state-toggle": { @@ -29243,6 +30600,7 @@ }, "node_modules/statuses": { "version": "1.4.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -29252,6 +30610,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dev": true, "dependencies": { "internal-slot": "^1.0.4" }, @@ -29263,6 +30622,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "dev": true, "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" @@ -29272,6 +30632,7 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -29294,6 +30655,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", + "dev": true, "dependencies": { "duplexer2": "~0.1.0", "readable-stream": "^2.0.2" @@ -29308,6 +30670,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", + "dev": true, "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", @@ -29319,6 +30682,7 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -29337,6 +30701,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz", "integrity": "sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==", + "dev": true, "dependencies": { "inherits": "^2.0.1", "readable-stream": "^2.0.2" @@ -29344,6 +30709,7 @@ }, "node_modules/string_decoder": { "version": "1.3.0", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" @@ -29351,6 +30717,7 @@ }, "node_modules/string-length": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "char-regex": "^1.0.2", @@ -29362,6 +30729,7 @@ }, "node_modules/string-width": { "version": "4.2.3", + "dev": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", @@ -29374,6 +30742,7 @@ }, "node_modules/string.prototype.matchall": { "version": "4.0.7", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -29391,6 +30760,7 @@ }, "node_modules/string.prototype.trim": { "version": "1.2.6", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -29406,6 +30776,7 @@ }, "node_modules/string.prototype.trimend": { "version": "1.0.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -29418,6 +30789,7 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.5", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -29441,6 +30813,7 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", + "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" @@ -29470,6 +30843,7 @@ }, "node_modules/strip-final-newline": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -29477,6 +30851,7 @@ }, "node_modules/strip-indent": { "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { "min-indent": "^1.0.0" @@ -29487,6 +30862,7 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -29513,10 +30889,12 @@ }, "node_modules/style-search": { "version": "0.1.0", + "dev": true, "license": "ISC" }, "node_modules/style-value-types": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "hey-listen": "^1.0.8", @@ -29525,6 +30903,7 @@ }, "node_modules/stylehacks": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -29539,6 +30918,7 @@ }, "node_modules/stylelint": { "version": "14.13.0", + "dev": true, "license": "MIT", "dependencies": { "@csstools/selector-specificity": "^2.0.2", @@ -29593,6 +30973,7 @@ }, "node_modules/stylelint-config-recommended": { "version": "6.0.0", + "dev": true, "license": "MIT", "peerDependencies": { "stylelint": "^14.0.0" @@ -29600,6 +30981,7 @@ }, "node_modules/stylelint-config-recommended-scss": { "version": "5.0.2", + "dev": true, "license": "MIT", "dependencies": { "postcss-scss": "^4.0.2", @@ -29612,6 +30994,7 @@ }, "node_modules/stylelint-scss": { "version": "4.3.0", + "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.17.21", @@ -29626,10 +31009,12 @@ }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/stylelint/node_modules/hosted-git-info": { "version": "4.1.0", + "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" @@ -29640,6 +31025,7 @@ }, "node_modules/stylelint/node_modules/meow": { "version": "9.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", @@ -29664,6 +31050,7 @@ }, "node_modules/stylelint/node_modules/normalize-package-data": { "version": "3.0.3", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", @@ -29677,6 +31064,7 @@ }, "node_modules/stylelint/node_modules/resolve-from": { "version": "5.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -29684,6 +31072,7 @@ }, "node_modules/stylelint/node_modules/type-fest": { "version": "0.18.1", + "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -29694,6 +31083,7 @@ }, "node_modules/stylelint/node_modules/write-file-atomic": { "version": "4.0.2", + "dev": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", @@ -29705,6 +31095,7 @@ }, "node_modules/stylelint/node_modules/yargs-parser": { "version": "20.2.9", + "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -29718,12 +31109,14 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", "integrity": "sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==", + "dev": true, "dependencies": { "minimist": "^1.1.0" } }, "node_modules/supports-color": { "version": "7.2.0", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -29734,6 +31127,7 @@ }, "node_modules/supports-hyperlinks": { "version": "2.3.0", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0", @@ -29810,13 +31204,16 @@ }, "node_modules/svg-parser": { "version": "2.0.4", + "dev": true, "license": "MIT" }, "node_modules/svg-tags": { - "version": "1.0.0" + "version": "1.0.0", + "dev": true }, "node_modules/svgo": { "version": "2.8.0", + "dev": true, "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", @@ -29836,6 +31233,7 @@ }, "node_modules/svgo/node_modules/commander": { "version": "7.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -29843,6 +31241,7 @@ }, "node_modules/svgo/node_modules/css-select": { "version": "4.3.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -29857,6 +31256,7 @@ }, "node_modules/svgo/node_modules/css-tree": { "version": "1.1.3", + "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.14", @@ -29868,6 +31268,7 @@ }, "node_modules/svgo/node_modules/csso": { "version": "4.2.0", + "dev": true, "license": "MIT", "dependencies": { "css-tree": "^1.1.2" @@ -29878,6 +31279,7 @@ }, "node_modules/svgo/node_modules/dom-serializer": { "version": "1.4.1", + "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", @@ -29890,6 +31292,7 @@ }, "node_modules/svgo/node_modules/domhandler": { "version": "4.3.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" @@ -29903,6 +31306,7 @@ }, "node_modules/svgo/node_modules/domutils": { "version": "2.8.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", @@ -29915,6 +31319,7 @@ }, "node_modules/svgo/node_modules/entities": { "version": "2.2.0", + "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -29922,10 +31327,12 @@ }, "node_modules/svgo/node_modules/mdn-data": { "version": "2.0.14", + "dev": true, "license": "CC0-1.0" }, "node_modules/svgo/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -29933,18 +31340,21 @@ }, "node_modules/symbol-tree": { "version": "3.2.4", + "dev": true, "license": "MIT" }, "node_modules/syntax-error": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz", "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==", + "dev": true, "dependencies": { "acorn-node": "^1.2.0" } }, "node_modules/table": { "version": "6.8.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "ajv": "^8.0.1", @@ -29959,6 +31369,7 @@ }, "node_modules/table/node_modules/ajv": { "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -29973,10 +31384,12 @@ }, "node_modules/table/node_modules/json-schema-traverse": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/tannin": { "version": "1.2.0", + "dev": true, "license": "MIT", "dependencies": { "@tannin/plural-forms": "^1.1.0" @@ -29984,6 +31397,7 @@ }, "node_modules/tannin/node_modules/@tannin/compile": { "version": "1.1.0", + "dev": true, "license": "MIT", "dependencies": { "@tannin/evaluate": "^1.2.0", @@ -29992,10 +31406,12 @@ }, "node_modules/tannin/node_modules/@tannin/evaluate": { "version": "1.2.0", + "dev": true, "license": "MIT" }, "node_modules/tannin/node_modules/@tannin/plural-forms": { "version": "1.1.0", + "dev": true, "license": "MIT", "dependencies": { "@tannin/compile": "^1.1.0" @@ -30003,10 +31419,12 @@ }, "node_modules/tannin/node_modules/@tannin/postfix": { "version": "1.1.0", + "dev": true, "license": "MIT" }, "node_modules/tapable": { "version": "2.2.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -30030,6 +31448,7 @@ }, "node_modules/tar-fs": { "version": "2.1.1", + "dev": true, "license": "MIT", "dependencies": { "chownr": "^1.1.1", @@ -30040,10 +31459,12 @@ }, "node_modules/tar-fs/node_modules/chownr": { "version": "1.1.4", + "dev": true, "license": "ISC" }, "node_modules/tar-stream": { "version": "2.2.0", + "dev": true, "license": "MIT", "dependencies": { "bl": "^4.0.3", @@ -30058,6 +31479,7 @@ }, "node_modules/tar-stream/node_modules/readable-stream": { "version": "3.6.0", + "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -30078,6 +31500,7 @@ }, "node_modules/terminal-link": { "version": "2.1.1", + "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", @@ -30092,6 +31515,7 @@ }, "node_modules/terser": { "version": "5.15.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.2", @@ -30108,6 +31532,7 @@ }, "node_modules/terser-webpack-plugin": { "version": "5.3.6", + "dev": true, "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.14", @@ -30140,6 +31565,7 @@ }, "node_modules/terser/node_modules/acorn": { "version": "8.8.0", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -30150,10 +31576,12 @@ }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", + "dev": true, "license": "MIT" }, "node_modules/test-exclude": { "version": "6.0.0", + "dev": true, "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", @@ -30174,6 +31602,7 @@ }, "node_modules/text-table": { "version": "0.2.0", + "dev": true, "license": "MIT" }, "node_modules/textextensions": { @@ -30183,10 +31612,12 @@ }, "node_modules/throat": { "version": "6.0.1", + "dev": true, "license": "MIT" }, "node_modules/throttle-debounce": { "version": "3.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -30194,10 +31625,12 @@ }, "node_modules/through": { "version": "2.3.8", + "dev": true, "license": "MIT" }, "node_modules/through2": { "version": "2.0.5", + "dev": true, "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", @@ -30215,6 +31648,7 @@ }, "node_modules/thunky": { "version": "1.1.0", + "dev": true, "license": "MIT" }, "node_modules/time-stamp": { @@ -30229,6 +31663,7 @@ "version": "1.4.2", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", "integrity": "sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q==", + "dev": true, "dependencies": { "process": "~0.11.0" }, @@ -30238,10 +31673,12 @@ }, "node_modules/timsort": { "version": "0.3.0", + "dev": true, "license": "MIT" }, "node_modules/tiny-emitter": { "version": "2.1.0", + "dev": true, "license": "MIT" }, "node_modules/tmp": { @@ -30257,6 +31694,7 @@ }, "node_modules/tmpl": { "version": "1.0.5", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/to-absolute-glob": { @@ -30280,6 +31718,7 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", + "dev": true, "license": "MIT", "dependencies": { "is-number": "^7.0.0" @@ -30301,6 +31740,7 @@ }, "node_modules/toidentifier": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.6" @@ -30308,6 +31748,7 @@ }, "node_modules/totalist": { "version": "1.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -30315,6 +31756,7 @@ }, "node_modules/tough-cookie": { "version": "4.1.2", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", @@ -30328,6 +31770,7 @@ }, "node_modules/tough-cookie/node_modules/punycode": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -30335,6 +31778,7 @@ }, "node_modules/tough-cookie/node_modules/universalify": { "version": "0.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 4.0.0" @@ -30342,6 +31786,7 @@ }, "node_modules/tr46": { "version": "2.1.0", + "dev": true, "license": "MIT", "dependencies": { "punycode": "^2.1.1" @@ -30352,6 +31797,7 @@ }, "node_modules/tr46/node_modules/punycode": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -30359,6 +31805,7 @@ }, "node_modules/tree-kill": { "version": "1.2.2", + "dev": true, "license": "MIT", "bin": { "tree-kill": "cli.js" @@ -30378,6 +31825,7 @@ }, "node_modules/trim-newlines": { "version": "3.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -30403,6 +31851,7 @@ }, "node_modules/tsconfig-paths": { "version": "3.14.1", + "dev": true, "license": "MIT", "dependencies": { "@types/json5": "^0.0.29", @@ -30415,6 +31864,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, "dependencies": { "minimist": "^1.2.0" }, @@ -30424,6 +31874,7 @@ }, "node_modules/tsconfig-paths/node_modules/strip-bom": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -30431,10 +31882,12 @@ }, "node_modules/tslib": { "version": "2.4.0", + "dev": true, "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", + "dev": true, "license": "MIT", "dependencies": { "tslib": "^1.8.1" @@ -30448,19 +31901,23 @@ }, "node_modules/tsutils/node_modules/tslib": { "version": "1.14.1", + "dev": true, "license": "0BSD" }, "node_modules/tty-browserify": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", - "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==", + "dev": true }, "node_modules/turbo-combine-reducers": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/type-check": { "version": "0.3.2", + "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2" @@ -30471,6 +31928,7 @@ }, "node_modules/type-detect": { "version": "4.0.8", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -30478,6 +31936,7 @@ }, "node_modules/type-fest": { "version": "0.21.3", + "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -30488,6 +31947,7 @@ }, "node_modules/type-is": { "version": "1.6.18", + "dev": true, "license": "MIT", "dependencies": { "media-typer": "0.3.0", @@ -30499,6 +31959,7 @@ }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", + "dev": true, "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" @@ -30506,6 +31967,7 @@ }, "node_modules/typescript": { "version": "4.8.4", + "dev": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -30517,6 +31979,7 @@ }, "node_modules/uc.micro": { "version": "1.0.6", + "dev": true, "license": "MIT" }, "node_modules/uglify-js": { @@ -30534,12 +31997,14 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz", "integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==", + "dev": true, "bin": { "umd": "bin/cli.js" } }, "node_modules/unbox-primitive": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -30553,6 +32018,7 @@ }, "node_modules/unbzip2-stream": { "version": "1.4.3", + "dev": true, "license": "MIT", "dependencies": { "buffer": "^5.2.1", @@ -30571,6 +32037,7 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz", "integrity": "sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==", + "dev": true, "dependencies": { "acorn-node": "^1.3.0", "dash-ast": "^1.0.0", @@ -30605,6 +32072,7 @@ }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -30612,6 +32080,7 @@ }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", @@ -30623,6 +32092,7 @@ }, "node_modules/unicode-match-property-value-ecmascript": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -30630,6 +32100,7 @@ }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -30701,10 +32172,12 @@ }, "node_modules/uniq": { "version": "1.0.1", + "dev": true, "license": "MIT" }, "node_modules/uniqs": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/unique-slug": { @@ -30780,6 +32253,7 @@ }, "node_modules/unpipe": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -30787,6 +32261,7 @@ }, "node_modules/unquote": { "version": "1.1.1", + "dev": true, "license": "MIT" }, "node_modules/update-browserslist-db": { @@ -30815,6 +32290,7 @@ }, "node_modules/upper-case": { "version": "2.0.2", + "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -30822,6 +32298,7 @@ }, "node_modules/upper-case-first": { "version": "2.0.2", + "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -30829,6 +32306,7 @@ }, "node_modules/uri-js": { "version": "4.4.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" @@ -30836,6 +32314,7 @@ }, "node_modules/uri-js/node_modules/punycode": { "version": "2.1.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -30847,16 +32326,18 @@ "license": "MIT" }, "node_modules/url": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.1.tgz", - "integrity": "sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==", + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "dev": true, "dependencies": { - "punycode": "^1.4.1", - "qs": "^6.11.0" + "punycode": "1.3.2", + "querystring": "0.2.0" } }, "node_modules/url-loader": { "version": "4.1.1", + "dev": true, "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", @@ -30882,25 +32363,18 @@ }, "node_modules/url-parse": { "version": "1.5.10", + "dev": true, "license": "MIT", "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, - "node_modules/url/node_modules/qs": { - "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", + "dev": true }, "node_modules/use": { "version": "3.1.1", @@ -30912,6 +32386,7 @@ }, "node_modules/use-isomorphic-layout-effect": { "version": "1.1.2", + "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" @@ -30924,6 +32399,7 @@ }, "node_modules/use-memo-one": { "version": "1.1.3", + "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" @@ -30933,6 +32409,7 @@ "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", @@ -30943,10 +32420,12 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/util.promisify": { "version": "1.0.1", + "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.3", @@ -30960,6 +32439,7 @@ }, "node_modules/utils-merge": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4.0" @@ -30967,6 +32447,7 @@ }, "node_modules/uuid": { "version": "8.3.2", + "dev": true, "license": "MIT", "bin": { "uuid": "dist/bin/uuid" @@ -30974,10 +32455,12 @@ }, "node_modules/v8-compile-cache": { "version": "2.3.0", + "dev": true, "license": "MIT" }, "node_modules/v8-to-istanbul": { "version": "8.1.1", + "dev": true, "license": "ISC", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", @@ -30990,6 +32473,7 @@ }, "node_modules/v8-to-istanbul/node_modules/convert-source-map": { "version": "1.8.0", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.1" @@ -30997,10 +32481,12 @@ }, "node_modules/v8-to-istanbul/node_modules/safe-buffer": { "version": "5.1.2", + "dev": true, "license": "MIT" }, "node_modules/v8-to-istanbul/node_modules/source-map": { "version": "0.7.4", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">= 8" @@ -31019,6 +32505,7 @@ }, "node_modules/validate-npm-package-license": { "version": "3.0.4", + "dev": true, "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", @@ -31043,6 +32530,7 @@ }, "node_modules/vary": { "version": "1.1.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -31050,6 +32538,7 @@ }, "node_modules/vendors": { "version": "1.0.4", + "dev": true, "license": "MIT", "funding": { "type": "github", @@ -31125,10 +32614,12 @@ "node_modules/vm-browserify": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true }, "node_modules/w3c-hr-time": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "browser-process-hrtime": "^1.0.0" @@ -31136,6 +32627,7 @@ }, "node_modules/w3c-xmlserializer": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "xml-name-validator": "^3.0.0" @@ -31146,6 +32638,7 @@ }, "node_modules/wait-on": { "version": "6.0.1", + "dev": true, "license": "MIT", "dependencies": { "axios": "^0.25.0", @@ -31163,10 +32656,12 @@ }, "node_modules/wait-on/node_modules/@hapi/hoek": { "version": "9.3.0", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/wait-on/node_modules/@hapi/topo": { "version": "5.1.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" @@ -31174,6 +32669,7 @@ }, "node_modules/wait-on/node_modules/@sideway/address": { "version": "4.1.4", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" @@ -31181,10 +32677,12 @@ }, "node_modules/wait-on/node_modules/@sideway/pinpoint": { "version": "2.0.0", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/wait-on/node_modules/axios": { "version": "0.25.0", + "dev": true, "license": "MIT", "dependencies": { "follow-redirects": "^1.14.7" @@ -31192,6 +32690,7 @@ }, "node_modules/wait-on/node_modules/joi": { "version": "17.6.2", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0", @@ -31208,6 +32707,7 @@ }, "node_modules/walker": { "version": "1.0.8", + "dev": true, "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" @@ -31215,6 +32715,7 @@ }, "node_modules/watchpack": { "version": "2.4.0", + "dev": true, "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", @@ -31226,6 +32727,7 @@ }, "node_modules/wbuf": { "version": "1.7.3", + "dev": true, "license": "MIT", "dependencies": { "minimalistic-assert": "^1.0.0" @@ -31233,6 +32735,7 @@ }, "node_modules/wcwidth": { "version": "1.0.1", + "dev": true, "license": "MIT", "dependencies": { "defaults": "^1.0.3" @@ -31240,6 +32743,7 @@ }, "node_modules/wcwidth/node_modules/clone": { "version": "1.0.4", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8" @@ -31247,6 +32751,7 @@ }, "node_modules/wcwidth/node_modules/defaults": { "version": "1.0.3", + "dev": true, "license": "MIT", "dependencies": { "clone": "^1.0.2" @@ -31254,12 +32759,14 @@ }, "node_modules/webidl-conversions": { "version": "3.0.1", + "dev": true, "license": "BSD-2-Clause" }, "node_modules/webpack": { "version": "5.76.1", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.1.tgz", "integrity": "sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==", + "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", @@ -31304,6 +32811,7 @@ }, "node_modules/webpack-bundle-analyzer": { "version": "4.6.1", + "dev": true, "license": "MIT", "dependencies": { "acorn": "^8.0.4", @@ -31325,6 +32833,7 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/acorn": { "version": "8.8.0", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -31335,6 +32844,7 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": { "version": "8.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -31342,6 +32852,7 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/commander": { "version": "7.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -31349,6 +32860,7 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/ws": { "version": "7.5.9", + "dev": true, "license": "MIT", "engines": { "node": ">=8.3.0" @@ -31368,6 +32880,7 @@ }, "node_modules/webpack-cli": { "version": "4.10.0", + "dev": true, "license": "MIT", "dependencies": { "@discoveryjs/json-ext": "^0.5.0", @@ -31413,6 +32926,7 @@ }, "node_modules/webpack-cli/node_modules/commander": { "version": "7.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -31420,6 +32934,7 @@ }, "node_modules/webpack-cli/node_modules/cross-spawn": { "version": "7.0.3", + "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -31432,6 +32947,7 @@ }, "node_modules/webpack-cli/node_modules/interpret": { "version": "2.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" @@ -31439,6 +32955,7 @@ }, "node_modules/webpack-cli/node_modules/shebang-command": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -31449,6 +32966,7 @@ }, "node_modules/webpack-cli/node_modules/shebang-regex": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -31456,6 +32974,7 @@ }, "node_modules/webpack-cli/node_modules/which": { "version": "2.0.2", + "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -31469,6 +32988,7 @@ }, "node_modules/webpack-dev-middleware": { "version": "5.3.3", + "dev": true, "license": "MIT", "dependencies": { "colorette": "^2.0.10", @@ -31490,6 +33010,7 @@ }, "node_modules/webpack-dev-middleware/node_modules/ajv": { "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -31504,6 +33025,7 @@ }, "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -31514,10 +33036,12 @@ }, "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/webpack-dev-middleware/node_modules/schema-utils": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -31535,6 +33059,7 @@ }, "node_modules/webpack-dev-server": { "version": "4.11.1", + "dev": true, "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.9", @@ -31588,6 +33113,7 @@ }, "node_modules/webpack-dev-server/node_modules/ajv": { "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -31602,6 +33128,7 @@ }, "node_modules/webpack-dev-server/node_modules/ajv-keywords": { "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -31612,6 +33139,7 @@ }, "node_modules/webpack-dev-server/node_modules/body-parser": { "version": "1.20.0", + "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", @@ -31634,6 +33162,7 @@ }, "node_modules/webpack-dev-server/node_modules/bytes": { "version": "3.1.2", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -31641,6 +33170,7 @@ }, "node_modules/webpack-dev-server/node_modules/content-disposition": { "version": "0.5.4", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" @@ -31651,6 +33181,7 @@ }, "node_modules/webpack-dev-server/node_modules/cookie": { "version": "0.5.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -31658,6 +33189,7 @@ }, "node_modules/webpack-dev-server/node_modules/debug": { "version": "2.6.9", + "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -31665,6 +33197,7 @@ }, "node_modules/webpack-dev-server/node_modules/depd": { "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -31672,6 +33205,7 @@ }, "node_modules/webpack-dev-server/node_modules/destroy": { "version": "1.2.0", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8", @@ -31680,6 +33214,7 @@ }, "node_modules/webpack-dev-server/node_modules/express": { "version": "4.18.1", + "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.8", @@ -31720,6 +33255,7 @@ }, "node_modules/webpack-dev-server/node_modules/finalhandler": { "version": "1.2.0", + "dev": true, "license": "MIT", "dependencies": { "debug": "2.6.9", @@ -31736,6 +33272,7 @@ }, "node_modules/webpack-dev-server/node_modules/http-errors": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "depd": "2.0.0", @@ -31750,6 +33287,7 @@ }, "node_modules/webpack-dev-server/node_modules/ipaddr.js": { "version": "2.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -31757,10 +33295,12 @@ }, "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/mime": { "version": "1.6.0", + "dev": true, "license": "MIT", "bin": { "mime": "cli.js" @@ -31771,10 +33311,12 @@ }, "node_modules/webpack-dev-server/node_modules/ms": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/on-finished": { "version": "2.4.1", + "dev": true, "license": "MIT", "dependencies": { "ee-first": "1.1.1" @@ -31785,6 +33327,7 @@ }, "node_modules/webpack-dev-server/node_modules/qs": { "version": "6.10.3", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" @@ -31798,6 +33341,7 @@ }, "node_modules/webpack-dev-server/node_modules/raw-body": { "version": "2.5.1", + "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", @@ -31811,6 +33355,7 @@ }, "node_modules/webpack-dev-server/node_modules/schema-utils": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -31828,6 +33373,7 @@ }, "node_modules/webpack-dev-server/node_modules/send": { "version": "0.18.0", + "dev": true, "license": "MIT", "dependencies": { "debug": "2.6.9", @@ -31850,10 +33396,12 @@ }, "node_modules/webpack-dev-server/node_modules/send/node_modules/ms": { "version": "2.1.3", + "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/serve-static": { "version": "1.15.0", + "dev": true, "license": "MIT", "dependencies": { "encodeurl": "~1.0.2", @@ -31867,10 +33415,12 @@ }, "node_modules/webpack-dev-server/node_modules/setprototypeof": { "version": "1.2.0", + "dev": true, "license": "ISC" }, "node_modules/webpack-dev-server/node_modules/statuses": { "version": "2.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -31878,6 +33428,7 @@ }, "node_modules/webpack-merge": { "version": "5.8.0", + "dev": true, "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", @@ -31889,6 +33440,7 @@ }, "node_modules/webpack-merge/node_modules/clone-deep": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", @@ -31901,6 +33453,7 @@ }, "node_modules/webpack-merge/node_modules/is-plain-object": { "version": "2.0.4", + "dev": true, "license": "MIT", "dependencies": { "isobject": "^3.0.1" @@ -31911,6 +33464,7 @@ }, "node_modules/webpack-merge/node_modules/kind-of": { "version": "6.0.3", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -31918,6 +33472,7 @@ }, "node_modules/webpack-merge/node_modules/shallow-clone": { "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { "kind-of": "^6.0.2" @@ -31928,6 +33483,7 @@ }, "node_modules/webpack-remove-empty-scripts": { "version": "0.8.4", + "dev": true, "license": "ISC", "dependencies": { "ansis": "1.4.0" @@ -31945,6 +33501,7 @@ }, "node_modules/webpack-rtl-plugin": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "@romainberger/css-diff": "^1.0.3", @@ -31956,6 +33513,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/ansi-styles": { "version": "3.2.1", + "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -31966,6 +33524,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/argparse": { "version": "1.0.10", + "dev": true, "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -31973,6 +33532,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/chalk": { "version": "2.4.2", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -31985,6 +33545,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/color-convert": { "version": "1.9.3", + "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -31992,10 +33553,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/color-name": { "version": "1.1.3", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/cosmiconfig": { "version": "5.2.1", + "dev": true, "license": "MIT", "dependencies": { "import-fresh": "^2.0.0", @@ -32009,6 +33572,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-declaration-sorter": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.1", @@ -32020,6 +33584,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-select": { "version": "2.1.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -32030,6 +33595,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-tree": { "version": "1.0.0-alpha.37", + "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.4", @@ -32041,6 +33607,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-what": { "version": "3.4.2", + "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -32051,6 +33618,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/cssnano": { "version": "4.1.10", + "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^5.0.0", @@ -32064,6 +33632,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/cssnano-preset-default": { "version": "4.0.8", + "dev": true, "license": "MIT", "dependencies": { "css-declaration-sorter": "^4.0.1", @@ -32103,6 +33672,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/csso": { "version": "4.2.0", + "dev": true, "license": "MIT", "dependencies": { "css-tree": "^1.1.2" @@ -32113,6 +33683,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/csso/node_modules/css-tree": { "version": "1.1.3", + "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.14", @@ -32124,10 +33695,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/csso/node_modules/mdn-data": { "version": "2.0.14", + "dev": true, "license": "CC0-1.0" }, "node_modules/webpack-rtl-plugin/node_modules/dom-serializer": { "version": "0.2.2", + "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", @@ -32136,6 +33709,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/domutils": { "version": "1.7.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "0", @@ -32144,10 +33718,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/domutils/node_modules/domelementtype": { "version": "1.3.1", + "dev": true, "license": "BSD-2-Clause" }, "node_modules/webpack-rtl-plugin/node_modules/dot-prop": { "version": "5.3.0", + "dev": true, "license": "MIT", "dependencies": { "is-obj": "^2.0.0" @@ -32158,6 +33734,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/entities": { "version": "2.2.0", + "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -32165,6 +33742,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/escape-string-regexp": { "version": "1.0.5", + "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -32172,6 +33750,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/has-flag": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -32179,6 +33758,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/import-fresh": { "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { "caller-path": "^2.0.0", @@ -32190,6 +33770,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/js-yaml": { "version": "3.14.1", + "dev": true, "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -32201,10 +33782,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/mdn-data": { "version": "2.0.4", + "dev": true, "license": "CC0-1.0" }, "node_modules/webpack-rtl-plugin/node_modules/mkdirp": { "version": "0.5.6", + "dev": true, "license": "MIT", "dependencies": { "minimist": "^1.2.6" @@ -32215,6 +33798,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/normalize-url": { "version": "3.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -32222,6 +33806,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/nth-check": { "version": "1.0.2", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "~1.0.0" @@ -32229,6 +33814,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/parse-json": { "version": "4.0.0", + "dev": true, "license": "MIT", "dependencies": { "error-ex": "^1.3.1", @@ -32240,10 +33826,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/picocolors": { "version": "0.2.1", + "dev": true, "license": "ISC" }, "node_modules/webpack-rtl-plugin/node_modules/postcss": { "version": "7.0.39", + "dev": true, "license": "MIT", "dependencies": { "picocolors": "^0.2.1", @@ -32259,6 +33847,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-calc": { "version": "7.0.5", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.27", @@ -32268,6 +33857,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-colormin": { "version": "4.0.3", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -32282,10 +33872,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-colormin/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-convert-values": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -32297,10 +33889,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-convert-values/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-comments": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -32311,6 +33905,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-duplicates": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -32321,6 +33916,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-empty": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -32331,6 +33927,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-overridden": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -32341,6 +33938,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-longhand": { "version": "4.0.11", + "dev": true, "license": "MIT", "dependencies": { "css-color-names": "0.0.4", @@ -32354,10 +33952,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-rules": { "version": "4.0.3", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -32373,6 +33973,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { "version": "3.1.2", + "dev": true, "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -32385,6 +33986,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-font-values": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -32396,10 +33998,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-gradients": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -32413,10 +34017,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-params": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", @@ -32432,10 +34038,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-params/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-selectors": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", @@ -32449,6 +34057,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { "version": "3.1.2", + "dev": true, "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -32461,6 +34070,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-charset": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -32471,6 +34081,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-display-values": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", @@ -32483,10 +34094,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-positions": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -32500,10 +34113,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-repeat-style": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -32517,10 +34132,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-string": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.0", @@ -32533,10 +34150,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-timing-functions": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", @@ -32549,10 +34168,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-unicode": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -32565,10 +34186,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-url": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "is-absolute-url": "^2.0.0", @@ -32582,10 +34205,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-whitespace": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -32597,10 +34222,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-ordered-values": { "version": "4.1.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -32613,10 +34240,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-reduce-initial": { "version": "4.0.3", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -32630,6 +34259,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-reduce-transforms": { "version": "4.0.2", + "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", @@ -32643,10 +34273,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-svgo": { "version": "4.0.3", + "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -32659,10 +34291,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-svgo/node_modules/postcss-value-parser": { "version": "3.3.1", + "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-unique-selectors": { "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", @@ -32675,6 +34309,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/resolve-from": { "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -32682,6 +34317,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/source-map": { "version": "0.6.1", + "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -32689,10 +34325,12 @@ }, "node_modules/webpack-rtl-plugin/node_modules/sprintf-js": { "version": "1.0.3", + "dev": true, "license": "BSD-3-Clause" }, "node_modules/webpack-rtl-plugin/node_modules/stylehacks": { "version": "4.0.3", + "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -32705,6 +34343,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/stylehacks/node_modules/postcss-selector-parser": { "version": "3.1.2", + "dev": true, "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -32717,6 +34356,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/supports-color": { "version": "5.5.0", + "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -32727,6 +34367,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/svgo": { "version": "1.3.2", + "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.4.1", @@ -32752,6 +34393,7 @@ }, "node_modules/webpack-rtl-plugin/node_modules/webpack-sources": { "version": "1.3.0", + "dev": true, "license": "MIT", "dependencies": { "source-list-map": "^2.0.0", @@ -32760,6 +34402,7 @@ }, "node_modules/webpack-sources": { "version": "3.2.3", + "dev": true, "license": "MIT", "engines": { "node": ">=10.13.0" @@ -32767,6 +34410,7 @@ }, "node_modules/webpack/node_modules/acorn": { "version": "8.8.0", + "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -32777,6 +34421,7 @@ }, "node_modules/webpack/node_modules/acorn-import-assertions": { "version": "1.8.0", + "dev": true, "license": "MIT", "peerDependencies": { "acorn": "^8" @@ -32784,6 +34429,7 @@ }, "node_modules/websocket-driver": { "version": "0.7.4", + "dev": true, "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", @@ -32796,6 +34442,7 @@ }, "node_modules/websocket-extensions": { "version": "0.1.4", + "dev": true, "license": "Apache-2.0", "engines": { "node": ">=0.8.0" @@ -32803,6 +34450,7 @@ }, "node_modules/whatwg-encoding": { "version": "1.0.5", + "dev": true, "license": "MIT", "dependencies": { "iconv-lite": "0.4.24" @@ -32811,14 +34459,17 @@ "node_modules/whatwg-fetch": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", + "dev": true }, "node_modules/whatwg-mimetype": { "version": "2.3.0", + "dev": true, "license": "MIT" }, "node_modules/whatwg-url": { "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { "tr46": "~0.0.3", @@ -32827,10 +34478,12 @@ }, "node_modules/whatwg-url/node_modules/tr46": { "version": "0.0.3", + "dev": true, "license": "MIT" }, "node_modules/which": { "version": "1.3.1", + "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -32841,6 +34494,7 @@ }, "node_modules/which-boxed-primitive": { "version": "1.0.2", + "dev": true, "license": "MIT", "dependencies": { "is-bigint": "^1.0.1", @@ -32857,6 +34511,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, "dependencies": { "is-map": "^2.0.1", "is-set": "^2.0.1", @@ -32873,9 +34528,10 @@ "license": "ISC" }, "node_modules/which-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.10.tgz", - "integrity": "sha512-uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA==", + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -32901,26 +34557,25 @@ }, "node_modules/wildcard": { "version": "2.0.0", + "dev": true, "license": "MIT" }, "node_modules/word-wrap": { "version": "1.2.3", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/words-count": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/words-count/-/words-count-2.0.2.tgz", - "integrity": "sha512-u0LFfJPhnR0xXu/5WoqWIkgdGJst5GahS4lYy4G5TIX4JAQgeNKD33HpmMoxveVBWNS6W6YZV2OQjVIVLL4K7Q==" - }, "node_modules/wordwrap": { "version": "1.0.0", + "dev": true, "license": "MIT" }, "node_modules/wrap-ansi": { "version": "7.0.0", + "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", @@ -32936,10 +34591,12 @@ }, "node_modules/wrappy": { "version": "1.0.2", + "dev": true, "license": "ISC" }, "node_modules/write-file-atomic": { "version": "3.0.3", + "dev": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", @@ -32950,6 +34607,7 @@ }, "node_modules/ws": { "version": "8.8.1", + "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" @@ -32973,14 +34631,17 @@ }, "node_modules/xml-name-validator": { "version": "3.0.0", + "dev": true, "license": "Apache-2.0" }, "node_modules/xmlchars": { "version": "2.2.0", + "dev": true, "license": "MIT" }, "node_modules/xtend": { "version": "4.0.2", + "dev": true, "license": "MIT", "engines": { "node": ">=0.4" @@ -32988,18 +34649,21 @@ }, "node_modules/yallist": { "version": "4.0.0", + "dev": true, "license": "ISC" }, "node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz", + "integrity": "sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==", + "dev": true, "engines": { "node": ">= 14" } }, "node_modules/yargs": { "version": "17.6.0", + "dev": true, "license": "MIT", "dependencies": { "cliui": "^8.0.1", @@ -33016,6 +34680,7 @@ }, "node_modules/yargs-parser": { "version": "18.1.3", + "dev": true, "license": "ISC", "dependencies": { "camelcase": "^5.0.0", @@ -33027,6 +34692,7 @@ }, "node_modules/yargs-parser/node_modules/camelcase": { "version": "5.3.1", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -33034,6 +34700,7 @@ }, "node_modules/yargs/node_modules/cliui": { "version": "8.0.1", + "dev": true, "license": "ISC", "dependencies": { "string-width": "^4.2.0", @@ -33046,6 +34713,7 @@ }, "node_modules/yargs/node_modules/y18n": { "version": "5.0.8", + "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -33053,6 +34721,7 @@ }, "node_modules/yargs/node_modules/yargs-parser": { "version": "21.1.1", + "dev": true, "license": "ISC", "engines": { "node": ">=12" @@ -33060,6 +34729,7 @@ }, "node_modules/yauzl": { "version": "2.10.0", + "dev": true, "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", @@ -33068,6 +34738,7 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", + "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -33075,6 +34746,123 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } + }, + "packages/brand": { + "version": "0.0.2", + "dev": true, + "license": "GPL-3.0-or-later" + }, + "packages/components": { + "version": "1.1.0", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@emotion/styled": "^11.6.0", + "@wordpress/api-fetch": "^5.2.6", + "@wordpress/components": "^19.5.0", + "@wordpress/compose": "^5.0.6", + "@wordpress/element": "^4.14.0", + "@wordpress/i18n": "^4.2.4", + "@wordpress/url": "^3.3.1", + "lodash": "^4.17.21", + "react-select": "^5.2.1", + "throttle-debounce": "^3.0.1" + }, + "devDependencies": { + "@testing-library/react": "^12.1.2" + } + }, + "packages/dev": { + "version": "0.2.1", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "chalk": "^4.1.2", + "columnify": "^1.5.4", + "commander": "^8.2.0", + "inquirer": "^8.2.0", + "replace-in-file": "^6.3.1", + "semver": "^7.3.5", + "yaml": "^1.10.2" + }, + "bin": { + "llms-dev": "src/index.js" + }, + "engines": { + "node": ">=14.14.0" + } + }, + "packages/dev/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "packages/fontawesome": { + "version": "0.0.1", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@emotion/styled": "^11.10.0", + "@fortawesome/fontawesome-free": "^6.1.2", + "react-infinite-scroller": "^1.2.6" + }, + "devDependencies": { + "yaml": "^2.1.1" + } + }, + "packages/icons": { + "version": "1.0.1-alpha.2", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@wordpress/icons": "^6.1.1" + }, + "devDependencies": { + "@babel/core": "^7.16.5", + "babelify": "^10.0.0", + "browserify": "^17.0.0", + "cheerio": "^1.0.0-rc.10", + "react-dom": "^17.0.2", + "react-snap": "^1.23.0" + } + }, + "packages/llms-e2e-test-utils": { + "version": "4.0.1", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@wordpress/e2e-test-utils": "^7.0.0", + "css-xpath": "^1.0.0", + "semver": "^7.3.5" + }, + "peerDependencies": { + "lodash": "^4.17.21" + } + }, + "packages/scripts": { + "version": "4.0.1", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@jest/test-sequencer": "^27.4.6", + "@wordpress/eslint-plugin": "^11.1.0", + "@wordpress/scripts": "^23.6.0", + "dotenv": "^8.2.0", + "eslint-import-resolver-node": "^0.3.6", + "fast-glob": "^3.2.11", + "mini-css-extract-plugin": "^2.6.1", + "webpack-remove-empty-scripts": "^0.8.1", + "webpack-rtl-plugin": "^2.0.0" + } + }, + "packages/utils": { + "version": "1.0.1-alpha.1", + "dev": true, + "license": "GPL-3.0-or-later" } } } From 5eb521ac79b0d8be80731dbce6939e7b17b5a7f0 Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Fri, 14 Jul 2023 10:16:15 -0400 Subject: [PATCH 11/62] trying again --- package-lock.json | 2261 +++++---------------------------------------- 1 file changed, 230 insertions(+), 2031 deletions(-) diff --git a/package-lock.json b/package-lock.json index 03694a55d2..32d3394817 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,17 +1,54 @@ { "name": "lifterlms", - "version": "7.1.4", + "version": "7.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lifterlms", - "version": "7.1.4", - "hasInstallScript": true, + "version": "7.2.1", "license": "GPL-3.0", "dependencies": { + "@babel/core": "^7.16.5", "@emotion/styled": "^11.6.0", - "classnames": "^2.3.1" + "@fortawesome/fontawesome-free": "^6.1.2", + "@jest/test-sequencer": "^27.4.6", + "@testing-library/react": "^12.1.2", + "@wordpress/api-fetch": "^5.2.6", + "@wordpress/components": "^19.5.0", + "@wordpress/compose": "^5.0.6", + "@wordpress/e2e-test-utils": "^7.0.0", + "@wordpress/element": "^4.14.0", + "@wordpress/eslint-plugin": "^11.1.0", + "@wordpress/i18n": "^4.2.4", + "@wordpress/icons": "^6.1.1", + "@wordpress/scripts": "^23.6.0", + "@wordpress/url": "^3.3.1", + "babelify": "^10.0.0", + "browserify": "^17.0.0", + "chalk": "^4.1.2", + "cheerio": "^1.0.0-rc.10", + "classnames": "^2.3.1", + "columnify": "^1.5.4", + "commander": "^8.2.0", + "css-xpath": "^1.0.0", + "dotenv": "^8.2.0", + "eslint-import-resolver-node": "^0.3.6", + "fast-glob": "^3.2.11", + "inquirer": "^8.2.0", + "lodash": "^4.17.21", + "mini-css-extract-plugin": "^2.6.1", + "react-dom": "^17.0.2", + "react-infinite-scroller": "^1.2.6", + "react-select": "^5.2.1", + "react-snap": "^1.23.0", + "replace-in-file": "^6.3.1", + "semver": "^7.3.5", + "throttle-debounce": "^3.0.1", + "webpack-remove-empty-scripts": "^0.8.1", + "webpack-rtl-plugin": "^2.0.0", + "words-count": "^2.0.2", + "yaml": "^2.1.1" }, "devDependencies": { "@lifterlms/brand": "file:packages/brand", @@ -135,7 +172,6 @@ }, "node_modules/@babel/eslint-parser": { "version": "7.19.1", - "dev": true, "license": "MIT", "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", @@ -152,7 +188,6 @@ }, "node_modules/@babel/eslint-parser/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -172,7 +207,6 @@ }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -183,7 +217,6 @@ }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-explode-assignable-expression": "^7.18.6", @@ -218,7 +251,6 @@ }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -238,7 +270,6 @@ }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -253,7 +284,6 @@ }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.3.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.17.7", @@ -269,7 +299,6 @@ }, "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -284,7 +313,6 @@ }, "node_modules/@babel/helper-explode-assignable-expression": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -316,7 +344,6 @@ }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.9" @@ -354,7 +381,6 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -372,7 +398,6 @@ }, "node_modules/@babel/helper-remap-async-to-generator": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -389,7 +414,6 @@ }, "node_modules/@babel/helper-replace-supers": { "version": "7.19.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", @@ -414,7 +438,6 @@ }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.9" @@ -456,7 +479,6 @@ }, "node_modules/@babel/helper-wrap-function": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-function-name": "^7.19.0", @@ -549,7 +571,6 @@ }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -563,7 +584,6 @@ }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -579,7 +599,6 @@ }, "node_modules/@babel/plugin-proposal-async-generator-functions": { "version": "7.19.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", @@ -596,7 +615,6 @@ }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -611,7 +629,6 @@ }, "node_modules/@babel/plugin-proposal-class-static-block": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -627,7 +644,6 @@ }, "node_modules/@babel/plugin-proposal-dynamic-import": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -642,7 +658,6 @@ }, "node_modules/@babel/plugin-proposal-export-namespace-from": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -657,7 +672,6 @@ }, "node_modules/@babel/plugin-proposal-json-strings": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -672,7 +686,6 @@ }, "node_modules/@babel/plugin-proposal-logical-assignment-operators": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -687,7 +700,6 @@ }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -702,7 +714,6 @@ }, "node_modules/@babel/plugin-proposal-numeric-separator": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -717,7 +728,6 @@ }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.18.8", @@ -735,7 +745,6 @@ }, "node_modules/@babel/plugin-proposal-optional-catch-binding": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -750,7 +759,6 @@ }, "node_modules/@babel/plugin-proposal-optional-chaining": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", @@ -766,7 +774,6 @@ }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -781,7 +788,6 @@ }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -798,7 +804,6 @@ }, "node_modules/@babel/plugin-proposal-unicode-property-regex": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", @@ -813,7 +818,6 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -824,7 +828,6 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" @@ -835,7 +838,6 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -849,7 +851,6 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -860,7 +861,6 @@ }, "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" @@ -871,7 +871,6 @@ }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -885,7 +884,6 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -909,7 +907,6 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -920,7 +917,6 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -931,7 +927,6 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -942,7 +937,6 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -953,7 +947,6 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -964,7 +957,6 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -975,7 +967,6 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -989,7 +980,6 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -1003,7 +993,6 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1017,7 +1006,6 @@ }, "node_modules/@babel/plugin-transform-arrow-functions": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1031,7 +1019,6 @@ }, "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", @@ -1047,7 +1034,6 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1061,7 +1047,6 @@ }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1075,7 +1060,6 @@ }, "node_modules/@babel/plugin-transform-classes": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1097,7 +1081,6 @@ }, "node_modules/@babel/plugin-transform-classes/node_modules/globals": { "version": "11.12.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -1105,7 +1088,6 @@ }, "node_modules/@babel/plugin-transform-computed-properties": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1119,7 +1101,6 @@ }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.18.13", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1133,7 +1114,6 @@ }, "node_modules/@babel/plugin-transform-dotall-regex": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", @@ -1148,7 +1128,6 @@ }, "node_modules/@babel/plugin-transform-duplicate-keys": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1162,7 +1141,6 @@ }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", @@ -1177,7 +1155,6 @@ }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.18.8", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1191,7 +1168,6 @@ }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.18.9", @@ -1207,7 +1183,6 @@ }, "node_modules/@babel/plugin-transform-literals": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1221,7 +1196,6 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1235,7 +1209,6 @@ }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", @@ -1251,7 +1224,6 @@ }, "node_modules/@babel/plugin-transform-modules-commonjs": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", @@ -1268,7 +1240,6 @@ }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", @@ -1286,7 +1257,6 @@ }, "node_modules/@babel/plugin-transform-modules-umd": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", @@ -1301,7 +1271,6 @@ }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.19.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.19.0", @@ -1316,7 +1285,6 @@ }, "node_modules/@babel/plugin-transform-new-target": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1330,7 +1298,6 @@ }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1345,7 +1312,6 @@ }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.18.8", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1359,7 +1325,6 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1373,7 +1338,6 @@ }, "node_modules/@babel/plugin-transform-react-constant-elements": { "version": "7.18.12", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1387,7 +1351,6 @@ }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1401,7 +1364,6 @@ }, "node_modules/@babel/plugin-transform-react-jsx": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1419,7 +1381,6 @@ }, "node_modules/@babel/plugin-transform-react-jsx-development": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/plugin-transform-react-jsx": "^7.18.6" @@ -1433,7 +1394,6 @@ }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1448,7 +1408,6 @@ }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1463,7 +1422,6 @@ }, "node_modules/@babel/plugin-transform-reserved-words": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1477,7 +1435,6 @@ }, "node_modules/@babel/plugin-transform-runtime": { "version": "7.19.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", @@ -1496,7 +1453,6 @@ }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -1504,7 +1460,6 @@ }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1518,7 +1473,6 @@ }, "node_modules/@babel/plugin-transform-spread": { "version": "7.19.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0", @@ -1533,7 +1487,6 @@ }, "node_modules/@babel/plugin-transform-sticky-regex": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -1547,7 +1500,6 @@ }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1561,7 +1513,6 @@ }, "node_modules/@babel/plugin-transform-typeof-symbol": { "version": "7.18.9", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1575,7 +1526,6 @@ }, "node_modules/@babel/plugin-transform-typescript": { "version": "7.19.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.19.0", @@ -1591,7 +1541,6 @@ }, "node_modules/@babel/plugin-transform-unicode-escapes": { "version": "7.18.10", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" @@ -1605,7 +1554,6 @@ }, "node_modules/@babel/plugin-transform-unicode-regex": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", @@ -1620,7 +1568,6 @@ }, "node_modules/@babel/preset-env": { "version": "7.19.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.19.3", @@ -1708,7 +1655,6 @@ }, "node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -1716,7 +1662,6 @@ }, "node_modules/@babel/preset-modules": { "version": "0.1.5", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", @@ -1731,7 +1676,6 @@ }, "node_modules/@babel/preset-react": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1750,7 +1694,6 @@ }, "node_modules/@babel/preset-typescript": { "version": "7.18.6", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", @@ -1776,7 +1719,6 @@ }, "node_modules/@babel/runtime-corejs3": { "version": "7.19.1", - "dev": true, "license": "MIT", "dependencies": { "core-js-pure": "^3.25.1", @@ -1838,12 +1780,10 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", - "dev": true, "license": "MIT" }, "node_modules/@csstools/selector-specificity": { "version": "2.0.2", - "dev": true, "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" @@ -1859,7 +1799,6 @@ }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", - "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" @@ -1914,7 +1853,6 @@ }, "node_modules/@emotion/css": { "version": "11.10.0", - "dev": true, "license": "MIT", "dependencies": { "@emotion/babel-plugin": "^11.10.0", @@ -2034,7 +1972,6 @@ }, "node_modules/@es-joy/jsdoccomment": { "version": "0.20.1", - "dev": true, "license": "MIT", "dependencies": { "comment-parser": "1.3.0", @@ -2047,7 +1984,6 @@ }, "node_modules/@es-joy/jsdoccomment/node_modules/comment-parser": { "version": "1.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 12.0.0" @@ -2055,7 +1991,6 @@ }, "node_modules/@eslint/eslintrc": { "version": "1.3.2", - "dev": true, "license": "MIT", "dependencies": { "ajv": "^6.12.4", @@ -2077,12 +2012,10 @@ }, "node_modules/@floating-ui/core": { "version": "0.6.2", - "dev": true, "license": "MIT" }, "node_modules/@floating-ui/dom": { "version": "0.4.5", - "dev": true, "license": "MIT", "dependencies": { "@floating-ui/core": "^0.6.2" @@ -2090,7 +2023,6 @@ }, "node_modules/@floating-ui/react-dom": { "version": "0.6.3", - "dev": true, "license": "MIT", "dependencies": { "@floating-ui/dom": "^0.4.5", @@ -2103,7 +2035,6 @@ }, "node_modules/@fortawesome/fontawesome-free": { "version": "6.2.0", - "dev": true, "hasInstallScript": true, "license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)", "engines": { @@ -2117,7 +2048,6 @@ }, "node_modules/@humanwhocodes/config-array": { "version": "0.10.7", - "dev": true, "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", @@ -2130,12 +2060,10 @@ }, "node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/@humanwhocodes/gitignore-to-minimatch": { "version": "1.0.2", - "dev": true, "license": "Apache-2.0", "funding": { "type": "github", @@ -2144,7 +2072,6 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", - "dev": true, "license": "Apache-2.0", "engines": { "node": ">=12.22" @@ -2161,7 +2088,6 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -2169,7 +2095,6 @@ }, "node_modules/@jest/console": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -2185,7 +2110,6 @@ }, "node_modules/@jest/core": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", @@ -2231,7 +2155,6 @@ }, "node_modules/@jest/environment": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/fake-timers": "^27.5.1", @@ -2245,7 +2168,6 @@ }, "node_modules/@jest/expect": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2258,7 +2180,6 @@ }, "node_modules/@jest/expect-utils": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2270,7 +2191,6 @@ }, "node_modules/@jest/expect-utils/node_modules/jest-get-type": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2279,7 +2199,6 @@ }, "node_modules/@jest/expect/node_modules/@jest/transform": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2305,7 +2224,6 @@ }, "node_modules/@jest/expect/node_modules/@jest/types": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2322,7 +2240,6 @@ }, "node_modules/@jest/expect/node_modules/@types/yargs": { "version": "17.0.13", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2331,7 +2248,6 @@ }, "node_modules/@jest/expect/node_modules/ansi-styles": { "version": "5.2.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2343,7 +2259,6 @@ }, "node_modules/@jest/expect/node_modules/convert-source-map": { "version": "1.8.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2352,7 +2267,6 @@ }, "node_modules/@jest/expect/node_modules/diff-sequences": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2361,7 +2275,6 @@ }, "node_modules/@jest/expect/node_modules/expect": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2377,7 +2290,6 @@ }, "node_modules/@jest/expect/node_modules/jest-diff": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2392,7 +2304,6 @@ }, "node_modules/@jest/expect/node_modules/jest-get-type": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2401,7 +2312,6 @@ }, "node_modules/@jest/expect/node_modules/jest-haste-map": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2426,7 +2336,6 @@ }, "node_modules/@jest/expect/node_modules/jest-matcher-utils": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2441,7 +2350,6 @@ }, "node_modules/@jest/expect/node_modules/jest-message-util": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2461,7 +2369,6 @@ }, "node_modules/@jest/expect/node_modules/jest-regex-util": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -2470,7 +2377,6 @@ }, "node_modules/@jest/expect/node_modules/jest-snapshot": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2505,7 +2411,6 @@ }, "node_modules/@jest/expect/node_modules/jest-util": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2522,7 +2427,6 @@ }, "node_modules/@jest/expect/node_modules/jest-worker": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2537,7 +2441,6 @@ }, "node_modules/@jest/expect/node_modules/pretty-format": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2551,19 +2454,16 @@ }, "node_modules/@jest/expect/node_modules/react-is": { "version": "18.2.0", - "dev": true, "license": "MIT", "peer": true }, "node_modules/@jest/expect/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, "license": "MIT", "peer": true }, "node_modules/@jest/expect/node_modules/supports-color": { "version": "8.1.1", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2578,7 +2478,6 @@ }, "node_modules/@jest/expect/node_modules/write-file-atomic": { "version": "4.0.2", - "dev": true, "license": "ISC", "peer": true, "dependencies": { @@ -2591,7 +2490,6 @@ }, "node_modules/@jest/fake-timers": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -2607,7 +2505,6 @@ }, "node_modules/@jest/globals": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -2620,7 +2517,6 @@ }, "node_modules/@jest/reporters": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", @@ -2663,7 +2559,6 @@ }, "node_modules/@jest/reporters/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -2671,7 +2566,6 @@ }, "node_modules/@jest/schemas": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -2683,7 +2577,6 @@ }, "node_modules/@jest/source-map": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "callsites": "^3.0.0", @@ -2696,7 +2589,6 @@ }, "node_modules/@jest/source-map/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -2704,7 +2596,6 @@ }, "node_modules/@jest/test-result": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", @@ -2718,7 +2609,6 @@ }, "node_modules/@jest/test-sequencer": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", @@ -2732,7 +2622,6 @@ }, "node_modules/@jest/transform": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.1.0", @@ -2757,7 +2646,6 @@ }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "1.8.0", - "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.1" @@ -2765,12 +2653,10 @@ }, "node_modules/@jest/transform/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, "license": "MIT" }, "node_modules/@jest/transform/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -2778,7 +2664,6 @@ }, "node_modules/@jest/types": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", @@ -2819,7 +2704,6 @@ }, "node_modules/@jridgewell/source-map": { "version": "0.3.2", - "dev": true, "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", @@ -2840,7 +2724,6 @@ }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", - "dev": true, "license": "MIT" }, "node_modules/@lerna/changed": { @@ -6024,40 +5907,118 @@ } }, "node_modules/@lifterlms/brand": { - "resolved": "packages/brand", - "link": true + "version": "0.0.2", + "resolved": "file:packages/brand", + "dev": true, + "license": "GPL-3.0-or-later" }, "node_modules/@lifterlms/components": { - "resolved": "packages/components", - "link": true + "version": "1.1.0", + "resolved": "file:packages/components", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@emotion/styled": "^11.6.0", + "@wordpress/api-fetch": "^5.2.6", + "@wordpress/components": "^19.5.0", + "@wordpress/compose": "^5.0.6", + "@wordpress/element": "^4.14.0", + "@wordpress/i18n": "^4.2.4", + "@wordpress/url": "^3.3.1", + "lodash": "^4.17.21", + "react-select": "^5.2.1", + "throttle-debounce": "^3.0.1" + } }, "node_modules/@lifterlms/dev": { - "resolved": "packages/dev", - "link": true + "version": "0.2.1", + "resolved": "file:packages/dev", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "chalk": "^4.1.2", + "columnify": "^1.5.4", + "commander": "^8.2.0", + "inquirer": "^8.2.0", + "replace-in-file": "^6.3.1", + "semver": "^7.3.5", + "yaml": "^1.10.2" + }, + "bin": { + "llms-dev": "src/index.js" + }, + "engines": { + "node": ">=14.14.0" + } + }, + "node_modules/@lifterlms/dev/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } }, "node_modules/@lifterlms/fontawesome": { - "resolved": "packages/fontawesome", - "link": true + "version": "0.0.1", + "resolved": "file:packages/fontawesome", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@emotion/styled": "^11.10.0", + "@fortawesome/fontawesome-free": "^6.1.2", + "react-infinite-scroller": "^1.2.6" + } }, "node_modules/@lifterlms/icons": { - "resolved": "packages/icons", - "link": true + "version": "1.0.1-alpha.2", + "resolved": "file:packages/icons", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@wordpress/icons": "^6.1.1" + } }, "node_modules/@lifterlms/llms-e2e-test-utils": { - "resolved": "packages/llms-e2e-test-utils", - "link": true + "version": "4.0.1", + "resolved": "file:packages/llms-e2e-test-utils", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@wordpress/e2e-test-utils": "^7.0.0", + "css-xpath": "^1.0.0", + "semver": "^7.3.5" + }, + "peerDependencies": { + "lodash": "^4.17.21" + } }, "node_modules/@lifterlms/scripts": { - "resolved": "packages/scripts", - "link": true + "version": "4.0.1", + "resolved": "file:packages/scripts", + "dev": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@jest/test-sequencer": "^27.4.6", + "@wordpress/eslint-plugin": "^11.1.0", + "@wordpress/scripts": "^23.6.0", + "dotenv": "^8.2.0", + "eslint-import-resolver-node": "^0.3.6", + "fast-glob": "^3.2.11", + "mini-css-extract-plugin": "^2.6.1", + "webpack-remove-empty-scripts": "^0.8.1", + "webpack-rtl-plugin": "^2.0.0" + } }, "node_modules/@lifterlms/utils": { - "resolved": "packages/utils", - "link": true + "version": "1.0.1-alpha.1", + "resolved": "file:packages/utils", + "dev": true, + "license": "GPL-3.0-or-later" }, "node_modules/@motionone/animation": { "version": "10.14.0", - "dev": true, "license": "MIT", "dependencies": { "@motionone/easing": "^10.14.0", @@ -6068,7 +6029,6 @@ }, "node_modules/@motionone/dom": { "version": "10.12.0", - "dev": true, "license": "MIT", "dependencies": { "@motionone/animation": "^10.12.0", @@ -6081,7 +6041,6 @@ }, "node_modules/@motionone/easing": { "version": "10.14.0", - "dev": true, "license": "MIT", "dependencies": { "@motionone/utils": "^10.14.0", @@ -6090,7 +6049,6 @@ }, "node_modules/@motionone/generators": { "version": "10.14.0", - "dev": true, "license": "MIT", "dependencies": { "@motionone/types": "^10.14.0", @@ -6100,12 +6058,10 @@ }, "node_modules/@motionone/types": { "version": "10.14.0", - "dev": true, "license": "MIT" }, "node_modules/@motionone/utils": { "version": "10.14.0", - "dev": true, "license": "MIT", "dependencies": { "@motionone/types": "^10.14.0", @@ -6115,7 +6071,6 @@ }, "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { "version": "5.1.1-v1", - "dev": true, "license": "MIT", "dependencies": { "eslint-scope": "5.1.1" @@ -6123,7 +6078,6 @@ }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", - "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", @@ -6135,7 +6089,6 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">= 8" @@ -6143,7 +6096,6 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", - "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", @@ -7051,7 +7003,6 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.7", - "dev": true, "license": "MIT", "dependencies": { "ansi-html-community": "^0.0.8", @@ -7100,7 +7051,6 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "locate-path": "^6.0.0", @@ -7115,7 +7065,6 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { "version": "6.0.0", - "dev": true, "license": "MIT", "dependencies": { "p-locate": "^5.0.0" @@ -7129,7 +7078,6 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-limit": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" @@ -7143,7 +7091,6 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "p-limit": "^3.0.2" @@ -7157,7 +7104,6 @@ }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { "version": "0.7.4", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">= 8" @@ -7165,12 +7111,10 @@ }, "node_modules/@polka/url": { "version": "1.0.0-next.21", - "dev": true, "license": "MIT" }, "node_modules/@popperjs/core": { "version": "2.11.6", - "dev": true, "license": "MIT", "funding": { "type": "opencollective", @@ -7179,7 +7123,6 @@ }, "node_modules/@romainberger/css-diff": { "version": "1.0.3", - "dev": true, "license": "MIT", "dependencies": { "lodash.merge": "^4.4.0", @@ -7188,7 +7131,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/ansi-regex": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7196,7 +7138,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/ansi-styles": { "version": "2.2.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7204,7 +7145,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/chalk": { "version": "1.1.3", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^2.2.1", @@ -7219,7 +7159,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/chalk/node_modules/supports-color": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -7227,7 +7166,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/escape-string-regexp": { "version": "1.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -7235,7 +7173,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/has-flag": { "version": "1.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7243,7 +7180,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/postcss": { "version": "5.2.18", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^1.1.3", @@ -7257,7 +7193,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/strip-ansi": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" @@ -7268,7 +7203,6 @@ }, "node_modules/@romainberger/css-diff/node_modules/supports-color": { "version": "3.2.3", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^1.0.0" @@ -7279,18 +7213,15 @@ }, "node_modules/@sideway/formula": { "version": "3.0.1", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/@sinclair/typebox": { "version": "0.24.44", - "dev": true, "license": "MIT", "peer": true }, "node_modules/@sinonjs/commons": { "version": "1.8.3", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" @@ -7298,7 +7229,6 @@ }, "node_modules/@sinonjs/fake-timers": { "version": "8.1.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^1.7.0" @@ -7306,7 +7236,6 @@ }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7321,7 +7250,6 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7336,7 +7264,6 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7351,7 +7278,6 @@ }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7366,7 +7292,6 @@ }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7381,7 +7306,6 @@ }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7396,7 +7320,6 @@ }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -7411,7 +7334,6 @@ }, "node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "6.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -7426,7 +7348,6 @@ }, "node_modules/@svgr/babel-preset": { "version": "6.4.0", - "dev": true, "license": "MIT", "dependencies": { "@svgr/babel-plugin-add-jsx-attribute": "^6.3.1", @@ -7451,7 +7372,6 @@ }, "node_modules/@svgr/core": { "version": "6.4.0", - "dev": true, "license": "MIT", "dependencies": { "@svgr/babel-preset": "^6.4.0", @@ -7469,7 +7389,6 @@ }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "6.4.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.18.4", @@ -7485,7 +7404,6 @@ }, "node_modules/@svgr/plugin-jsx": { "version": "6.4.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.18.5", @@ -7506,7 +7424,6 @@ }, "node_modules/@svgr/plugin-svgo": { "version": "6.3.1", - "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.1", @@ -7526,7 +7443,6 @@ }, "node_modules/@svgr/webpack": { "version": "6.4.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.18.5", @@ -7550,7 +7466,6 @@ "version": "8.20.0", "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", - "dev": true, "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", @@ -7569,7 +7484,6 @@ "version": "12.1.5", "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-12.1.5.tgz", "integrity": "sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==", - "dev": true, "dependencies": { "@babel/runtime": "^7.12.5", "@testing-library/dom": "^8.0.0", @@ -7585,7 +7499,6 @@ }, "node_modules/@tootallnate/once": { "version": "1.1.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 6" @@ -7593,7 +7506,6 @@ }, "node_modules/@trysound/sax": { "version": "0.2.0", - "dev": true, "license": "ISC", "engines": { "node": ">=10.13.0" @@ -7602,12 +7514,10 @@ "node_modules/@types/aria-query": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", - "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", - "dev": true + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==" }, "node_modules/@types/babel__core": { "version": "7.1.19", - "dev": true, "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", @@ -7619,7 +7529,6 @@ }, "node_modules/@types/babel__generator": { "version": "7.6.4", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" @@ -7627,7 +7536,6 @@ }, "node_modules/@types/babel__template": { "version": "7.4.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", @@ -7636,7 +7544,6 @@ }, "node_modules/@types/babel__traverse": { "version": "7.18.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.3.0" @@ -7644,7 +7551,6 @@ }, "node_modules/@types/body-parser": { "version": "1.19.2", - "dev": true, "license": "MIT", "dependencies": { "@types/connect": "*", @@ -7653,7 +7559,6 @@ }, "node_modules/@types/bonjour": { "version": "3.5.10", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7661,7 +7566,6 @@ }, "node_modules/@types/cheerio": { "version": "0.22.31", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7669,7 +7573,6 @@ }, "node_modules/@types/connect": { "version": "3.4.35", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7677,7 +7580,6 @@ }, "node_modules/@types/connect-history-api-fallback": { "version": "1.3.5", - "dev": true, "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", @@ -7686,7 +7588,6 @@ }, "node_modules/@types/eslint": { "version": "8.21.1", - "dev": true, "license": "MIT", "dependencies": { "@types/estree": "*", @@ -7695,7 +7596,6 @@ }, "node_modules/@types/eslint-scope": { "version": "3.7.4", - "dev": true, "license": "MIT", "dependencies": { "@types/eslint": "*", @@ -7704,12 +7604,10 @@ }, "node_modules/@types/estree": { "version": "0.0.51", - "dev": true, "license": "MIT" }, "node_modules/@types/express": { "version": "4.17.14", - "dev": true, "license": "MIT", "dependencies": { "@types/body-parser": "*", @@ -7720,7 +7618,6 @@ }, "node_modules/@types/express-serve-static-core": { "version": "4.17.31", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -7730,7 +7627,6 @@ }, "node_modules/@types/glob": { "version": "7.2.0", - "dev": true, "license": "MIT", "dependencies": { "@types/minimatch": "*", @@ -7739,7 +7635,6 @@ }, "node_modules/@types/graceful-fs": { "version": "4.1.5", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7747,7 +7642,6 @@ }, "node_modules/@types/http-proxy": { "version": "1.17.9", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7755,12 +7649,10 @@ }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", - "dev": true, "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" @@ -7768,7 +7660,6 @@ }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" @@ -7776,47 +7667,38 @@ }, "node_modules/@types/json-schema": { "version": "7.0.11", - "dev": true, "license": "MIT" }, "node_modules/@types/json5": { "version": "0.0.29", - "dev": true, "license": "MIT" }, "node_modules/@types/lodash": { "version": "4.14.186", - "dev": true, "license": "MIT" }, "node_modules/@types/mime": { "version": "3.0.1", - "dev": true, "license": "MIT" }, "node_modules/@types/minimatch": { "version": "3.0.5", - "dev": true, "license": "MIT" }, "node_modules/@types/minimist": { "version": "1.2.2", - "dev": true, "license": "MIT" }, "node_modules/@types/mousetrap": { "version": "1.6.9", - "dev": true, "license": "MIT" }, "node_modules/@types/node": { "version": "18.14.0", - "dev": true, "license": "MIT" }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", - "dev": true, "license": "MIT" }, "node_modules/@types/parse-json": { @@ -7825,32 +7707,26 @@ }, "node_modules/@types/prettier": { "version": "2.7.1", - "dev": true, "license": "MIT" }, "node_modules/@types/prop-types": { "version": "15.7.5", - "dev": true, "license": "MIT" }, "node_modules/@types/q": { "version": "1.5.5", - "dev": true, "license": "MIT" }, "node_modules/@types/qs": { "version": "6.9.7", - "dev": true, "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.4", - "dev": true, "license": "MIT" }, "node_modules/@types/react": { "version": "17.0.50", - "dev": true, "license": "MIT", "dependencies": { "@types/prop-types": "*", @@ -7860,7 +7736,6 @@ }, "node_modules/@types/react-dom": { "version": "17.0.17", - "dev": true, "license": "MIT", "dependencies": { "@types/react": "^17" @@ -7868,7 +7743,6 @@ }, "node_modules/@types/react-transition-group": { "version": "4.4.5", - "dev": true, "license": "MIT", "dependencies": { "@types/react": "*" @@ -7876,17 +7750,14 @@ }, "node_modules/@types/retry": { "version": "0.12.0", - "dev": true, "license": "MIT" }, "node_modules/@types/scheduler": { "version": "0.16.2", - "dev": true, "license": "MIT" }, "node_modules/@types/serve-index": { "version": "1.9.1", - "dev": true, "license": "MIT", "dependencies": { "@types/express": "*" @@ -7894,7 +7765,6 @@ }, "node_modules/@types/serve-static": { "version": "1.15.0", - "dev": true, "license": "MIT", "dependencies": { "@types/mime": "*", @@ -7903,7 +7773,6 @@ }, "node_modules/@types/sockjs": { "version": "0.3.33", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7911,22 +7780,18 @@ }, "node_modules/@types/source-list-map": { "version": "0.1.2", - "dev": true, "license": "MIT" }, "node_modules/@types/stack-utils": { "version": "2.0.1", - "dev": true, "license": "MIT" }, "node_modules/@types/tapable": { "version": "1.0.8", - "dev": true, "license": "MIT" }, "node_modules/@types/uglify-js": { "version": "3.17.1", - "dev": true, "license": "MIT", "dependencies": { "source-map": "^0.6.1" @@ -7934,7 +7799,6 @@ }, "node_modules/@types/uglify-js/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -7965,7 +7829,6 @@ }, "node_modules/@types/webpack-sources": { "version": "3.2.0", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -7975,7 +7838,6 @@ }, "node_modules/@types/webpack-sources/node_modules/source-map": { "version": "0.7.4", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">= 8" @@ -7983,7 +7845,6 @@ }, "node_modules/@types/ws": { "version": "8.5.3", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" @@ -7991,7 +7852,6 @@ }, "node_modules/@types/yargs": { "version": "16.0.4", - "dev": true, "license": "MIT", "dependencies": { "@types/yargs-parser": "*" @@ -7999,12 +7859,10 @@ }, "node_modules/@types/yargs-parser": { "version": "21.0.0", - "dev": true, "license": "MIT" }, "node_modules/@types/yauzl": { "version": "2.10.0", - "dev": true, "license": "MIT", "optional": true, "dependencies": { @@ -8013,7 +7871,6 @@ }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.39.0", - "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/scope-manager": "5.39.0", @@ -8044,7 +7901,6 @@ }, "node_modules/@typescript-eslint/experimental-utils": { "version": "5.39.0", - "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/utils": "5.39.0" @@ -8062,7 +7918,6 @@ }, "node_modules/@typescript-eslint/parser": { "version": "5.39.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/scope-manager": "5.39.0", @@ -8088,7 +7943,6 @@ }, "node_modules/@typescript-eslint/scope-manager": { "version": "5.39.0", - "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.39.0", @@ -8104,7 +7958,6 @@ }, "node_modules/@typescript-eslint/type-utils": { "version": "5.39.0", - "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/typescript-estree": "5.39.0", @@ -8130,7 +7983,6 @@ }, "node_modules/@typescript-eslint/types": { "version": "5.39.0", - "dev": true, "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -8142,7 +7994,6 @@ }, "node_modules/@typescript-eslint/typescript-estree": { "version": "5.39.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/types": "5.39.0", @@ -8168,7 +8019,6 @@ }, "node_modules/@typescript-eslint/utils": { "version": "5.39.0", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -8191,7 +8041,6 @@ }, "node_modules/@typescript-eslint/visitor-keys": { "version": "5.39.0", - "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.39.0", @@ -8207,7 +8056,6 @@ }, "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { "version": "3.3.0", - "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -8215,12 +8063,10 @@ }, "node_modules/@use-gesture/core": { "version": "10.2.20", - "dev": true, "license": "MIT" }, "node_modules/@use-gesture/react": { "version": "10.2.20", - "dev": true, "license": "MIT", "dependencies": { "@use-gesture/core": "10.2.20" @@ -8231,7 +8077,6 @@ }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/helper-numbers": "1.11.1", @@ -8240,22 +8085,18 @@ }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.11.1", - "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.11.1", - "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.11.1", - "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.1", @@ -8265,12 +8106,10 @@ }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.1", - "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8281,7 +8120,6 @@ }, "node_modules/@webassemblyjs/ieee754": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" @@ -8289,7 +8127,6 @@ }, "node_modules/@webassemblyjs/leb128": { "version": "1.11.1", - "dev": true, "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" @@ -8297,12 +8134,10 @@ }, "node_modules/@webassemblyjs/utf8": { "version": "1.11.1", - "dev": true, "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8317,7 +8152,6 @@ }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8329,7 +8163,6 @@ }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8340,7 +8173,6 @@ }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8353,7 +8185,6 @@ }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.11.1", - "dev": true, "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -8362,7 +8193,6 @@ }, "node_modules/@webpack-cli/configtest": { "version": "1.2.0", - "dev": true, "license": "MIT", "peerDependencies": { "webpack": "4.x.x || 5.x.x", @@ -8371,7 +8201,6 @@ }, "node_modules/@webpack-cli/info": { "version": "1.5.0", - "dev": true, "license": "MIT", "dependencies": { "envinfo": "^7.7.3" @@ -8382,7 +8211,6 @@ }, "node_modules/@webpack-cli/serve": { "version": "1.7.0", - "dev": true, "license": "MIT", "peerDependencies": { "webpack-cli": "4.x.x" @@ -8395,7 +8223,6 @@ }, "node_modules/@wojtekmaj/enzyme-adapter-react-17": { "version": "0.6.7", - "dev": true, "license": "MIT", "dependencies": { "@wojtekmaj/enzyme-adapter-utils": "^0.1.4", @@ -8413,7 +8240,6 @@ }, "node_modules/@wojtekmaj/enzyme-adapter-utils": { "version": "0.1.4", - "dev": true, "license": "MIT", "dependencies": { "function.prototype.name": "^1.1.0", @@ -8427,7 +8253,6 @@ }, "node_modules/@wordpress/a11y": { "version": "3.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8440,7 +8265,6 @@ }, "node_modules/@wordpress/api-fetch": { "version": "5.2.7", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8453,7 +8277,6 @@ }, "node_modules/@wordpress/babel-plugin-import-jsx-pragma": { "version": "3.2.0", - "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -8464,7 +8287,6 @@ }, "node_modules/@wordpress/babel-preset-default": { "version": "6.17.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/core": "^7.16.0", @@ -8486,12 +8308,10 @@ }, "node_modules/@wordpress/base-styles": { "version": "4.9.0", - "dev": true, "license": "GPL-2.0-or-later" }, "node_modules/@wordpress/browserslist-config": { "version": "4.1.3", - "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -8499,7 +8319,6 @@ }, "node_modules/@wordpress/components": { "version": "19.17.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8553,12 +8372,10 @@ }, "node_modules/@wordpress/components/node_modules/@emotion/utils": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/@wordpress/components/node_modules/@wordpress/icons": { "version": "9.9.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8571,7 +8388,6 @@ }, "node_modules/@wordpress/compose": { "version": "5.16.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8598,7 +8414,6 @@ }, "node_modules/@wordpress/data": { "version": "7.2.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8625,12 +8440,10 @@ }, "node_modules/@wordpress/data/node_modules/is-promise": { "version": "4.0.0", - "dev": true, "license": "MIT" }, "node_modules/@wordpress/date": { "version": "4.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8644,7 +8457,6 @@ }, "node_modules/@wordpress/dependency-extraction-webpack-plugin": { "version": "3.7.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "json2php": "^0.0.4", @@ -8659,7 +8471,6 @@ }, "node_modules/@wordpress/deprecated": { "version": "3.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8688,7 +8499,6 @@ }, "node_modules/@wordpress/dom": { "version": "3.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8700,7 +8510,6 @@ }, "node_modules/@wordpress/dom-ready": { "version": "3.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8711,7 +8520,6 @@ }, "node_modules/@wordpress/e2e-test-utils": { "version": "7.11.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8733,7 +8541,6 @@ }, "node_modules/@wordpress/e2e-test-utils/node_modules/@wordpress/api-fetch": { "version": "6.15.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8746,7 +8553,6 @@ }, "node_modules/@wordpress/element": { "version": "4.16.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8764,7 +8570,6 @@ }, "node_modules/@wordpress/escape-html": { "version": "2.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8775,7 +8580,6 @@ }, "node_modules/@wordpress/eslint-plugin": { "version": "11.1.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/eslint-parser": "^7.16.0", @@ -8817,7 +8621,6 @@ }, "node_modules/@wordpress/hooks": { "version": "3.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8828,7 +8631,6 @@ }, "node_modules/@wordpress/i18n": { "version": "4.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8847,7 +8649,6 @@ }, "node_modules/@wordpress/icons": { "version": "6.3.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8860,7 +8661,6 @@ }, "node_modules/@wordpress/is-shallow-equal": { "version": "4.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0" @@ -8871,7 +8671,6 @@ }, "node_modules/@wordpress/jest-console": { "version": "5.4.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8886,7 +8685,6 @@ }, "node_modules/@wordpress/jest-preset-default": { "version": "8.5.2", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@wojtekmaj/enzyme-adapter-react-17": "^0.6.1", @@ -8907,7 +8705,6 @@ }, "node_modules/@wordpress/keycodes": { "version": "3.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8921,7 +8718,6 @@ }, "node_modules/@wordpress/npm-package-json-lint-config": { "version": "4.3.0", - "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=14" @@ -8932,7 +8728,6 @@ }, "node_modules/@wordpress/postcss-plugins-preset": { "version": "3.10.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@wordpress/base-styles": "^4.7.0", @@ -8947,7 +8742,6 @@ }, "node_modules/@wordpress/prettier-config": { "version": "1.4.0", - "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -8958,7 +8752,6 @@ }, "node_modules/@wordpress/primitives": { "version": "3.16.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8971,7 +8764,6 @@ }, "node_modules/@wordpress/priority-queue": { "version": "2.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -8983,7 +8775,6 @@ }, "node_modules/@wordpress/redux-routine": { "version": "4.18.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -9000,12 +8791,10 @@ }, "node_modules/@wordpress/redux-routine/node_modules/is-promise": { "version": "4.0.0", - "dev": true, "license": "MIT" }, "node_modules/@wordpress/rich-text": { "version": "5.16.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -9030,7 +8819,6 @@ }, "node_modules/@wordpress/scripts": { "version": "23.7.2", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/core": "^7.16.0", @@ -9103,7 +8891,6 @@ }, "node_modules/@wordpress/scripts/node_modules/@wordpress/eslint-plugin": { "version": "12.9.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/eslint-parser": "^7.16.0", @@ -9144,12 +8931,10 @@ }, "node_modules/@wordpress/scripts/node_modules/devtools-protocol": { "version": "0.0.981744", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/@wordpress/scripts/node_modules/jest": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", @@ -9174,7 +8959,6 @@ "node_modules/@wordpress/scripts/node_modules/prettier": { "name": "wp-prettier", "version": "2.6.2", - "dev": true, "license": "MIT", "bin": { "prettier": "bin-prettier.js" @@ -9188,7 +8972,6 @@ }, "node_modules/@wordpress/scripts/node_modules/puppeteer-core": { "version": "13.7.0", - "dev": true, "license": "Apache-2.0", "dependencies": { "cross-fetch": "3.1.5", @@ -9210,7 +8993,6 @@ }, "node_modules/@wordpress/scripts/node_modules/ws": { "version": "8.5.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" @@ -9230,7 +9012,6 @@ }, "node_modules/@wordpress/stylelint-config": { "version": "20.0.3", - "dev": true, "license": "MIT", "dependencies": { "stylelint-config-recommended": "^6.0.0", @@ -9245,7 +9026,6 @@ }, "node_modules/@wordpress/url": { "version": "3.19.0", - "dev": true, "license": "GPL-2.0-or-later", "dependencies": { "@babel/runtime": "^7.16.0", @@ -9257,7 +9037,6 @@ }, "node_modules/@wordpress/warning": { "version": "2.18.0", - "dev": true, "license": "GPL-2.0-or-later", "engines": { "node": ">=12" @@ -9265,12 +9044,10 @@ }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", - "dev": true, "license": "Apache-2.0" }, "node_modules/@yarnpkg/lockfile": { @@ -9328,7 +9105,6 @@ }, "node_modules/abab": { "version": "2.0.6", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/abbrev": { @@ -9338,7 +9114,6 @@ }, "node_modules/accepts": { "version": "1.3.8", - "dev": true, "license": "MIT", "dependencies": { "mime-types": "~2.1.34", @@ -9350,7 +9125,6 @@ }, "node_modules/acorn": { "version": "6.4.2", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -9361,7 +9135,6 @@ }, "node_modules/acorn-globals": { "version": "6.0.0", - "dev": true, "license": "MIT", "dependencies": { "acorn": "^7.1.1", @@ -9370,7 +9143,6 @@ }, "node_modules/acorn-globals/node_modules/acorn": { "version": "7.4.1", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -9381,7 +9153,6 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", - "dev": true, "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" @@ -9391,7 +9162,6 @@ "version": "1.8.2", "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dev": true, "dependencies": { "acorn": "^7.0.0", "acorn-walk": "^7.0.0", @@ -9402,7 +9172,6 @@ "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -9412,7 +9181,6 @@ }, "node_modules/acorn-walk": { "version": "7.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -9425,7 +9193,6 @@ }, "node_modules/adm-zip": { "version": "0.5.9", - "dev": true, "license": "MIT", "engines": { "node": ">=6.0" @@ -9433,7 +9200,6 @@ }, "node_modules/agent-base": { "version": "6.0.2", - "dev": true, "license": "MIT", "dependencies": { "debug": "4" @@ -9469,7 +9235,6 @@ }, "node_modules/ajv": { "version": "6.12.6", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -9484,7 +9249,6 @@ }, "node_modules/ajv-errors": { "version": "1.0.1", - "dev": true, "license": "MIT", "peerDependencies": { "ajv": ">=5.0.0" @@ -9492,7 +9256,6 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", - "dev": true, "license": "MIT", "dependencies": { "ajv": "^8.0.0" @@ -9508,7 +9271,6 @@ }, "node_modules/ajv-formats/node_modules/ajv": { "version": "8.11.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -9523,12 +9285,10 @@ }, "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/ajv-keywords": { "version": "3.5.2", - "dev": true, "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" @@ -9536,7 +9296,6 @@ }, "node_modules/alphanum-sort": { "version": "1.0.2", - "dev": true, "license": "MIT" }, "node_modules/ansi-colors": { @@ -9552,7 +9311,6 @@ }, "node_modules/ansi-escapes": { "version": "4.3.2", - "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.21.3" @@ -9577,7 +9335,6 @@ }, "node_modules/ansi-html-community": { "version": "0.0.8", - "dev": true, "engines": [ "node >= 0.8.0" ], @@ -9588,7 +9345,6 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9596,7 +9352,6 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", - "dev": true, "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -9618,7 +9373,6 @@ }, "node_modules/ansis": { "version": "1.4.0", - "dev": true, "license": "ISC", "engines": { "node": ">=12.13" @@ -9630,7 +9384,6 @@ }, "node_modules/anymatch": { "version": "3.1.2", - "dev": true, "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", @@ -9688,14 +9441,12 @@ }, "node_modules/argparse": { "version": "2.0.1", - "dev": true, "license": "Python-2.0" }, "node_modules/aria-query": { "version": "5.1.3", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, "dependencies": { "deep-equal": "^2.0.5" } @@ -9740,12 +9491,23 @@ }, "node_modules/arr-union": { "version": "3.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array-differ": { "version": "3.0.0", "dev": true, @@ -9764,7 +9526,6 @@ }, "node_modules/array-flatten": { "version": "1.1.1", - "dev": true, "license": "MIT" }, "node_modules/array-ify": { @@ -9774,7 +9535,6 @@ }, "node_modules/array-includes": { "version": "3.1.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9800,7 +9560,6 @@ }, "node_modules/array-union": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9808,7 +9567,6 @@ }, "node_modules/array-uniq": { "version": "1.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9824,7 +9582,6 @@ }, "node_modules/array.prototype.filter": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9842,7 +9599,6 @@ }, "node_modules/array.prototype.find": { "version": "2.2.0", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9856,7 +9612,6 @@ }, "node_modules/array.prototype.flat": { "version": "1.3.0", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9873,7 +9628,6 @@ }, "node_modules/array.prototype.flatmap": { "version": "1.3.0", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9890,7 +9644,6 @@ }, "node_modules/array.prototype.reduce": { "version": "1.0.4", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -9908,7 +9661,6 @@ }, "node_modules/arrify": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9923,7 +9675,6 @@ "version": "5.4.1", "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dev": true, "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", @@ -9934,14 +9685,12 @@ "node_modules/asn1.js/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/assert": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, "dependencies": { "object-assign": "^4.1.1", "util": "0.10.3" @@ -9950,14 +9699,12 @@ "node_modules/assert/node_modules/inherits": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", - "dev": true + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==" }, "node_modules/assert/node_modules/util": { "version": "0.10.3", "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", - "dev": true, "dependencies": { "inherits": "2.0.1" } @@ -9972,12 +9719,10 @@ }, "node_modules/ast-types-flow": { "version": "0.0.7", - "dev": true, "license": "ISC" }, "node_modules/astral-regex": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -9985,7 +9730,6 @@ }, "node_modules/async": { "version": "2.6.4", - "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.17.14" @@ -10013,8 +9757,7 @@ "node_modules/async-limiter": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", - "dev": true + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" }, "node_modules/async-settle": { "version": "1.0.0", @@ -10029,7 +9772,6 @@ }, "node_modules/asynckit": { "version": "0.4.0", - "dev": true, "license": "MIT" }, "node_modules/at-least-node": { @@ -10053,7 +9795,6 @@ }, "node_modules/autoprefixer": { "version": "10.4.12", - "dev": true, "funding": [ { "type": "opencollective", @@ -10087,7 +9828,6 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -10097,7 +9837,6 @@ }, "node_modules/axe-core": { "version": "4.4.3", - "dev": true, "license": "MPL-2.0", "engines": { "node": ">=4" @@ -10105,12 +9844,10 @@ }, "node_modules/axobject-query": { "version": "2.2.0", - "dev": true, "license": "Apache-2.0" }, "node_modules/babel-jest": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/transform": "^27.5.1", @@ -10131,7 +9868,6 @@ }, "node_modules/babel-loader": { "version": "8.2.5", - "dev": true, "license": "MIT", "dependencies": { "find-cache-dir": "^3.3.1", @@ -10149,7 +9885,6 @@ }, "node_modules/babel-loader/node_modules/schema-utils": { "version": "2.7.1", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.5", @@ -10166,7 +9901,6 @@ }, "node_modules/babel-plugin-dynamic-import-node": { "version": "2.3.3", - "dev": true, "license": "MIT", "dependencies": { "object.assign": "^4.1.0" @@ -10174,7 +9908,6 @@ }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", @@ -10189,7 +9922,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", - "dev": true, "license": "ISC", "dependencies": { "camelcase": "^5.3.1", @@ -10204,7 +9936,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/argparse": { "version": "1.0.10", - "dev": true, "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -10212,7 +9943,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/camelcase": { "version": "5.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -10220,7 +9950,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/js-yaml": { "version": "3.14.1", - "dev": true, "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -10232,7 +9961,6 @@ }, "node_modules/babel-plugin-istanbul/node_modules/resolve-from": { "version": "5.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -10240,12 +9968,10 @@ }, "node_modules/babel-plugin-istanbul/node_modules/sprintf-js": { "version": "1.0.3", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/babel-plugin-jest-hoist": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", @@ -10272,7 +9998,6 @@ }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.3.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.17.7", @@ -10285,7 +10010,6 @@ }, "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -10293,7 +10017,6 @@ }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.6.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3", @@ -10305,7 +10028,6 @@ }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.4.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3" @@ -10316,7 +10038,6 @@ }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -10338,7 +10059,6 @@ }, "node_modules/babel-preset-current-node-syntax/node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -10349,7 +10069,6 @@ }, "node_modules/babel-preset-current-node-syntax/node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -10360,7 +10079,6 @@ }, "node_modules/babel-preset-jest": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^27.5.1", @@ -10377,7 +10095,6 @@ "version": "10.0.0", "resolved": "https://registry.npmjs.org/babelify/-/babelify-10.0.0.tgz", "integrity": "sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg==", - "dev": true, "engines": { "node": ">=6.9.0" }, @@ -10446,12 +10163,10 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "dev": true, "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", - "dev": true, "funding": [ { "type": "github", @@ -10470,7 +10185,6 @@ }, "node_modules/batch": { "version": "0.6.1", - "dev": true, "license": "MIT" }, "node_modules/before-after-hook": { @@ -10480,7 +10194,6 @@ }, "node_modules/big.js": { "version": "5.2.2", - "dev": true, "license": "MIT", "engines": { "node": "*" @@ -10524,7 +10237,6 @@ }, "node_modules/binary-extensions": { "version": "2.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -10546,7 +10258,6 @@ }, "node_modules/bl": { "version": "4.1.0", - "dev": true, "license": "MIT", "dependencies": { "buffer": "^5.5.0", @@ -10556,7 +10267,6 @@ }, "node_modules/bl/node_modules/readable-stream": { "version": "3.6.0", - "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -10570,14 +10280,12 @@ "node_modules/bn.js": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", - "dev": true + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" }, "node_modules/body-parser": { "version": "1.18.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", "integrity": "sha512-YQyoqQG3sO8iCmf8+hyVpgHHOv0/hCEFiS4zTGUwTA1HjAFX66wRcNQrVCeJq9pgESMRvUAOvSil5MJlmccuKQ==", - "dev": true, "dependencies": { "bytes": "3.0.0", "content-type": "~1.0.4", @@ -10598,7 +10306,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -10607,7 +10314,6 @@ "version": "0.4.23", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -10618,17 +10324,14 @@ "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/body-scroll-lock": { "version": "3.1.5", - "dev": true, "license": "MIT" }, "node_modules/bonjour-service": { "version": "1.0.14", - "dev": true, "license": "MIT", "dependencies": { "array-flatten": "^2.1.2", @@ -10639,17 +10342,14 @@ }, "node_modules/bonjour-service/node_modules/array-flatten": { "version": "2.1.2", - "dev": true, "license": "MIT" }, "node_modules/boolbase": { "version": "1.0.0", - "dev": true, "license": "ISC" }, "node_modules/brace-expansion": { "version": "1.1.11", - "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", @@ -10658,7 +10358,6 @@ }, "node_modules/braces": { "version": "3.0.2", - "dev": true, "license": "MIT", "dependencies": { "fill-range": "^7.0.1" @@ -10669,20 +10368,17 @@ }, "node_modules/brcast": { "version": "2.0.2", - "dev": true, "license": "MIT" }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "dev": true + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" }, "node_modules/browser-pack": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz", "integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==", - "dev": true, "dependencies": { "combine-source-map": "~0.8.0", "defined": "^1.0.0", @@ -10697,14 +10393,12 @@ }, "node_modules/browser-process-hrtime": { "version": "1.0.0", - "dev": true, "license": "BSD-2-Clause" }, "node_modules/browser-resolve": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz", "integrity": "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==", - "dev": true, "dependencies": { "resolve": "^1.17.0" } @@ -10713,7 +10407,6 @@ "version": "17.0.0", "resolved": "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz", "integrity": "sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w==", - "dev": true, "dependencies": { "assert": "^1.4.0", "browser-pack": "^6.0.1", @@ -10775,7 +10468,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, "dependencies": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", @@ -10789,7 +10481,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, "dependencies": { "browserify-aes": "^1.0.4", "browserify-des": "^1.0.0", @@ -10800,7 +10491,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, "dependencies": { "cipher-base": "^1.0.1", "des.js": "^1.0.0", @@ -10812,7 +10502,6 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dev": true, "dependencies": { "bn.js": "^5.0.0", "randombytes": "^2.0.1" @@ -10822,7 +10511,6 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dev": true, "dependencies": { "bn.js": "^5.1.1", "browserify-rsa": "^4.0.1", @@ -10839,7 +10527,6 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -10853,7 +10540,6 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, "dependencies": { "pako": "~1.0.5" } @@ -10862,7 +10548,6 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", - "dev": true, "dependencies": { "base64-js": "^1.0.2", "ieee754": "^1.1.4" @@ -10900,7 +10585,6 @@ }, "node_modules/bser": { "version": "2.1.1", - "dev": true, "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" @@ -10908,7 +10592,6 @@ }, "node_modules/buffer": { "version": "5.7.1", - "dev": true, "funding": [ { "type": "github", @@ -10931,7 +10614,6 @@ }, "node_modules/buffer-crc32": { "version": "0.2.13", - "dev": true, "license": "MIT", "engines": { "node": "*" @@ -10947,20 +10629,17 @@ }, "node_modules/buffer-from": { "version": "1.1.2", - "dev": true, "license": "MIT" }, "node_modules/buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "dev": true + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" }, "node_modules/builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "dev": true + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" }, "node_modules/builtins": { "version": "1.0.3", @@ -10977,7 +10656,6 @@ }, "node_modules/bytes": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -11110,12 +10788,10 @@ "node_modules/cached-path-relative": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.1.0.tgz", - "integrity": "sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==", - "dev": true + "integrity": "sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==" }, "node_modules/call-bind": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.1", @@ -11127,7 +10803,6 @@ }, "node_modules/caller-callsite": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "callsites": "^2.0.0" @@ -11138,7 +10813,6 @@ }, "node_modules/caller-callsite/node_modules/callsites": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -11146,7 +10820,6 @@ }, "node_modules/caller-path": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "caller-callsite": "^2.0.0" @@ -11164,7 +10837,6 @@ }, "node_modules/camel-case": { "version": "4.1.2", - "dev": true, "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", @@ -11173,7 +10845,6 @@ }, "node_modules/camelcase": { "version": "6.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -11184,7 +10855,6 @@ }, "node_modules/camelcase-keys": { "version": "6.2.2", - "dev": true, "license": "MIT", "dependencies": { "camelcase": "^5.3.1", @@ -11200,7 +10870,6 @@ }, "node_modules/camelcase-keys/node_modules/camelcase": { "version": "5.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -11208,7 +10877,6 @@ }, "node_modules/caniuse-api": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -11219,7 +10887,6 @@ }, "node_modules/caniuse-api/node_modules/lodash.memoize": { "version": "4.1.2", - "dev": true, "license": "MIT" }, "node_modules/caniuse-lite": { @@ -11238,7 +10905,6 @@ }, "node_modules/capital-case": { "version": "1.0.4", - "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -11257,7 +10923,6 @@ }, "node_modules/chalk": { "version": "4.1.2", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -11272,7 +10937,6 @@ }, "node_modules/change-case": { "version": "4.1.2", - "dev": true, "license": "MIT", "dependencies": { "camel-case": "^4.1.2", @@ -11291,7 +10955,6 @@ }, "node_modules/char-regex": { "version": "1.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -11335,12 +10998,10 @@ }, "node_modules/chardet": { "version": "0.7.0", - "dev": true, "license": "MIT" }, "node_modules/check-node-version": { "version": "4.2.1", - "dev": true, "license": "Unlicense", "dependencies": { "chalk": "^3.0.0", @@ -11359,7 +11020,6 @@ }, "node_modules/check-node-version/node_modules/chalk": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -11371,7 +11031,6 @@ }, "node_modules/check-node-version/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -11379,7 +11038,6 @@ }, "node_modules/cheerio": { "version": "1.0.0-rc.12", - "dev": true, "license": "MIT", "dependencies": { "cheerio-select": "^2.1.0", @@ -11399,7 +11057,6 @@ }, "node_modules/cheerio-select": { "version": "2.1.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -11415,7 +11072,6 @@ }, "node_modules/chokidar": { "version": "3.5.3", - "dev": true, "funding": [ { "type": "individual", @@ -11441,7 +11097,6 @@ }, "node_modules/chokidar/node_modules/glob-parent": { "version": "5.1.2", - "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.1" @@ -11460,7 +11115,6 @@ }, "node_modules/chrome-trace-event": { "version": "1.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=6.0" @@ -11468,14 +11122,12 @@ }, "node_modules/ci-info": { "version": "3.4.0", - "dev": true, "license": "MIT" }, "node_modules/cipher-base": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -11483,7 +11135,6 @@ }, "node_modules/cjs-module-lexer": { "version": "1.2.2", - "dev": true, "license": "MIT" }, "node_modules/class-utils": { @@ -11508,7 +11159,6 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", - "dev": true, "dependencies": { "source-map": "~0.6.0" }, @@ -11520,7 +11170,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -11535,7 +11184,6 @@ }, "node_modules/clean-webpack-plugin": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/webpack": "^4.4.31", @@ -11550,7 +11198,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/@types/webpack": { "version": "4.41.32", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -11563,7 +11210,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/array-union": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "array-uniq": "^1.0.1" @@ -11574,7 +11220,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/del": { "version": "4.1.1", - "dev": true, "license": "MIT", "dependencies": { "@types/glob": "^7.1.1", @@ -11591,7 +11236,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/globby": { "version": "6.1.0", - "dev": true, "license": "MIT", "dependencies": { "array-union": "^1.0.1", @@ -11606,7 +11250,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/globby/node_modules/pify": { "version": "2.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -11614,7 +11257,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/p-map": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -11622,7 +11264,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/rimraf": { "version": "2.7.1", - "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -11633,7 +11274,6 @@ }, "node_modules/clean-webpack-plugin/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -11641,7 +11281,6 @@ }, "node_modules/cli-cursor": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" @@ -11652,7 +11291,6 @@ }, "node_modules/cli-spinners": { "version": "2.6.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -11663,7 +11301,6 @@ }, "node_modules/cli-width": { "version": "3.0.0", - "dev": true, "license": "ISC", "engines": { "node": ">= 10" @@ -11671,7 +11308,6 @@ }, "node_modules/clipboard": { "version": "2.0.11", - "dev": true, "license": "MIT", "dependencies": { "good-listener": "^1.2.2", @@ -11697,7 +11333,6 @@ }, "node_modules/clone-deep": { "version": "0.2.4", - "dev": true, "license": "MIT", "dependencies": { "for-own": "^0.1.3", @@ -11712,7 +11347,6 @@ }, "node_modules/clone-deep/node_modules/for-own": { "version": "0.1.5", - "dev": true, "license": "MIT", "dependencies": { "for-in": "^1.0.1" @@ -11723,7 +11357,6 @@ }, "node_modules/clone-deep/node_modules/is-plain-object": { "version": "2.0.4", - "dev": true, "license": "MIT", "dependencies": { "isobject": "^3.0.1" @@ -11760,7 +11393,6 @@ }, "node_modules/co": { "version": "4.6.0", - "dev": true, "license": "MIT", "engines": { "iojs": ">= 1.0.0", @@ -11769,7 +11401,6 @@ }, "node_modules/coa": { "version": "2.0.2", - "dev": true, "license": "MIT", "dependencies": { "@types/q": "^1.5.1", @@ -11782,7 +11413,6 @@ }, "node_modules/coa/node_modules/ansi-styles": { "version": "3.2.1", - "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -11793,7 +11423,6 @@ }, "node_modules/coa/node_modules/chalk": { "version": "2.4.2", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -11806,7 +11435,6 @@ }, "node_modules/coa/node_modules/color-convert": { "version": "1.9.3", - "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -11814,12 +11442,10 @@ }, "node_modules/coa/node_modules/color-name": { "version": "1.1.3", - "dev": true, "license": "MIT" }, "node_modules/coa/node_modules/escape-string-regexp": { "version": "1.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -11827,7 +11453,6 @@ }, "node_modules/coa/node_modules/has-flag": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -11835,7 +11460,6 @@ }, "node_modules/coa/node_modules/supports-color": { "version": "5.5.0", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -11863,7 +11487,6 @@ }, "node_modules/collect-v8-coverage": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/collection-map": { @@ -11893,7 +11516,6 @@ }, "node_modules/color": { "version": "3.2.1", - "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.3", @@ -11902,7 +11524,6 @@ }, "node_modules/color-convert": { "version": "2.0.1", - "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -11913,12 +11534,10 @@ }, "node_modules/color-name": { "version": "1.1.4", - "dev": true, "license": "MIT" }, "node_modules/color-string": { "version": "1.9.1", - "dev": true, "license": "MIT", "dependencies": { "color-name": "^1.0.0", @@ -11935,7 +11554,6 @@ }, "node_modules/color/node_modules/color-convert": { "version": "1.9.3", - "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -11943,29 +11561,24 @@ }, "node_modules/color/node_modules/color-name": { "version": "1.1.3", - "dev": true, "license": "MIT" }, "node_modules/colord": { "version": "2.9.3", - "dev": true, "license": "MIT" }, "node_modules/colorette": { "version": "2.0.19", - "dev": true, "license": "MIT" }, "node_modules/colors": { "version": "0.6.2", - "dev": true, "engines": { "node": ">=0.1.90" } }, "node_modules/columnify": { "version": "1.6.0", - "dev": true, "license": "MIT", "dependencies": { "strip-ansi": "^6.0.1", @@ -11979,7 +11592,6 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", "integrity": "sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg==", - "dev": true, "dependencies": { "convert-source-map": "~1.1.0", "inline-source-map": "~0.6.0", @@ -11989,7 +11601,6 @@ }, "node_modules/combined-stream": { "version": "1.0.8", - "dev": true, "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" @@ -12000,7 +11611,6 @@ }, "node_modules/commander": { "version": "8.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 12" @@ -12021,12 +11631,10 @@ }, "node_modules/common-path-prefix": { "version": "3.0.0", - "dev": true, "license": "ISC" }, "node_modules/commondir": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/component-emitter": { @@ -12036,7 +11644,6 @@ }, "node_modules/compressible": { "version": "2.0.18", - "dev": true, "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" @@ -12047,7 +11654,6 @@ }, "node_modules/compression": { "version": "1.7.4", - "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.5", @@ -12064,7 +11670,6 @@ }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", - "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -12072,27 +11677,22 @@ }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/compression/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, "license": "MIT" }, "node_modules/compute-scroll-into-view": { "version": "1.0.17", - "dev": true, "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", - "dev": true, "license": "MIT" }, "node_modules/concat-stream": { "version": "1.6.2", - "dev": true, "engines": [ "node >= 0.8" ], @@ -12106,7 +11706,6 @@ }, "node_modules/concat-stream/node_modules/typedarray": { "version": "0.0.6", - "dev": true, "license": "MIT" }, "node_modules/config-chain": { @@ -12125,7 +11724,6 @@ }, "node_modules/connect-history-api-fallback": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8" @@ -12134,8 +11732,7 @@ "node_modules/console-browserify": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" }, "node_modules/console-control-strings": { "version": "1.1.0", @@ -12144,12 +11741,10 @@ }, "node_modules/consolidated-events": { "version": "2.0.2", - "dev": true, "license": "MIT" }, "node_modules/constant-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -12160,21 +11755,18 @@ "node_modules/constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", - "dev": true + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" }, "node_modules/content-disposition": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", - "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.4", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -12235,21 +11827,18 @@ "node_modules/convert-source-map": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", - "integrity": "sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==", - "dev": true + "integrity": "sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==" }, "node_modules/cookie": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==", - "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", - "dev": true, "license": "MIT" }, "node_modules/copy-descriptor": { @@ -12291,7 +11880,6 @@ }, "node_modules/copy-webpack-plugin": { "version": "10.2.4", - "dev": true, "license": "MIT", "dependencies": { "fast-glob": "^3.2.7", @@ -12314,7 +11902,6 @@ }, "node_modules/copy-webpack-plugin/node_modules/ajv": { "version": "8.11.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -12329,7 +11916,6 @@ }, "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -12340,7 +11926,6 @@ }, "node_modules/copy-webpack-plugin/node_modules/array-union": { "version": "3.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -12351,7 +11936,6 @@ }, "node_modules/copy-webpack-plugin/node_modules/globby": { "version": "12.2.0", - "dev": true, "license": "MIT", "dependencies": { "array-union": "^3.0.1", @@ -12370,12 +11954,10 @@ }, "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/copy-webpack-plugin/node_modules/schema-utils": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -12393,7 +11975,6 @@ }, "node_modules/copy-webpack-plugin/node_modules/slash": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -12404,7 +11985,6 @@ }, "node_modules/core-js": { "version": "3.25.5", - "dev": true, "hasInstallScript": true, "license": "MIT", "funding": { @@ -12414,7 +11994,6 @@ }, "node_modules/core-js-compat": { "version": "3.25.5", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.21.4" @@ -12426,7 +12005,6 @@ }, "node_modules/core-js-pure": { "version": "3.25.5", - "dev": true, "hasInstallScript": true, "license": "MIT", "funding": { @@ -12436,7 +12014,6 @@ }, "node_modules/core-util-is": { "version": "1.0.3", - "dev": true, "license": "MIT" }, "node_modules/cosmiconfig": { @@ -12464,7 +12041,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dev": true, "dependencies": { "bn.js": "^4.1.0", "elliptic": "^6.5.3" @@ -12473,14 +12049,12 @@ "node_modules/create-ecdh/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/create-hash": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", @@ -12493,7 +12067,6 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, "dependencies": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", @@ -12505,7 +12078,6 @@ }, "node_modules/cross-fetch": { "version": "3.1.5", - "dev": true, "license": "MIT", "dependencies": { "node-fetch": "2.6.7" @@ -12513,7 +12085,6 @@ }, "node_modules/cross-spawn": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "lru-cache": "^4.0.1", @@ -12523,7 +12094,6 @@ }, "node_modules/cross-spawn/node_modules/lru-cache": { "version": "4.1.5", - "dev": true, "license": "ISC", "dependencies": { "pseudomap": "^1.0.2", @@ -12532,14 +12102,12 @@ }, "node_modules/cross-spawn/node_modules/yallist": { "version": "2.1.2", - "dev": true, "license": "ISC" }, "node_modules/crypto-browserify": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, "dependencies": { "browserify-cipher": "^1.0.0", "browserify-sign": "^4.0.0", @@ -12559,7 +12127,6 @@ }, "node_modules/css-color-names": { "version": "0.0.4", - "dev": true, "license": "MIT", "engines": { "node": "*" @@ -12567,7 +12134,6 @@ }, "node_modules/css-declaration-sorter": { "version": "6.3.1", - "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >=14" @@ -12578,7 +12144,6 @@ }, "node_modules/css-functions-list": { "version": "3.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=12.22" @@ -12586,7 +12151,6 @@ }, "node_modules/css-loader": { "version": "6.7.1", - "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", @@ -12611,7 +12175,6 @@ }, "node_modules/css-select": { "version": "5.1.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -12626,14 +12189,12 @@ }, "node_modules/css-select-base-adapter": { "version": "0.1.1", - "dev": true, "license": "MIT" }, "node_modules/css-tree": { "version": "1.0.0-alpha.28", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz", "integrity": "sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==", - "dev": true, "dependencies": { "mdn-data": "~1.1.0", "source-map": "^0.5.3" @@ -12644,7 +12205,6 @@ }, "node_modules/css-what": { "version": "6.1.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -12655,12 +12215,10 @@ }, "node_modules/css-xpath": { "version": "1.0.0", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/cssesc": { "version": "3.0.0", - "dev": true, "license": "MIT", "bin": { "cssesc": "bin/cssesc" @@ -12671,7 +12229,6 @@ }, "node_modules/cssnano": { "version": "5.1.13", - "dev": true, "license": "MIT", "dependencies": { "cssnano-preset-default": "^5.2.12", @@ -12691,7 +12248,6 @@ }, "node_modules/cssnano-preset-default": { "version": "5.2.12", - "dev": true, "license": "MIT", "dependencies": { "css-declaration-sorter": "^6.3.0", @@ -12733,7 +12289,6 @@ }, "node_modules/cssnano-util-get-arguments": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -12741,7 +12296,6 @@ }, "node_modules/cssnano-util-get-match": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -12749,7 +12303,6 @@ }, "node_modules/cssnano-util-raw-cache": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -12760,12 +12313,10 @@ }, "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { "version": "0.2.1", - "dev": true, "license": "ISC" }, "node_modules/cssnano-util-raw-cache/node_modules/postcss": { "version": "7.0.39", - "dev": true, "license": "MIT", "dependencies": { "picocolors": "^0.2.1", @@ -12781,7 +12332,6 @@ }, "node_modules/cssnano-util-raw-cache/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -12789,7 +12339,6 @@ }, "node_modules/cssnano-util-same-parent": { "version": "4.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -12797,7 +12346,6 @@ }, "node_modules/cssnano-utils": { "version": "3.1.0", - "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -12808,7 +12356,6 @@ }, "node_modules/cssnano/node_modules/yaml": { "version": "1.10.2", - "dev": true, "license": "ISC", "engines": { "node": ">= 6" @@ -12818,7 +12365,6 @@ "version": "3.5.1", "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", - "dev": true, "dependencies": { "css-tree": "1.0.0-alpha.29" }, @@ -12830,7 +12376,6 @@ "version": "1.0.0-alpha.29", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", - "dev": true, "dependencies": { "mdn-data": "~1.1.0", "source-map": "^0.5.3" @@ -12841,12 +12386,10 @@ }, "node_modules/cssom": { "version": "0.4.4", - "dev": true, "license": "MIT" }, "node_modules/cssstyle": { "version": "2.3.0", - "dev": true, "license": "MIT", "dependencies": { "cssom": "~0.3.6" @@ -12857,7 +12400,6 @@ }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", - "dev": true, "license": "MIT" }, "node_modules/csstype": { @@ -12866,7 +12408,6 @@ }, "node_modules/cwd": { "version": "0.10.0", - "dev": true, "license": "MIT", "dependencies": { "find-pkg": "^0.1.2", @@ -12938,7 +12479,6 @@ }, "node_modules/damerau-levenshtein": { "version": "1.0.8", - "dev": true, "license": "BSD-2-Clause" }, "node_modules/dargs": { @@ -12952,12 +12492,10 @@ "node_modules/dash-ast": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz", - "integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==", - "dev": true + "integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==" }, "node_modules/data-urls": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "abab": "^2.0.3", @@ -12970,7 +12508,6 @@ }, "node_modules/data-urls/node_modules/webidl-conversions": { "version": "6.1.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=10.4" @@ -12978,7 +12515,6 @@ }, "node_modules/data-urls/node_modules/whatwg-url": { "version": "8.7.0", - "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.7.0", @@ -13022,7 +12558,6 @@ }, "node_modules/decamelize": { "version": "1.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -13030,7 +12565,6 @@ }, "node_modules/decamelize-keys": { "version": "1.1.0", - "dev": true, "license": "MIT", "dependencies": { "decamelize": "^1.1.0", @@ -13042,7 +12576,6 @@ }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -13050,7 +12583,6 @@ }, "node_modules/decimal.js": { "version": "10.4.1", - "dev": true, "license": "MIT" }, "node_modules/decode-uri-component": { @@ -13063,20 +12595,19 @@ }, "node_modules/dedent": { "version": "0.7.0", - "dev": true, "license": "MIT" }, "node_modules/deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", - "dev": true, + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", "dependencies": { + "array-buffer-byte-length": "^1.0.0", "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", + "is-array-buffer": "^3.0.2", "is-date-object": "^1.0.5", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", @@ -13084,7 +12615,7 @@ "object-is": "^1.1.5", "object-keys": "^1.1.1", "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", + "regexp.prototype.flags": "^1.5.0", "side-channel": "^1.0.4", "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", @@ -13097,12 +12628,10 @@ "node_modules/deep-equal/node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/deep-extend": { "version": "0.6.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4.0.0" @@ -13110,12 +12639,10 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "dev": true, "license": "MIT" }, "node_modules/deepmerge": { "version": "4.2.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -13123,7 +12650,6 @@ }, "node_modules/default-gateway": { "version": "6.0.3", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" @@ -13142,16 +12668,15 @@ }, "node_modules/define-lazy-prop": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/define-properties": { - "version": "1.1.4", - "dev": true, - "license": "MIT", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dependencies": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" @@ -13221,14 +12746,12 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/delayed-stream": { "version": "1.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -13236,7 +12759,6 @@ }, "node_modules/delegate": { "version": "3.2.0", - "dev": true, "license": "MIT" }, "node_modules/delegates": { @@ -13246,7 +12768,6 @@ }, "node_modules/depd": { "version": "1.1.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -13261,7 +12782,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz", "integrity": "sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==", - "dev": true, "dependencies": { "JSONStream": "^1.0.3", "shasum-object": "^1.0.0", @@ -13273,10 +12793,9 @@ } }, "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dev": true, + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", "dependencies": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" @@ -13285,8 +12804,7 @@ "node_modules/destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", - "dev": true + "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" }, "node_modules/detect-file": { "version": "1.0.0", @@ -13314,14 +12832,12 @@ }, "node_modules/detect-node": { "version": "2.1.0", - "dev": true, "license": "MIT" }, "node_modules/detective": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "dev": true, "dependencies": { "acorn-node": "^1.8.2", "defined": "^1.0.0", @@ -13336,7 +12852,6 @@ }, "node_modules/devtools-protocol": { "version": "0.0.1036444", - "dev": true, "license": "BSD-3-Clause", "peer": true }, @@ -13351,7 +12866,6 @@ }, "node_modules/diff-sequences": { "version": "27.5.1", - "dev": true, "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -13361,7 +12875,6 @@ "version": "5.0.3", "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, "dependencies": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", @@ -13371,12 +12884,10 @@ "node_modules/diffie-hellman/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/dir-glob": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "path-type": "^4.0.0" @@ -13387,7 +12898,6 @@ }, "node_modules/direction": { "version": "1.0.4", - "dev": true, "license": "MIT", "bin": { "direction": "cli.js" @@ -13399,17 +12909,14 @@ }, "node_modules/discontinuous-range": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/dns-equal": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/dns-packet": { "version": "5.4.0", - "dev": true, "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" @@ -13420,7 +12927,6 @@ }, "node_modules/doctrine": { "version": "3.0.0", - "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" @@ -13431,7 +12937,6 @@ }, "node_modules/document.contains": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.3" @@ -13443,12 +12948,10 @@ "node_modules/dom-accessibility-api": { "version": "0.5.16", "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" }, "node_modules/dom-helpers": { "version": "5.2.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.7", @@ -13457,12 +12960,10 @@ }, "node_modules/dom-scroll-into-view": { "version": "1.2.1", - "dev": true, "license": "MIT" }, "node_modules/dom-serializer": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", @@ -13477,7 +12978,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true, "engines": { "node": ">=0.4", "npm": ">=1.2" @@ -13485,7 +12985,6 @@ }, "node_modules/domelementtype": { "version": "2.3.0", - "dev": true, "funding": [ { "type": "github", @@ -13496,7 +12995,6 @@ }, "node_modules/domexception": { "version": "2.0.1", - "dev": true, "license": "MIT", "dependencies": { "webidl-conversions": "^5.0.0" @@ -13507,7 +13005,6 @@ }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=8" @@ -13515,7 +13012,6 @@ }, "node_modules/domhandler": { "version": "5.0.3", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" @@ -13529,7 +13025,6 @@ }, "node_modules/domutils": { "version": "3.0.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", @@ -13542,7 +13037,6 @@ }, "node_modules/dot-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -13565,7 +13059,6 @@ }, "node_modules/dotenv": { "version": "8.6.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=10" @@ -13573,7 +13066,6 @@ }, "node_modules/downshift": { "version": "6.1.12", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.14.8", @@ -13588,21 +13080,18 @@ }, "node_modules/duplexer": { "version": "0.1.2", - "dev": true, "license": "MIT" }, "node_modules/duplexer2": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "dev": true, "dependencies": { "readable-stream": "^2.0.2" } }, "node_modules/ee-first": { "version": "1.1.1", - "dev": true, "license": "MIT" }, "node_modules/electron-to-chromium": { @@ -13613,7 +13102,6 @@ "version": "6.5.4", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dev": true, "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -13627,12 +13115,10 @@ "node_modules/elliptic/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/emittery": { "version": "0.8.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -13643,12 +13129,10 @@ }, "node_modules/emoji-regex": { "version": "8.0.0", - "dev": true, "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -13656,7 +13140,6 @@ }, "node_modules/encodeurl": { "version": "1.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -13664,7 +13147,6 @@ }, "node_modules/encoding": { "version": "0.1.13", - "dev": true, "license": "MIT", "dependencies": { "iconv-lite": "^0.6.2" @@ -13672,7 +13154,6 @@ }, "node_modules/encoding/node_modules/iconv-lite": { "version": "0.6.3", - "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -13683,7 +13164,6 @@ }, "node_modules/end-of-stream": { "version": "1.4.4", - "dev": true, "license": "MIT", "dependencies": { "once": "^1.4.0" @@ -13691,7 +13171,6 @@ }, "node_modules/enhanced-resolve": { "version": "5.10.0", - "dev": true, "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", @@ -13722,7 +13201,6 @@ }, "node_modules/entities": { "version": "4.4.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -13741,7 +13219,6 @@ }, "node_modules/envinfo": { "version": "7.8.1", - "dev": true, "license": "MIT", "bin": { "envinfo": "dist/cli.js" @@ -13752,7 +13229,6 @@ }, "node_modules/enzyme": { "version": "3.11.0", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.flat": "^1.2.3", @@ -13784,7 +13260,6 @@ }, "node_modules/enzyme-shallow-equal": { "version": "1.0.4", - "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.3", @@ -13796,7 +13271,6 @@ }, "node_modules/enzyme-to-json": { "version": "3.6.2", - "dev": true, "license": "MIT", "dependencies": { "@types/cheerio": "^0.22.22", @@ -13812,12 +13286,10 @@ }, "node_modules/enzyme-to-json/node_modules/react-is": { "version": "16.13.1", - "dev": true, "license": "MIT" }, "node_modules/equivalent-key-map": { "version": "0.2.2", - "dev": true, "license": "MIT" }, "node_modules/err-code": { @@ -13834,7 +13306,6 @@ }, "node_modules/error-stack-parser": { "version": "2.1.4", - "dev": true, "license": "MIT", "dependencies": { "stackframe": "^1.3.4" @@ -13842,7 +13313,6 @@ }, "node_modules/es-abstract": { "version": "1.20.3", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -13879,14 +13349,12 @@ }, "node_modules/es-array-method-boxes-properly": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/es-get-iterator": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", @@ -13905,17 +13373,14 @@ "node_modules/es-get-iterator/node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { "version": "0.9.3", - "dev": true, "license": "MIT" }, "node_modules/es-shim-unscopables": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.3" @@ -13923,7 +13388,6 @@ }, "node_modules/es-to-primitive": { "version": "1.2.1", - "dev": true, "license": "MIT", "dependencies": { "is-callable": "^1.1.4", @@ -13940,14 +13404,12 @@ "node_modules/es6-promise": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", - "dev": true + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" }, "node_modules/es6-promisify": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", - "dev": true, "dependencies": { "es6-promise": "^4.0.3" } @@ -14018,7 +13480,6 @@ }, "node_modules/escape-html": { "version": "1.0.3", - "dev": true, "license": "MIT" }, "node_modules/escape-string-regexp": { @@ -14033,7 +13494,6 @@ }, "node_modules/escodegen": { "version": "2.0.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", @@ -14054,7 +13514,6 @@ }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "optional": true, "engines": { @@ -14063,7 +13522,6 @@ }, "node_modules/eslint": { "version": "8.24.0", - "dev": true, "license": "MIT", "dependencies": { "@eslint/eslintrc": "^1.3.2", @@ -14118,7 +13576,6 @@ }, "node_modules/eslint-config-prettier": { "version": "8.5.0", - "dev": true, "license": "MIT", "bin": { "eslint-config-prettier": "bin/cli.js" @@ -14129,7 +13586,6 @@ }, "node_modules/eslint-import-resolver-node": { "version": "0.3.6", - "dev": true, "license": "MIT", "dependencies": { "debug": "^3.2.7", @@ -14138,7 +13594,6 @@ }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", - "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.1" @@ -14146,7 +13601,6 @@ }, "node_modules/eslint-module-utils": { "version": "2.7.4", - "dev": true, "license": "MIT", "dependencies": { "debug": "^3.2.7" @@ -14162,7 +13616,6 @@ }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", - "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.1" @@ -14170,7 +13623,6 @@ }, "node_modules/eslint-plugin-import": { "version": "2.26.0", - "dev": true, "license": "MIT", "dependencies": { "array-includes": "^3.1.4", @@ -14196,7 +13648,6 @@ }, "node_modules/eslint-plugin-import/node_modules/debug": { "version": "2.6.9", - "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -14204,7 +13655,6 @@ }, "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", - "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" @@ -14215,12 +13665,10 @@ }, "node_modules/eslint-plugin-import/node_modules/ms": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/eslint-plugin-jest": { "version": "25.7.0", - "dev": true, "license": "MIT", "dependencies": { "@typescript-eslint/experimental-utils": "^5.0.0" @@ -14243,7 +13691,6 @@ }, "node_modules/eslint-plugin-jsdoc": { "version": "37.9.7", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@es-joy/jsdoccomment": "~0.20.1", @@ -14264,7 +13711,6 @@ }, "node_modules/eslint-plugin-jsdoc/node_modules/comment-parser": { "version": "1.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 12.0.0" @@ -14272,7 +13718,6 @@ }, "node_modules/eslint-plugin-jsx-a11y": { "version": "6.6.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.18.9", @@ -14298,7 +13743,6 @@ }, "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { "version": "4.2.2", - "dev": true, "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.10.2", @@ -14310,12 +13754,10 @@ }, "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { "version": "9.2.2", - "dev": true, "license": "MIT" }, "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -14323,7 +13765,6 @@ }, "node_modules/eslint-plugin-playwright": { "version": "0.8.0", - "dev": true, "license": "MIT", "peerDependencies": { "eslint": ">=7", @@ -14337,7 +13778,6 @@ }, "node_modules/eslint-plugin-prettier": { "version": "3.4.1", - "dev": true, "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0" @@ -14357,7 +13797,6 @@ }, "node_modules/eslint-plugin-react": { "version": "7.31.8", - "dev": true, "license": "MIT", "dependencies": { "array-includes": "^3.1.5", @@ -14384,7 +13823,6 @@ }, "node_modules/eslint-plugin-react-hooks": { "version": "4.6.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -14395,7 +13833,6 @@ }, "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", - "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" @@ -14406,7 +13843,6 @@ }, "node_modules/eslint-plugin-react/node_modules/resolve": { "version": "2.0.0-next.4", - "dev": true, "license": "MIT", "dependencies": { "is-core-module": "^2.9.0", @@ -14422,7 +13858,6 @@ }, "node_modules/eslint-plugin-react/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -14430,7 +13865,6 @@ }, "node_modules/eslint-scope": { "version": "5.1.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", @@ -14442,7 +13876,6 @@ }, "node_modules/eslint-scope/node_modules/estraverse": { "version": "4.3.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=4.0" @@ -14450,7 +13883,6 @@ }, "node_modules/eslint-utils": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "eslint-visitor-keys": "^2.0.0" @@ -14467,7 +13899,6 @@ }, "node_modules/eslint-visitor-keys": { "version": "2.1.0", - "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10" @@ -14475,7 +13906,6 @@ }, "node_modules/eslint/node_modules/cross-spawn": { "version": "7.0.3", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -14488,7 +13918,6 @@ }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.1.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", @@ -14500,7 +13929,6 @@ }, "node_modules/eslint/node_modules/eslint-visitor-keys": { "version": "3.3.0", - "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -14508,7 +13936,6 @@ }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "locate-path": "^6.0.0", @@ -14523,7 +13950,6 @@ }, "node_modules/eslint/node_modules/levn": { "version": "0.4.1", - "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", @@ -14535,7 +13961,6 @@ }, "node_modules/eslint/node_modules/locate-path": { "version": "6.0.0", - "dev": true, "license": "MIT", "dependencies": { "p-locate": "^5.0.0" @@ -14549,7 +13974,6 @@ }, "node_modules/eslint/node_modules/optionator": { "version": "0.9.1", - "dev": true, "license": "MIT", "dependencies": { "deep-is": "^0.1.3", @@ -14565,7 +13989,6 @@ }, "node_modules/eslint/node_modules/p-limit": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" @@ -14579,7 +14002,6 @@ }, "node_modules/eslint/node_modules/p-locate": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "p-limit": "^3.0.2" @@ -14593,7 +14015,6 @@ }, "node_modules/eslint/node_modules/prelude-ls": { "version": "1.2.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8.0" @@ -14601,7 +14022,6 @@ }, "node_modules/eslint/node_modules/shebang-command": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -14612,7 +14032,6 @@ }, "node_modules/eslint/node_modules/shebang-regex": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -14620,7 +14039,6 @@ }, "node_modules/eslint/node_modules/type-check": { "version": "0.4.0", - "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" @@ -14631,7 +14049,6 @@ }, "node_modules/eslint/node_modules/which": { "version": "2.0.2", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -14645,7 +14062,6 @@ }, "node_modules/espree": { "version": "9.4.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.8.0", @@ -14661,7 +14077,6 @@ }, "node_modules/espree/node_modules/acorn": { "version": "8.8.0", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -14672,7 +14087,6 @@ }, "node_modules/espree/node_modules/eslint-visitor-keys": { "version": "3.3.0", - "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -14680,7 +14094,6 @@ }, "node_modules/esprima": { "version": "4.0.1", - "dev": true, "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", @@ -14692,7 +14105,6 @@ }, "node_modules/esquery": { "version": "1.4.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" @@ -14703,7 +14115,6 @@ }, "node_modules/esrecurse": { "version": "4.3.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" @@ -14714,7 +14125,6 @@ }, "node_modules/estraverse": { "version": "5.3.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=4.0" @@ -14722,7 +14132,6 @@ }, "node_modules/esutils": { "version": "2.0.3", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" @@ -14730,7 +14139,6 @@ }, "node_modules/etag": { "version": "1.8.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -14793,12 +14201,10 @@ }, "node_modules/eventemitter3": { "version": "4.0.7", - "dev": true, "license": "MIT" }, "node_modules/events": { "version": "3.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.x" @@ -14808,7 +14214,6 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, "dependencies": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" @@ -14816,7 +14221,6 @@ }, "node_modules/execa": { "version": "5.1.1", - "dev": true, "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", @@ -14838,7 +14242,6 @@ }, "node_modules/execa/node_modules/cross-spawn": { "version": "7.0.3", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -14851,7 +14254,6 @@ }, "node_modules/execa/node_modules/human-signals": { "version": "2.1.0", - "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10.17.0" @@ -14859,7 +14261,6 @@ }, "node_modules/execa/node_modules/shebang-command": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -14870,7 +14271,6 @@ }, "node_modules/execa/node_modules/shebang-regex": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -14878,7 +14278,6 @@ }, "node_modules/execa/node_modules/which": { "version": "2.0.2", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -14892,14 +14291,12 @@ }, "node_modules/exit": { "version": "0.1.2", - "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/expand-tilde": { "version": "1.2.2", - "dev": true, "license": "MIT", "dependencies": { "os-homedir": "^1.0.1" @@ -14910,7 +14307,6 @@ }, "node_modules/expect": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -14924,14 +14320,12 @@ }, "node_modules/expect-puppeteer": { "version": "4.4.0", - "dev": true, "license": "MIT" }, "node_modules/express": { "version": "4.16.4", "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", - "dev": true, "dependencies": { "accepts": "~1.3.5", "array-flatten": "1.1.1", @@ -14971,14 +14365,12 @@ "node_modules/express-history-api-fallback": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/express-history-api-fallback/-/express-history-api-fallback-2.2.1.tgz", - "integrity": "sha512-swxwm3aP8vrOOvlzOdZvHlSZtJGwHKaY94J6AkrAgCTmcbko3IRwbkhLv2wKV1WeZhjxX58aLMpP3atDBnKuZg==", - "dev": true + "integrity": "sha512-swxwm3aP8vrOOvlzOdZvHlSZtJGwHKaY94J6AkrAgCTmcbko3IRwbkhLv2wKV1WeZhjxX58aLMpP3atDBnKuZg==" }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -14986,14 +14378,12 @@ "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/express/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "node_modules/extend": { "version": "3.0.2", @@ -15036,7 +14426,6 @@ }, "node_modules/external-editor": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "chardet": "^0.7.0", @@ -15049,7 +14438,6 @@ }, "node_modules/external-editor/node_modules/tmp": { "version": "0.0.33", - "dev": true, "license": "MIT", "dependencies": { "os-tmpdir": "~1.0.2" @@ -15060,7 +14448,6 @@ }, "node_modules/extract-zip": { "version": "2.0.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", @@ -15079,7 +14466,6 @@ }, "node_modules/extract-zip/node_modules/get-stream": { "version": "5.2.0", - "dev": true, "license": "MIT", "dependencies": { "pump": "^3.0.0" @@ -15107,17 +14493,14 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "dev": true, "license": "MIT" }, "node_modules/fast-diff": { "version": "1.2.0", - "dev": true, "license": "Apache-2.0" }, "node_modules/fast-glob": { "version": "3.2.12", - "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -15132,7 +14515,6 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", - "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.1" @@ -15143,23 +14525,19 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "dev": true, "license": "MIT" }, "node_modules/fast-safe-stringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", - "dev": true + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" }, "node_modules/fastest-levenshtein": { "version": "1.0.16", - "dev": true, "license": "MIT", "engines": { "node": ">= 4.9.1" @@ -15167,7 +14545,6 @@ }, "node_modules/fastq": { "version": "1.13.0", - "dev": true, "license": "ISC", "dependencies": { "reusify": "^1.0.4" @@ -15175,7 +14552,6 @@ }, "node_modules/faye-websocket": { "version": "0.11.4", - "dev": true, "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" @@ -15186,7 +14562,6 @@ }, "node_modules/fb-watchman": { "version": "2.0.2", - "dev": true, "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" @@ -15194,7 +14569,6 @@ }, "node_modules/fd-slicer": { "version": "1.1.0", - "dev": true, "license": "MIT", "dependencies": { "pend": "~1.2.0" @@ -15202,7 +14576,6 @@ }, "node_modules/figures": { "version": "3.2.0", - "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" @@ -15216,7 +14589,6 @@ }, "node_modules/figures/node_modules/escape-string-regexp": { "version": "1.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -15224,7 +14596,6 @@ }, "node_modules/file-entry-cache": { "version": "6.0.1", - "dev": true, "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" @@ -15241,7 +14612,6 @@ }, "node_modules/filename-reserved-regex": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -15249,7 +14619,6 @@ }, "node_modules/filenamify": { "version": "4.3.0", - "dev": true, "license": "MIT", "dependencies": { "filename-reserved-regex": "^2.0.0", @@ -15265,7 +14634,6 @@ }, "node_modules/filenamify/node_modules/escape-string-regexp": { "version": "1.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -15273,7 +14641,6 @@ }, "node_modules/filenamify/node_modules/strip-outer": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" @@ -15284,7 +14651,6 @@ }, "node_modules/filenamify/node_modules/trim-repeated": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" @@ -15297,14 +14663,12 @@ "version": "3.6.1", "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", - "dev": true, "engines": { "node": ">= 0.4.0" } }, "node_modules/fill-range": { "version": "7.0.1", - "dev": true, "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" @@ -15317,7 +14681,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", - "dev": true, "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -15335,7 +14698,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -15343,12 +14705,10 @@ "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/find-cache-dir": { "version": "3.3.2", - "dev": true, "license": "MIT", "dependencies": { "commondir": "^1.0.1", @@ -15364,12 +14724,10 @@ }, "node_modules/find-parent-dir": { "version": "0.3.1", - "dev": true, "license": "MIT" }, "node_modules/find-pkg": { "version": "0.1.2", - "dev": true, "license": "MIT", "dependencies": { "find-file-up": "^0.1.2" @@ -15380,7 +14738,6 @@ }, "node_modules/find-pkg/node_modules/find-file-up": { "version": "0.1.3", - "dev": true, "license": "MIT", "dependencies": { "fs-exists-sync": "^0.1.0", @@ -15396,7 +14753,6 @@ }, "node_modules/find-up": { "version": "4.1.0", - "dev": true, "license": "MIT", "dependencies": { "locate-path": "^5.0.0", @@ -15408,7 +14764,6 @@ }, "node_modules/findup": { "version": "0.1.5", - "dev": true, "dependencies": { "colors": "~0.6.0-1", "commander": "~2.1.0" @@ -15422,7 +14777,6 @@ }, "node_modules/findup/node_modules/commander": { "version": "2.1.0", - "dev": true, "engines": { "node": ">= 0.6.x" } @@ -15445,7 +14799,6 @@ }, "node_modules/flat-cache": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "flatted": "^3.1.0", @@ -15457,7 +14810,6 @@ }, "node_modules/flatted": { "version": "3.2.7", - "dev": true, "license": "ISC" }, "node_modules/flush-write-stream": { @@ -15471,7 +14823,6 @@ }, "node_modules/follow-redirects": { "version": "1.15.2", - "dev": true, "funding": [ { "type": "individual", @@ -15492,14 +14843,12 @@ "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/for-in": { "version": "1.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -15523,7 +14872,6 @@ }, "node_modules/form-data": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -15536,7 +14884,6 @@ }, "node_modules/forwarded": { "version": "0.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -15544,7 +14891,6 @@ }, "node_modules/fraction.js": { "version": "4.2.0", - "dev": true, "license": "MIT", "engines": { "node": "*" @@ -15567,7 +14913,6 @@ }, "node_modules/framer-motion": { "version": "6.5.1", - "dev": true, "license": "MIT", "dependencies": { "@motionone/dom": "10.12.0", @@ -15587,7 +14932,6 @@ }, "node_modules/framer-motion/node_modules/@emotion/is-prop-valid": { "version": "0.8.8", - "dev": true, "license": "MIT", "optional": true, "dependencies": { @@ -15596,13 +14940,11 @@ }, "node_modules/framer-motion/node_modules/@emotion/memoize": { "version": "0.7.4", - "dev": true, "license": "MIT", "optional": true }, "node_modules/framesync": { "version": "6.0.1", - "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.1.0" @@ -15610,7 +14952,6 @@ }, "node_modules/fresh": { "version": "0.5.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -15623,12 +14964,10 @@ }, "node_modules/fs-constants": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/fs-exists-sync": { "version": "0.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -15659,17 +14998,14 @@ }, "node_modules/fs-monkey": { "version": "1.0.3", - "dev": true, "license": "Unlicense" }, "node_modules/fs.realpath": { "version": "1.0.0", - "dev": true, "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.2", - "dev": true, "license": "MIT", "optional": true, "os": [ @@ -15685,7 +15021,6 @@ }, "node_modules/function.prototype.name": { "version": "1.1.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -15702,7 +15037,6 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", - "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15718,12 +15052,10 @@ "node_modules/get-assigned-identifiers": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", - "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==", - "dev": true + "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==" }, "node_modules/get-caller-file": { "version": "2.0.5", - "dev": true, "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" @@ -15731,7 +15063,6 @@ }, "node_modules/get-intrinsic": { "version": "1.2.0", - "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.1", @@ -15744,7 +15075,6 @@ }, "node_modules/get-package-type": { "version": "0.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8.0.0" @@ -15842,7 +15172,6 @@ }, "node_modules/get-stdin": { "version": "9.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -15853,7 +15182,6 @@ }, "node_modules/get-stream": { "version": "6.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -15864,7 +15192,6 @@ }, "node_modules/get-symbol-description": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -15887,7 +15214,6 @@ }, "node_modules/gettext-parser": { "version": "1.4.0", - "dev": true, "license": "MIT", "dependencies": { "encoding": "^0.1.12", @@ -15942,7 +15268,6 @@ }, "node_modules/glob": { "version": "7.2.3", - "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", @@ -15961,7 +15286,6 @@ }, "node_modules/glob-parent": { "version": "6.0.2", - "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.3" @@ -15972,7 +15296,6 @@ }, "node_modules/glob-to-regexp": { "version": "0.4.1", - "dev": true, "license": "BSD-2-Clause" }, "node_modules/glob-watcher": { @@ -16534,7 +15857,6 @@ }, "node_modules/global-cache": { "version": "1.2.1", - "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.2", @@ -16546,7 +15868,6 @@ }, "node_modules/global-modules": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" @@ -16557,7 +15878,6 @@ }, "node_modules/global-prefix": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "ini": "^1.3.5", @@ -16570,12 +15890,10 @@ }, "node_modules/global-prefix/node_modules/ini": { "version": "1.3.8", - "dev": true, "license": "ISC" }, "node_modules/global-prefix/node_modules/kind-of": { "version": "6.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -16583,7 +15901,6 @@ }, "node_modules/globals": { "version": "13.17.0", - "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.20.2" @@ -16597,7 +15914,6 @@ }, "node_modules/globals/node_modules/type-fest": { "version": "0.20.2", - "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -16608,7 +15924,6 @@ }, "node_modules/globby": { "version": "11.1.0", - "dev": true, "license": "MIT", "dependencies": { "array-union": "^2.1.0", @@ -16627,7 +15942,6 @@ }, "node_modules/globjoin": { "version": "0.1.4", - "dev": true, "license": "MIT" }, "node_modules/glogg": { @@ -16643,7 +15957,6 @@ }, "node_modules/good-listener": { "version": "1.2.2", - "dev": true, "license": "MIT", "dependencies": { "delegate": "^3.1.2" @@ -16653,7 +15966,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -16663,19 +15975,16 @@ }, "node_modules/graceful-fs": { "version": "4.2.10", - "dev": true, "license": "ISC" }, "node_modules/gradient-parser": { "version": "0.1.5", - "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/grapheme-splitter": { "version": "1.0.4", - "dev": true, "license": "MIT" }, "node_modules/gulp": { @@ -18764,7 +18073,6 @@ }, "node_modules/gzip-size": { "version": "6.0.0", - "dev": true, "license": "MIT", "dependencies": { "duplexer": "^0.1.2" @@ -18778,12 +18086,10 @@ }, "node_modules/handle-thing": { "version": "2.0.1", - "dev": true, "license": "MIT" }, "node_modules/hard-rejection": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -18801,7 +18107,6 @@ }, "node_modules/has-ansi": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" @@ -18812,7 +18117,6 @@ }, "node_modules/has-ansi/node_modules/ansi-regex": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -18820,7 +18124,6 @@ }, "node_modules/has-bigints": { "version": "1.0.2", - "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -18828,7 +18131,6 @@ }, "node_modules/has-flag": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -18847,7 +18149,6 @@ }, "node_modules/has-property-descriptors": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.1" @@ -18858,7 +18159,6 @@ }, "node_modules/has-symbols": { "version": "1.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -18869,7 +18169,6 @@ }, "node_modules/has-tostringtag": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" @@ -18937,7 +18236,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dev": true, "dependencies": { "inherits": "^2.0.4", "readable-stream": "^3.6.0", @@ -18951,7 +18249,6 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -18965,7 +18262,6 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" @@ -18975,14 +18271,12 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true, "bin": { "he": "bin/he" } }, "node_modules/header-case": { "version": "2.0.4", - "dev": true, "license": "MIT", "dependencies": { "capital-case": "^1.0.4", @@ -18991,33 +18285,28 @@ }, "node_modules/hex-color-regex": { "version": "1.1.0", - "dev": true, "license": "MIT" }, "node_modules/hey-listen": { "version": "1.0.8", - "dev": true, "license": "MIT" }, "node_modules/highland": { "version": "2.13.0", "resolved": "https://registry.npmjs.org/highland/-/highland-2.13.0.tgz", "integrity": "sha512-zGZBcgAHPY2Zf9VG9S5IrlcC7CH9ELioXVtp9T5bU2a4fP2zIsA+Y8pV/n/h2lMwbWMHTX0I0xN0ODJ3Pd3aBQ==", - "dev": true, "dependencies": { "util-deprecate": "^1.0.2" } }, "node_modules/highlight-words-core": { "version": "1.2.2", - "dev": true, "license": "MIT" }, "node_modules/hmac-drbg": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dev": true, "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", @@ -19037,7 +18326,6 @@ }, "node_modules/homedir-polyfill": { "version": "1.0.3", - "dev": true, "license": "MIT", "dependencies": { "parse-passwd": "^1.0.0" @@ -19059,7 +18347,6 @@ }, "node_modules/hpack.js": { "version": "2.1.6", - "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.1", @@ -19070,17 +18357,14 @@ }, "node_modules/hsl-regex": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/hsla-regex": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/html-element-map": { "version": "1.3.1", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.filter": "^1.0.0", @@ -19092,7 +18376,6 @@ }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", - "dev": true, "license": "MIT", "dependencies": { "whatwg-encoding": "^1.0.5" @@ -19103,19 +18386,16 @@ }, "node_modules/html-entities": { "version": "2.3.3", - "dev": true, "license": "MIT" }, "node_modules/html-escaper": { "version": "2.0.2", - "dev": true, "license": "MIT" }, "node_modules/html-minifier": { "version": "3.5.21", "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", - "dev": true, "dependencies": { "camel-case": "3.0.x", "clean-css": "4.2.x", @@ -19136,7 +18416,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", - "dev": true, "dependencies": { "no-case": "^2.2.0", "upper-case": "^1.1.1" @@ -19145,20 +18424,17 @@ "node_modules/html-minifier/node_modules/commander": { "version": "2.17.1", "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", - "dev": true + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" }, "node_modules/html-minifier/node_modules/lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", - "dev": true + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==" }, "node_modules/html-minifier/node_modules/no-case": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", - "dev": true, "dependencies": { "lower-case": "^1.1.1" } @@ -19167,7 +18443,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", - "dev": true, "dependencies": { "no-case": "^2.2.0" } @@ -19176,7 +18451,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -19185,7 +18459,6 @@ "version": "3.4.10", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", - "dev": true, "dependencies": { "commander": "~2.19.0", "source-map": "~0.6.1" @@ -19200,18 +18473,15 @@ "node_modules/html-minifier/node_modules/uglify-js/node_modules/commander": { "version": "2.19.0", "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", - "dev": true + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==" }, "node_modules/html-minifier/node_modules/upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", - "dev": true + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==" }, "node_modules/html-tags": { "version": "3.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19224,14 +18494,12 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", "integrity": "sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg==", - "dev": true, "engines": { "node": ">=0.10" } }, "node_modules/htmlparser2": { "version": "8.0.1", - "dev": true, "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -19254,12 +18522,10 @@ }, "node_modules/http-deceiver": { "version": "1.2.7", - "dev": true, "license": "MIT" }, "node_modules/http-errors": { "version": "1.6.3", - "dev": true, "license": "MIT", "dependencies": { "depd": "~1.1.2", @@ -19273,17 +18539,14 @@ }, "node_modules/http-errors/node_modules/inherits": { "version": "2.0.3", - "dev": true, "license": "ISC" }, "node_modules/http-parser-js": { "version": "0.5.8", - "dev": true, "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", - "dev": true, "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", @@ -19296,7 +18559,6 @@ }, "node_modules/http-proxy-agent": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "@tootallnate/once": "1", @@ -19309,7 +18571,6 @@ }, "node_modules/http-proxy-middleware": { "version": "2.0.6", - "dev": true, "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", @@ -19332,7 +18593,6 @@ }, "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -19344,12 +18604,10 @@ "node_modules/https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", - "dev": true + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" }, "node_modules/https-proxy-agent": { "version": "5.0.1", - "dev": true, "license": "MIT", "dependencies": { "agent-base": "6", @@ -19369,7 +18627,6 @@ }, "node_modules/iconv-lite": { "version": "0.4.24", - "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" @@ -19380,7 +18637,6 @@ }, "node_modules/icss-utils": { "version": "5.1.0", - "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -19391,7 +18647,6 @@ }, "node_modules/ieee754": { "version": "1.2.1", - "dev": true, "funding": [ { "type": "github", @@ -19410,7 +18665,6 @@ }, "node_modules/ignore": { "version": "5.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -19418,7 +18672,6 @@ }, "node_modules/ignore-walk": { "version": "4.0.1", - "dev": true, "license": "ISC", "dependencies": { "minimatch": "^3.0.4" @@ -19429,7 +18682,6 @@ }, "node_modules/immutable": { "version": "4.1.0", - "dev": true, "license": "MIT" }, "node_modules/import-fresh": { @@ -19448,7 +18700,6 @@ }, "node_modules/import-lazy": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19456,7 +18707,6 @@ }, "node_modules/import-local": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", @@ -19474,7 +18724,6 @@ }, "node_modules/import-local/node_modules/resolve-cwd": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" @@ -19485,7 +18734,6 @@ }, "node_modules/import-local/node_modules/resolve-from": { "version": "5.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19493,7 +18741,6 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.19" @@ -19501,7 +18748,6 @@ }, "node_modules/indent-string": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19509,7 +18755,6 @@ }, "node_modules/indexes-of": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/infer-owner": { @@ -19519,7 +18764,6 @@ }, "node_modules/inflight": { "version": "1.0.6", - "dev": true, "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -19528,12 +18772,10 @@ }, "node_modules/inherits": { "version": "2.0.4", - "dev": true, "license": "ISC" }, "node_modules/ini": { "version": "3.0.1", - "dev": true, "license": "ISC", "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" @@ -19543,14 +18785,12 @@ "version": "0.6.2", "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", "integrity": "sha512-0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA==", - "dev": true, "dependencies": { "source-map": "~0.5.3" } }, "node_modules/inquirer": { "version": "8.2.4", - "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", @@ -19577,7 +18817,6 @@ "version": "7.2.1", "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz", "integrity": "sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg==", - "dev": true, "dependencies": { "acorn-node": "^1.5.2", "combine-source-map": "^0.8.0", @@ -19596,7 +18835,6 @@ }, "node_modules/internal-slot": { "version": "1.0.5", - "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.0", @@ -19630,7 +18868,6 @@ }, "node_modules/ipaddr.js": { "version": "1.9.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" @@ -19638,7 +18875,6 @@ }, "node_modules/irregular-plurals": { "version": "3.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19658,7 +18894,6 @@ }, "node_modules/is-absolute-url": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19698,7 +18933,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -19714,7 +18948,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.0", @@ -19730,7 +18963,6 @@ }, "node_modules/is-bigint": { "version": "1.0.4", - "dev": true, "license": "MIT", "dependencies": { "has-bigints": "^1.0.1" @@ -19741,7 +18973,6 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", - "dev": true, "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" @@ -19752,7 +18983,6 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -19767,12 +18997,10 @@ }, "node_modules/is-buffer": { "version": "1.1.6", - "dev": true, "license": "MIT" }, "node_modules/is-callable": { "version": "1.2.7", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -19799,7 +19027,6 @@ }, "node_modules/is-color-stop": { "version": "1.1.0", - "dev": true, "license": "MIT", "dependencies": { "css-color-names": "^0.0.4", @@ -19822,7 +19049,6 @@ }, "node_modules/is-date-object": { "version": "1.0.5", - "dev": true, "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" @@ -19845,7 +19071,6 @@ }, "node_modules/is-directory": { "version": "0.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19853,7 +19078,6 @@ }, "node_modules/is-docker": { "version": "2.2.1", - "dev": true, "license": "MIT", "bin": { "is-docker": "cli.js" @@ -19867,7 +19091,6 @@ }, "node_modules/is-extendable": { "version": "0.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19875,7 +19098,6 @@ }, "node_modules/is-extglob": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19883,7 +19105,6 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19891,7 +19112,6 @@ }, "node_modules/is-generator-fn": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -19901,7 +19121,6 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -19914,7 +19133,6 @@ }, "node_modules/is-glob": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" @@ -19934,7 +19152,6 @@ }, "node_modules/is-interactive": { "version": "1.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -19949,7 +19166,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -19964,7 +19180,6 @@ }, "node_modules/is-negative-zero": { "version": "2.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -19975,7 +19190,6 @@ }, "node_modules/is-number": { "version": "7.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.12.0" @@ -19983,7 +19197,6 @@ }, "node_modules/is-number-object": { "version": "1.0.7", - "dev": true, "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" @@ -19997,7 +19210,6 @@ }, "node_modules/is-obj": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -20005,7 +19217,6 @@ }, "node_modules/is-path-cwd": { "version": "2.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -20013,7 +19224,6 @@ }, "node_modules/is-path-in-cwd": { "version": "2.1.0", - "dev": true, "license": "MIT", "dependencies": { "is-path-inside": "^2.1.0" @@ -20024,7 +19234,6 @@ }, "node_modules/is-path-inside": { "version": "2.1.0", - "dev": true, "license": "MIT", "dependencies": { "path-is-inside": "^1.0.2" @@ -20035,7 +19244,6 @@ }, "node_modules/is-plain-obj": { "version": "1.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -20043,7 +19251,6 @@ }, "node_modules/is-plain-object": { "version": "5.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -20051,7 +19258,6 @@ }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/is-promise": { @@ -20061,7 +19267,6 @@ }, "node_modules/is-regex": { "version": "1.1.4", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -20087,21 +19292,18 @@ }, "node_modules/is-resolvable": { "version": "1.1.0", - "dev": true, "license": "ISC" }, "node_modules/is-set": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2" @@ -20120,7 +19322,6 @@ }, "node_modules/is-stream": { "version": "2.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -20131,7 +19332,6 @@ }, "node_modules/is-string": { "version": "1.0.7", - "dev": true, "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" @@ -20145,12 +19345,10 @@ }, "node_modules/is-subset": { "version": "0.1.1", - "dev": true, "license": "MIT" }, "node_modules/is-symbol": { "version": "1.0.4", - "dev": true, "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" @@ -20175,14 +19373,12 @@ }, "node_modules/is-touch-device": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/is-typed-array": { "version": "1.1.10", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -20199,7 +19395,6 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/is-unc-path": { @@ -20215,7 +19410,6 @@ }, "node_modules/is-unicode-supported": { "version": "0.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -20241,14 +19435,12 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-weakref": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2" @@ -20261,7 +19453,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -20298,7 +19489,6 @@ }, "node_modules/is-wsl": { "version": "2.2.0", - "dev": true, "license": "MIT", "dependencies": { "is-docker": "^2.0.0" @@ -20309,17 +19499,14 @@ }, "node_modules/isarray": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", - "dev": true, "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -20329,7 +19516,6 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", "integrity": "sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA==", - "dev": true, "dependencies": { "node-fetch": "^1.0.1", "whatwg-fetch": ">=0.10.0" @@ -20339,7 +19525,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -20348,7 +19533,6 @@ "version": "1.7.3", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "dev": true, "dependencies": { "encoding": "^0.1.11", "is-stream": "^1.0.1" @@ -20356,7 +19540,6 @@ }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=8" @@ -20364,7 +19547,6 @@ }, "node_modules/istanbul-lib-instrument": { "version": "5.2.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", @@ -20379,7 +19561,6 @@ }, "node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -20387,7 +19568,6 @@ }, "node_modules/istanbul-lib-report": { "version": "3.0.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", @@ -20400,7 +19580,6 @@ }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", @@ -20413,7 +19592,6 @@ }, "node_modules/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -20421,7 +19599,6 @@ }, "node_modules/istanbul-reports": { "version": "3.1.5", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", @@ -20433,7 +19610,6 @@ }, "node_modules/jest": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -20459,7 +19635,6 @@ }, "node_modules/jest-changed-files": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20472,7 +19647,6 @@ }, "node_modules/jest-circus": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -20501,7 +19675,6 @@ }, "node_modules/jest-cli": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", @@ -20534,7 +19707,6 @@ }, "node_modules/jest-cli/node_modules/cliui": { "version": "7.0.4", - "dev": true, "license": "ISC", "dependencies": { "string-width": "^4.2.0", @@ -20544,7 +19716,6 @@ }, "node_modules/jest-cli/node_modules/y18n": { "version": "5.0.8", - "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -20552,7 +19723,6 @@ }, "node_modules/jest-cli/node_modules/yargs": { "version": "16.2.0", - "dev": true, "license": "MIT", "dependencies": { "cliui": "^7.0.2", @@ -20569,7 +19739,6 @@ }, "node_modules/jest-cli/node_modules/yargs-parser": { "version": "20.2.9", - "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -20577,7 +19746,6 @@ }, "node_modules/jest-config": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.8.0", @@ -20619,7 +19787,6 @@ }, "node_modules/jest-dev-server": { "version": "6.1.1", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.2", @@ -20633,7 +19800,6 @@ }, "node_modules/jest-dev-server/node_modules/commander": { "version": "5.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 6" @@ -20641,7 +19807,6 @@ }, "node_modules/jest-dev-server/node_modules/find-process": { "version": "1.4.7", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.0.0", @@ -20654,7 +19819,6 @@ }, "node_modules/jest-diff": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.0.0", @@ -20668,7 +19832,6 @@ }, "node_modules/jest-docblock": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" @@ -20679,7 +19842,6 @@ }, "node_modules/jest-docblock/node_modules/detect-newline": { "version": "3.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -20687,7 +19849,6 @@ }, "node_modules/jest-each": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20702,7 +19863,6 @@ }, "node_modules/jest-environment-jsdom": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -20719,7 +19879,6 @@ }, "node_modules/jest-environment-node": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -20735,7 +19894,6 @@ }, "node_modules/jest-get-type": { "version": "27.5.1", - "dev": true, "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -20743,7 +19901,6 @@ }, "node_modules/jest-haste-map": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20768,7 +19925,6 @@ }, "node_modules/jest-jasmine2": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -20795,7 +19951,6 @@ }, "node_modules/jest-leak-detector": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "jest-get-type": "^27.5.1", @@ -20807,7 +19962,6 @@ }, "node_modules/jest-matcher-utils": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.0.0", @@ -20821,7 +19975,6 @@ }, "node_modules/jest-message-util": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", @@ -20840,7 +19993,6 @@ }, "node_modules/jest-mock": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20852,7 +20004,6 @@ }, "node_modules/jest-pnp-resolver": { "version": "1.2.2", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -20868,7 +20019,6 @@ }, "node_modules/jest-regex-util": { "version": "27.5.1", - "dev": true, "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" @@ -20876,7 +20026,6 @@ }, "node_modules/jest-resolve": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20896,7 +20045,6 @@ }, "node_modules/jest-resolve-dependencies": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -20909,7 +20057,6 @@ }, "node_modules/jest-runner": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", @@ -20940,7 +20087,6 @@ }, "node_modules/jest-runtime": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", @@ -20972,7 +20118,6 @@ }, "node_modules/jest-runtime/node_modules/strip-bom": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -20980,7 +20125,6 @@ }, "node_modules/jest-serializer": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -20992,7 +20136,6 @@ }, "node_modules/jest-snapshot": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.7.2", @@ -21024,7 +20167,6 @@ }, "node_modules/jest-util": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -21040,7 +20182,6 @@ }, "node_modules/jest-validate": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", @@ -21056,7 +20197,6 @@ }, "node_modules/jest-watcher": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", @@ -21073,7 +20213,6 @@ }, "node_modules/jest-worker": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", @@ -21086,7 +20225,6 @@ }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -21100,7 +20238,6 @@ }, "node_modules/jest/node_modules/@jest/console": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21117,7 +20254,6 @@ }, "node_modules/jest/node_modules/@jest/core": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21164,7 +20300,6 @@ }, "node_modules/jest/node_modules/@jest/environment": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21179,7 +20314,6 @@ }, "node_modules/jest/node_modules/@jest/fake-timers": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21196,7 +20330,6 @@ }, "node_modules/jest/node_modules/@jest/globals": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21211,7 +20344,6 @@ }, "node_modules/jest/node_modules/@jest/reporters": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21255,7 +20387,6 @@ }, "node_modules/jest/node_modules/@jest/source-map": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21269,7 +20400,6 @@ }, "node_modules/jest/node_modules/@jest/test-result": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21284,7 +20414,6 @@ }, "node_modules/jest/node_modules/@jest/test-sequencer": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21299,7 +20428,6 @@ }, "node_modules/jest/node_modules/@jest/transform": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21325,7 +20453,6 @@ }, "node_modules/jest/node_modules/@jest/types": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21342,7 +20469,6 @@ }, "node_modules/jest/node_modules/@sinonjs/fake-timers": { "version": "9.1.2", - "dev": true, "license": "BSD-3-Clause", "peer": true, "dependencies": { @@ -21351,7 +20477,6 @@ }, "node_modules/jest/node_modules/@types/yargs": { "version": "17.0.13", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21360,7 +20485,6 @@ }, "node_modules/jest/node_modules/ansi-styles": { "version": "5.2.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21372,7 +20496,6 @@ }, "node_modules/jest/node_modules/babel-jest": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21393,7 +20516,6 @@ }, "node_modules/jest/node_modules/babel-plugin-jest-hoist": { "version": "29.0.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21408,7 +20530,6 @@ }, "node_modules/jest/node_modules/babel-preset-jest": { "version": "29.0.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21424,7 +20545,6 @@ }, "node_modules/jest/node_modules/convert-source-map": { "version": "1.8.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21433,7 +20553,6 @@ }, "node_modules/jest/node_modules/detect-newline": { "version": "3.1.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21442,7 +20561,6 @@ }, "node_modules/jest/node_modules/diff-sequences": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21451,7 +20569,6 @@ }, "node_modules/jest/node_modules/emittery": { "version": "0.10.2", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21463,7 +20580,6 @@ }, "node_modules/jest/node_modules/expect": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21479,7 +20595,6 @@ }, "node_modules/jest/node_modules/jest-changed-files": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21492,7 +20607,6 @@ }, "node_modules/jest/node_modules/jest-circus": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21522,7 +20636,6 @@ }, "node_modules/jest/node_modules/jest-cli": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21556,7 +20669,6 @@ }, "node_modules/jest/node_modules/jest-config": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21601,7 +20713,6 @@ }, "node_modules/jest/node_modules/jest-diff": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21616,7 +20727,6 @@ }, "node_modules/jest/node_modules/jest-docblock": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21628,7 +20738,6 @@ }, "node_modules/jest/node_modules/jest-each": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21644,7 +20753,6 @@ }, "node_modules/jest/node_modules/jest-environment-node": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21661,7 +20769,6 @@ }, "node_modules/jest/node_modules/jest-get-type": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21670,7 +20777,6 @@ }, "node_modules/jest/node_modules/jest-haste-map": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21695,7 +20801,6 @@ }, "node_modules/jest/node_modules/jest-leak-detector": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21708,7 +20813,6 @@ }, "node_modules/jest/node_modules/jest-matcher-utils": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21723,7 +20827,6 @@ }, "node_modules/jest/node_modules/jest-message-util": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21743,7 +20846,6 @@ }, "node_modules/jest/node_modules/jest-mock": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21757,7 +20859,6 @@ }, "node_modules/jest/node_modules/jest-regex-util": { "version": "29.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -21766,7 +20867,6 @@ }, "node_modules/jest/node_modules/jest-resolve": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21786,7 +20886,6 @@ }, "node_modules/jest/node_modules/jest-resolve-dependencies": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21799,7 +20898,6 @@ }, "node_modules/jest/node_modules/jest-runner": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21831,7 +20929,6 @@ }, "node_modules/jest/node_modules/jest-runtime": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21864,7 +20961,6 @@ }, "node_modules/jest/node_modules/jest-snapshot": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21899,7 +20995,6 @@ }, "node_modules/jest/node_modules/jest-util": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21916,7 +21011,6 @@ }, "node_modules/jest/node_modules/jest-validate": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21933,7 +21027,6 @@ }, "node_modules/jest/node_modules/jest-watcher": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21952,7 +21045,6 @@ }, "node_modules/jest/node_modules/jest-worker": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21967,7 +21059,6 @@ }, "node_modules/jest/node_modules/p-limit": { "version": "3.1.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21982,7 +21073,6 @@ }, "node_modules/jest/node_modules/pretty-format": { "version": "29.1.2", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -21996,19 +21086,16 @@ }, "node_modules/jest/node_modules/react-is": { "version": "18.2.0", - "dev": true, "license": "MIT", "peer": true }, "node_modules/jest/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, "license": "MIT", "peer": true }, "node_modules/jest/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "peer": true, "engines": { @@ -22017,7 +21104,6 @@ }, "node_modules/jest/node_modules/source-map-support": { "version": "0.5.13", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -22027,7 +21113,6 @@ }, "node_modules/jest/node_modules/strip-bom": { "version": "4.0.0", - "dev": true, "license": "MIT", "peer": true, "engines": { @@ -22036,7 +21121,6 @@ }, "node_modules/jest/node_modules/supports-color": { "version": "8.1.1", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -22051,7 +21135,6 @@ }, "node_modules/jest/node_modules/v8-to-istanbul": { "version": "9.0.1", - "dev": true, "license": "ISC", "peer": true, "dependencies": { @@ -22065,7 +21148,6 @@ }, "node_modules/jest/node_modules/write-file-atomic": { "version": "4.0.2", - "dev": true, "license": "ISC", "peer": true, "dependencies": { @@ -22078,12 +21160,10 @@ }, "node_modules/js-base64": { "version": "2.6.4", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/js-sdsl": { "version": "4.1.5", - "dev": true, "license": "MIT" }, "node_modules/js-tokens": { @@ -22092,7 +21172,6 @@ }, "node_modules/js-yaml": { "version": "4.1.0", - "dev": true, "license": "MIT", "dependencies": { "argparse": "^2.0.1" @@ -22103,7 +21182,6 @@ }, "node_modules/jsdoc-type-pratt-parser": { "version": "2.2.5", - "dev": true, "license": "MIT", "engines": { "node": ">=12.0.0" @@ -22111,7 +21189,6 @@ }, "node_modules/jsdom": { "version": "16.7.0", - "dev": true, "license": "MIT", "dependencies": { "abab": "^2.0.5", @@ -22156,7 +21233,6 @@ }, "node_modules/jsdom/node_modules/acorn": { "version": "8.8.0", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -22167,7 +21243,6 @@ }, "node_modules/jsdom/node_modules/form-data": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -22180,12 +21255,10 @@ }, "node_modules/jsdom/node_modules/parse5": { "version": "6.0.1", - "dev": true, "license": "MIT" }, "node_modules/jsdom/node_modules/webidl-conversions": { "version": "6.1.0", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=10.4" @@ -22193,7 +21266,6 @@ }, "node_modules/jsdom/node_modules/whatwg-url": { "version": "8.7.0", - "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.7.0", @@ -22206,7 +21278,6 @@ }, "node_modules/jsdom/node_modules/ws": { "version": "7.5.9", - "dev": true, "license": "MIT", "engines": { "node": ">=8.3.0" @@ -22236,7 +21307,6 @@ }, "node_modules/json-parse-better-errors": { "version": "1.0.2", - "dev": true, "license": "MIT" }, "node_modules/json-parse-even-better-errors": { @@ -22245,12 +21315,10 @@ }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/json-stringify-nice": { @@ -22268,7 +21336,6 @@ }, "node_modules/json2php": { "version": "0.0.4", - "dev": true, "license": "BSD" }, "node_modules/json5": { @@ -22284,7 +21351,6 @@ }, "node_modules/jsonc-parser": { "version": "3.0.0", - "dev": true, "license": "MIT" }, "node_modules/jsonfile": { @@ -22300,7 +21366,6 @@ }, "node_modules/jsonparse": { "version": "1.3.1", - "dev": true, "engines": [ "node >= 0.2.0" ], @@ -22308,7 +21373,6 @@ }, "node_modules/JSONStream": { "version": "1.3.5", - "dev": true, "license": "(MIT OR Apache-2.0)", "dependencies": { "jsonparse": "^1.2.0", @@ -22323,7 +21387,6 @@ }, "node_modules/jsx-ast-utils": { "version": "3.3.3", - "dev": true, "license": "MIT", "dependencies": { "array-includes": "^3.1.5", @@ -22350,7 +21413,6 @@ }, "node_modules/kind-of": { "version": "3.2.2", - "dev": true, "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" @@ -22369,7 +21431,6 @@ }, "node_modules/kleur": { "version": "3.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -22377,7 +21438,6 @@ }, "node_modules/klona": { "version": "2.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">= 8" @@ -22385,14 +21445,12 @@ }, "node_modules/known-css-properties": { "version": "0.25.0", - "dev": true, "license": "MIT" }, "node_modules/labeled-stream-splicer": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz", "integrity": "sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==", - "dev": true, "dependencies": { "inherits": "^2.0.1", "stream-splicer": "^2.0.0" @@ -22400,12 +21458,10 @@ }, "node_modules/language-subtag-registry": { "version": "0.3.22", - "dev": true, "license": "CC0-1.0" }, "node_modules/language-tags": { "version": "1.0.5", - "dev": true, "license": "MIT", "dependencies": { "language-subtag-registry": "~0.3.2" @@ -22425,7 +21481,6 @@ }, "node_modules/lazy-cache": { "version": "1.0.4", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24248,7 +23303,6 @@ }, "node_modules/leven": { "version": "3.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -24256,7 +23310,6 @@ }, "node_modules/levn": { "version": "0.3.0", - "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2", @@ -24296,7 +23349,6 @@ }, "node_modules/lilconfig": { "version": "2.0.6", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -24308,7 +23360,6 @@ }, "node_modules/linkify-it": { "version": "3.0.3", - "dev": true, "license": "MIT", "dependencies": { "uc.micro": "^1.0.1" @@ -24316,7 +23367,6 @@ }, "node_modules/loader-runner": { "version": "4.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6.11.5" @@ -24324,7 +23374,6 @@ }, "node_modules/loader-utils": { "version": "2.0.4", - "dev": true, "license": "MIT", "dependencies": { "big.js": "^5.2.2", @@ -24337,7 +23386,6 @@ }, "node_modules/locate-path": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "p-locate": "^4.1.0" @@ -24348,7 +23396,6 @@ }, "node_modules/lodash": { "version": "4.17.21", - "dev": true, "license": "MIT" }, "node_modules/lodash._reinterpolate": { @@ -24363,7 +23410,6 @@ }, "node_modules/lodash.debounce": { "version": "4.0.8", - "dev": true, "license": "MIT" }, "node_modules/lodash.defaults": { @@ -24373,17 +23419,14 @@ }, "node_modules/lodash.escape": { "version": "4.0.1", - "dev": true, "license": "MIT" }, "node_modules/lodash.flattendeep": { "version": "4.4.0", - "dev": true, "license": "MIT" }, "node_modules/lodash.isequal": { "version": "4.5.0", - "dev": true, "license": "MIT" }, "node_modules/lodash.ismatch": { @@ -24394,12 +23437,10 @@ "node_modules/lodash.memoize": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", - "integrity": "sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==", - "dev": true + "integrity": "sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==" }, "node_modules/lodash.merge": { "version": "4.6.2", - "dev": true, "license": "MIT" }, "node_modules/lodash.template": { @@ -24421,17 +23462,14 @@ }, "node_modules/lodash.truncate": { "version": "4.4.2", - "dev": true, "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", - "dev": true, "license": "MIT" }, "node_modules/log-symbols": { "version": "4.1.0", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.0", @@ -24465,7 +23503,6 @@ }, "node_modules/lower-case": { "version": "2.0.2", - "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -24473,7 +23510,6 @@ }, "node_modules/lru-cache": { "version": "6.0.0", - "dev": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" @@ -24540,14 +23576,12 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "dev": true, "bin": { "lz-string": "bin/bin.js" } }, "node_modules/make-dir": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "semver": "^6.0.0" @@ -24561,7 +23595,6 @@ }, "node_modules/make-dir/node_modules/semver": { "version": "6.3.0", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -24744,7 +23777,6 @@ }, "node_modules/makeerror": { "version": "1.0.12", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" @@ -24760,7 +23792,6 @@ }, "node_modules/map-obj": { "version": "4.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -24776,7 +23807,6 @@ }, "node_modules/map-values": { "version": "1.0.1", - "dev": true, "license": "Public Domain" }, "node_modules/map-visit": { @@ -24801,7 +23831,6 @@ }, "node_modules/markdown-it": { "version": "12.3.2", - "dev": true, "license": "MIT", "dependencies": { "argparse": "^2.0.1", @@ -24816,7 +23845,6 @@ }, "node_modules/markdown-it/node_modules/entities": { "version": "2.1.0", - "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -24829,7 +23857,6 @@ }, "node_modules/markdownlint": { "version": "0.25.1", - "dev": true, "license": "MIT", "dependencies": { "markdown-it": "12.3.2" @@ -24840,7 +23867,6 @@ }, "node_modules/markdownlint-cli": { "version": "0.31.1", - "dev": true, "license": "MIT", "dependencies": { "commander": "~9.0.0", @@ -24863,7 +23889,6 @@ }, "node_modules/markdownlint-cli/node_modules/commander": { "version": "9.0.0", - "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || >=14" @@ -24871,7 +23896,6 @@ }, "node_modules/markdownlint-cli/node_modules/minimatch": { "version": "3.0.8", - "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -24882,7 +23906,6 @@ }, "node_modules/markdownlint-rule-helpers": { "version": "0.16.0", - "dev": true, "license": "MIT" }, "node_modules/matched": { @@ -24902,7 +23925,6 @@ }, "node_modules/mathml-tag-names": { "version": "2.1.3", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -24913,7 +23935,6 @@ "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1", @@ -24952,17 +23973,14 @@ "node_modules/mdn-data": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", - "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==", - "dev": true + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==" }, "node_modules/mdurl": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/media-typer": { "version": "0.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -24970,7 +23988,6 @@ }, "node_modules/memfs": { "version": "3.4.7", - "dev": true, "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.3" @@ -24981,17 +23998,14 @@ }, "node_modules/memize": { "version": "1.1.0", - "dev": true, "license": "MIT" }, "node_modules/memoize-one": { "version": "5.2.1", - "dev": true, "license": "MIT" }, "node_modules/meow": { "version": "6.1.1", - "dev": true, "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", @@ -25015,7 +24029,6 @@ }, "node_modules/meow/node_modules/type-fest": { "version": "0.13.1", - "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -25031,7 +24044,6 @@ }, "node_modules/merge-deep": { "version": "3.0.3", - "dev": true, "license": "MIT", "dependencies": { "arr-union": "^3.1.0", @@ -25044,17 +24056,14 @@ }, "node_modules/merge-descriptors": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/merge-stream": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 8" @@ -25062,7 +24071,6 @@ }, "node_modules/methods": { "version": "1.1.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -25070,7 +24078,6 @@ }, "node_modules/micromatch": { "version": "4.0.5", - "dev": true, "license": "MIT", "dependencies": { "braces": "^3.0.2", @@ -25084,7 +24091,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, "dependencies": { "bn.js": "^4.0.0", "brorand": "^1.0.1" @@ -25096,14 +24102,12 @@ "node_modules/miller-rabin/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true, "bin": { "mime": "cli.js" }, @@ -25113,7 +24117,6 @@ }, "node_modules/mime-db": { "version": "1.52.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -25121,7 +24124,6 @@ }, "node_modules/mime-types": { "version": "2.1.35", - "dev": true, "license": "MIT", "dependencies": { "mime-db": "1.52.0" @@ -25132,7 +24134,6 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -25140,7 +24141,6 @@ }, "node_modules/min-indent": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -25148,7 +24148,6 @@ }, "node_modules/mini-css-extract-plugin": { "version": "2.6.1", - "dev": true, "license": "MIT", "dependencies": { "schema-utils": "^4.0.0" @@ -25166,7 +24165,6 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv": { "version": "8.11.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -25181,7 +24179,6 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -25192,12 +24189,10 @@ }, "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -25217,7 +24212,6 @@ "version": "0.8.1", "resolved": "https://registry.npmjs.org/minimalcss/-/minimalcss-0.8.1.tgz", "integrity": "sha512-a+kbRVvxz+oQf43pweflM38KvcvVuTvv3v6a8UgVbfS7E2rktSJSf8kfbGToSXgbiBDP83WTh8MWL6PdT9ljag==", - "dev": true, "dependencies": { "cheerio": "1.0.0-rc.2", "css-tree": "1.0.0-alpha.28", @@ -25234,7 +24228,6 @@ "version": "1.0.0-rc.2", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz", "integrity": "sha512-9LDHQy1jHc/eXMzPN6/oah9Qba4CjdKECC7YYEE/2zge/tsGwt19NQp5NFdfd5Lx6TZlyC5SXNQkG41P9r6XDg==", - "dev": true, "dependencies": { "css-select": "~1.2.0", "dom-serializer": "~0.1.0", @@ -25251,7 +24244,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", "integrity": "sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==", - "dev": true, "dependencies": { "boolbase": "~1.0.0", "css-what": "2.1", @@ -25263,7 +24255,6 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true, "engines": { "node": "*" } @@ -25272,7 +24263,6 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", - "dev": true, "dependencies": { "domelementtype": "^1.3.0", "entities": "^1.1.1" @@ -25281,14 +24271,12 @@ "node_modules/minimalcss/node_modules/domelementtype": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" }, "node_modules/minimalcss/node_modules/domhandler": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "dev": true, "dependencies": { "domelementtype": "1" } @@ -25297,7 +24285,6 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", - "dev": true, "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -25306,14 +24293,12 @@ "node_modules/minimalcss/node_modules/entities": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" }, "node_modules/minimalcss/node_modules/htmlparser2": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dev": true, "dependencies": { "domelementtype": "^1.3.1", "domhandler": "^2.3.0", @@ -25327,7 +24312,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, "dependencies": { "boolbase": "~1.0.0" } @@ -25336,7 +24320,6 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", - "dev": true, "dependencies": { "@types/node": "*" } @@ -25345,7 +24328,6 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -25357,18 +24339,15 @@ }, "node_modules/minimalistic-assert": { "version": "1.0.1", - "dev": true, "license": "ISC" }, "node_modules/minimalistic-crypto-utils": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", - "dev": true + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" }, "node_modules/minimatch": { "version": "3.1.2", - "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -25379,12 +24358,10 @@ }, "node_modules/minimist": { "version": "1.2.6", - "dev": true, "license": "MIT" }, "node_modules/minimist-options": { "version": "4.1.0", - "dev": true, "license": "MIT", "dependencies": { "arrify": "^1.0.1", @@ -25397,7 +24374,6 @@ }, "node_modules/minimist-options/node_modules/kind-of": { "version": "6.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25531,7 +24507,6 @@ }, "node_modules/mixin-object": { "version": "2.0.1", - "dev": true, "license": "MIT", "dependencies": { "for-in": "^0.1.3", @@ -25543,7 +24518,6 @@ }, "node_modules/mixin-object/node_modules/for-in": { "version": "0.1.8", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25562,7 +24536,6 @@ }, "node_modules/mkdirp-classic": { "version": "0.5.3", - "dev": true, "license": "MIT" }, "node_modules/mkdirp-infer-owner": { @@ -25590,7 +24563,6 @@ "version": "6.2.3", "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz", "integrity": "sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA==", - "dev": true, "dependencies": { "browser-resolve": "^2.0.0", "cached-path-relative": "^1.0.2", @@ -25617,7 +24589,6 @@ }, "node_modules/moment": { "version": "2.29.4", - "dev": true, "license": "MIT", "engines": { "node": "*" @@ -25625,7 +24596,6 @@ }, "node_modules/moment-timezone": { "version": "0.5.37", - "dev": true, "license": "MIT", "dependencies": { "moment": ">= 2.9.0" @@ -25636,17 +24606,14 @@ }, "node_modules/moo": { "version": "0.5.2", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/mousetrap": { "version": "1.6.5", - "dev": true, "license": "Apache-2.0 WITH LLVM-exception" }, "node_modules/mrmime": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -25658,7 +24625,6 @@ }, "node_modules/multicast-dns": { "version": "7.2.5", - "dev": true, "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", @@ -25678,7 +24644,6 @@ }, "node_modules/mute-stream": { "version": "0.0.8", - "dev": true, "license": "ISC" }, "node_modules/nan": { @@ -25689,7 +24654,6 @@ }, "node_modules/nanoid": { "version": "3.3.4", - "dev": true, "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" @@ -25700,12 +24664,10 @@ }, "node_modules/natural-compare": { "version": "1.4.0", - "dev": true, "license": "MIT" }, "node_modules/nearley": { "version": "2.20.1", - "dev": true, "license": "MIT", "dependencies": { "commander": "^2.19.0", @@ -25726,12 +24688,10 @@ }, "node_modules/nearley/node_modules/commander": { "version": "2.20.3", - "dev": true, "license": "MIT" }, "node_modules/negotiator": { "version": "0.6.3", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -25739,7 +24699,6 @@ }, "node_modules/neo-async": { "version": "2.6.2", - "dev": true, "license": "MIT" }, "node_modules/next-tick": { @@ -25749,7 +24708,6 @@ }, "node_modules/no-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "lower-case": "^2.0.2", @@ -25763,7 +24721,6 @@ }, "node_modules/node-fetch": { "version": "2.6.7", - "dev": true, "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" @@ -25782,7 +24739,6 @@ }, "node_modules/node-forge": { "version": "1.3.1", - "dev": true, "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" @@ -25800,7 +24756,6 @@ }, "node_modules/node-int64": { "version": "0.4.0", - "dev": true, "license": "MIT" }, "node_modules/node-version-compare": { @@ -25824,7 +24779,6 @@ }, "node_modules/normalize-package-data": { "version": "2.5.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", @@ -25835,12 +24789,10 @@ }, "node_modules/normalize-package-data/node_modules/hosted-git-info": { "version": "2.8.9", - "dev": true, "license": "ISC" }, "node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.1", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver" @@ -25848,7 +24800,6 @@ }, "node_modules/normalize-path": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25856,7 +24807,6 @@ }, "node_modules/normalize-range": { "version": "0.1.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25864,7 +24814,6 @@ }, "node_modules/normalize-url": { "version": "6.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -25891,7 +24840,6 @@ }, "node_modules/npm-bundled": { "version": "1.1.2", - "dev": true, "license": "ISC", "dependencies": { "npm-normalize-package-bin": "^1.0.1" @@ -25910,7 +24858,6 @@ }, "node_modules/npm-normalize-package-bin": { "version": "1.0.1", - "dev": true, "license": "ISC" }, "node_modules/npm-package-arg": { @@ -25928,7 +24875,6 @@ }, "node_modules/npm-package-json-lint": { "version": "5.4.2", - "dev": true, "license": "MIT", "dependencies": { "ajv": "^6.12.6", @@ -25957,7 +24903,6 @@ }, "node_modules/npm-package-json-lint/node_modules/is-plain-obj": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -25968,7 +24913,6 @@ }, "node_modules/npm-packlist": { "version": "3.0.0", - "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.6", @@ -26128,7 +25072,6 @@ }, "node_modules/npm-run-path": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.0.0" @@ -26171,7 +25114,6 @@ }, "node_modules/nth-check": { "version": "2.1.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" @@ -26190,7 +25132,6 @@ }, "node_modules/nwsapi": { "version": "2.2.2", - "dev": true, "license": "MIT" }, "node_modules/nx": { @@ -26385,12 +25326,10 @@ }, "node_modules/object-filter": { "version": "1.0.2", - "dev": true, "license": "MIT" }, "node_modules/object-inspect": { "version": "1.12.2", - "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -26398,7 +25337,6 @@ }, "node_modules/object-is": { "version": "1.1.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -26413,7 +25351,6 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -26432,7 +25369,6 @@ }, "node_modules/object.assign": { "version": "4.1.4", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -26463,7 +25399,6 @@ }, "node_modules/object.entries": { "version": "1.1.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -26476,7 +25411,6 @@ }, "node_modules/object.fromentries": { "version": "2.0.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -26492,7 +25426,6 @@ }, "node_modules/object.getownpropertydescriptors": { "version": "2.1.4", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.reduce": "^1.0.4", @@ -26509,7 +25442,6 @@ }, "node_modules/object.hasown": { "version": "1.1.1", - "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.4", @@ -26556,7 +25488,6 @@ }, "node_modules/object.values": { "version": "1.1.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -26572,14 +25503,12 @@ }, "node_modules/obuf": { "version": "1.1.2", - "dev": true, "license": "MIT" }, "node_modules/on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, "dependencies": { "ee-first": "1.1.1" }, @@ -26589,7 +25518,6 @@ }, "node_modules/on-headers": { "version": "1.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -26597,7 +25525,6 @@ }, "node_modules/once": { "version": "1.4.0", - "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" @@ -26605,7 +25532,6 @@ }, "node_modules/onetime": { "version": "5.1.2", - "dev": true, "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" @@ -26619,7 +25545,6 @@ }, "node_modules/open": { "version": "8.4.0", - "dev": true, "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", @@ -26635,7 +25560,6 @@ }, "node_modules/opener": { "version": "1.5.2", - "dev": true, "license": "(WTFPL OR MIT)", "bin": { "opener": "bin/opener-bin.js" @@ -26643,7 +25567,6 @@ }, "node_modules/optionator": { "version": "0.8.2", - "dev": true, "license": "MIT", "dependencies": { "deep-is": "~0.1.3", @@ -26659,7 +25582,6 @@ }, "node_modules/ora": { "version": "5.4.1", - "dev": true, "license": "MIT", "dependencies": { "bl": "^4.1.0", @@ -26690,12 +25612,10 @@ "node_modules/os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", - "dev": true + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" }, "node_modules/os-homedir": { "version": "1.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -26714,7 +25634,6 @@ }, "node_modules/os-tmpdir": { "version": "1.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -26730,7 +25649,6 @@ }, "node_modules/p-limit": { "version": "2.3.0", - "dev": true, "license": "MIT", "dependencies": { "p-try": "^2.0.0" @@ -26744,7 +25662,6 @@ }, "node_modules/p-locate": { "version": "4.1.0", - "dev": true, "license": "MIT", "dependencies": { "p-limit": "^2.2.0" @@ -26811,7 +25728,6 @@ }, "node_modules/p-retry": { "version": "4.6.2", - "dev": true, "license": "MIT", "dependencies": { "@types/retry": "0.12.0", @@ -26834,7 +25750,6 @@ }, "node_modules/p-try": { "version": "2.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -26857,12 +25772,10 @@ "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, "node_modules/param-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", @@ -26883,7 +25796,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", "integrity": "sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg==", - "dev": true, "dependencies": { "path-platform": "~0.11.15" } @@ -26892,7 +25804,6 @@ "version": "5.1.6", "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dev": true, "dependencies": { "asn1.js": "^5.2.0", "browserify-aes": "^1.0.0", @@ -26966,7 +25877,6 @@ }, "node_modules/parse-passwd": { "version": "1.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -26974,7 +25884,6 @@ }, "node_modules/parse5": { "version": "7.1.1", - "dev": true, "license": "MIT", "dependencies": { "entities": "^4.4.0" @@ -26985,7 +25894,6 @@ }, "node_modules/parse5-htmlparser2-tree-adapter": { "version": "7.0.0", - "dev": true, "license": "MIT", "dependencies": { "domhandler": "^5.0.2", @@ -26997,7 +25905,6 @@ }, "node_modules/parseurl": { "version": "1.3.3", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -27005,7 +25912,6 @@ }, "node_modules/pascal-case": { "version": "3.1.2", - "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -27023,12 +25929,10 @@ "node_modules/path-browserify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", - "dev": true + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" }, "node_modules/path-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", @@ -27042,7 +25946,6 @@ }, "node_modules/path-exists": { "version": "4.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -27050,7 +25953,6 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -27058,12 +25960,10 @@ }, "node_modules/path-is-inside": { "version": "1.0.2", - "dev": true, "license": "(WTFPL OR MIT)" }, "node_modules/path-key": { "version": "3.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -27077,7 +25977,6 @@ "version": "0.11.15", "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", "integrity": "sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg==", - "dev": true, "engines": { "node": ">= 0.8.0" } @@ -27108,7 +26007,6 @@ }, "node_modules/path-to-regexp": { "version": "0.1.7", - "dev": true, "license": "MIT" }, "node_modules/path-type": { @@ -27133,7 +26031,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dev": true, "dependencies": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", @@ -27147,12 +26044,10 @@ }, "node_modules/pend": { "version": "1.2.0", - "dev": true, "license": "MIT" }, "node_modules/performance-now": { "version": "2.1.0", - "dev": true, "license": "MIT" }, "node_modules/picocolors": { @@ -27161,7 +26056,6 @@ }, "node_modules/picomatch": { "version": "2.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8.6" @@ -27172,7 +26066,6 @@ }, "node_modules/pify": { "version": "4.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -27180,7 +26073,6 @@ }, "node_modules/pinkie": { "version": "2.0.4", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -27188,7 +26080,6 @@ }, "node_modules/pinkie-promise": { "version": "2.0.1", - "dev": true, "license": "MIT", "dependencies": { "pinkie": "^2.0.0" @@ -27199,7 +26090,6 @@ }, "node_modules/pirates": { "version": "4.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">= 6" @@ -27207,7 +26097,6 @@ }, "node_modules/pkg-dir": { "version": "4.2.0", - "dev": true, "license": "MIT", "dependencies": { "find-up": "^4.0.0" @@ -27232,7 +26121,6 @@ }, "node_modules/plur": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "irregular-plurals": "^3.2.0" @@ -27246,7 +26134,6 @@ }, "node_modules/popmotion": { "version": "11.0.3", - "dev": true, "license": "MIT", "dependencies": { "framesync": "6.0.1", @@ -27265,7 +26152,6 @@ }, "node_modules/postcss": { "version": "8.4.17", - "dev": true, "funding": [ { "type": "opencollective", @@ -27288,7 +26174,6 @@ }, "node_modules/postcss-calc": { "version": "8.2.4", - "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.9", @@ -27300,7 +26185,6 @@ }, "node_modules/postcss-colormin": { "version": "5.3.0", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -27317,7 +26201,6 @@ }, "node_modules/postcss-convert-values": { "version": "5.1.2", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.20.3", @@ -27332,7 +26215,6 @@ }, "node_modules/postcss-discard-comments": { "version": "5.1.2", - "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -27343,7 +26225,6 @@ }, "node_modules/postcss-discard-duplicates": { "version": "5.1.0", - "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -27354,7 +26235,6 @@ }, "node_modules/postcss-discard-empty": { "version": "5.1.1", - "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -27365,7 +26245,6 @@ }, "node_modules/postcss-discard-overridden": { "version": "5.1.0", - "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -27376,7 +26255,6 @@ }, "node_modules/postcss-loader": { "version": "6.2.1", - "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.0", @@ -27397,12 +26275,10 @@ }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", - "dev": true, "license": "MIT" }, "node_modules/postcss-merge-longhand": { "version": "5.1.6", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", @@ -27417,7 +26293,6 @@ }, "node_modules/postcss-merge-rules": { "version": "5.1.2", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -27434,7 +26309,6 @@ }, "node_modules/postcss-minify-font-values": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27448,7 +26322,6 @@ }, "node_modules/postcss-minify-gradients": { "version": "5.1.1", - "dev": true, "license": "MIT", "dependencies": { "colord": "^2.9.1", @@ -27464,7 +26337,6 @@ }, "node_modules/postcss-minify-params": { "version": "5.1.3", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -27480,7 +26352,6 @@ }, "node_modules/postcss-minify-selectors": { "version": "5.2.1", - "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -27494,7 +26365,6 @@ }, "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", - "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -27505,7 +26375,6 @@ }, "node_modules/postcss-modules-local-by-default": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", @@ -27521,7 +26390,6 @@ }, "node_modules/postcss-modules-scope": { "version": "3.0.0", - "dev": true, "license": "ISC", "dependencies": { "postcss-selector-parser": "^6.0.4" @@ -27535,7 +26403,6 @@ }, "node_modules/postcss-modules-values": { "version": "4.0.0", - "dev": true, "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" @@ -27549,7 +26416,6 @@ }, "node_modules/postcss-normalize-charset": { "version": "5.1.0", - "dev": true, "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" @@ -27560,7 +26426,6 @@ }, "node_modules/postcss-normalize-display-values": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27574,7 +26439,6 @@ }, "node_modules/postcss-normalize-positions": { "version": "5.1.1", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27588,7 +26452,6 @@ }, "node_modules/postcss-normalize-repeat-style": { "version": "5.1.1", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27602,7 +26465,6 @@ }, "node_modules/postcss-normalize-string": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27616,7 +26478,6 @@ }, "node_modules/postcss-normalize-timing-functions": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27630,7 +26491,6 @@ }, "node_modules/postcss-normalize-unicode": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -27645,7 +26505,6 @@ }, "node_modules/postcss-normalize-url": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "normalize-url": "^6.0.1", @@ -27660,7 +26519,6 @@ }, "node_modules/postcss-normalize-whitespace": { "version": "5.1.1", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27674,7 +26532,6 @@ }, "node_modules/postcss-ordered-values": { "version": "5.1.3", - "dev": true, "license": "MIT", "dependencies": { "cssnano-utils": "^3.1.0", @@ -27689,7 +26546,6 @@ }, "node_modules/postcss-reduce-initial": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -27704,7 +26560,6 @@ }, "node_modules/postcss-reduce-transforms": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" @@ -27718,12 +26573,10 @@ }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.1", - "dev": true, "license": "MIT" }, "node_modules/postcss-safe-parser": { "version": "6.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=12.0" @@ -27738,7 +26591,6 @@ }, "node_modules/postcss-scss": { "version": "4.0.5", - "dev": true, "funding": [ { "type": "opencollective", @@ -27759,7 +26611,6 @@ }, "node_modules/postcss-selector-parser": { "version": "6.0.10", - "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -27771,7 +26622,6 @@ }, "node_modules/postcss-svgo": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", @@ -27786,7 +26636,6 @@ }, "node_modules/postcss-unique-selectors": { "version": "5.1.1", - "dev": true, "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -27800,19 +26649,16 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "dev": true, "license": "MIT" }, "node_modules/prelude-ls": { "version": "1.1.2", - "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/prettier": { "version": "2.7.1", - "dev": true, "license": "MIT", "peer": true, "bin": { @@ -27827,7 +26673,6 @@ }, "node_modules/prettier-linter-helpers": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "fast-diff": "^1.1.2" @@ -27838,7 +26683,6 @@ }, "node_modules/pretty-format": { "version": "27.5.1", - "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1", @@ -27851,7 +26695,6 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -27880,19 +26723,16 @@ "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, "engines": { "node": ">= 0.6.0" } }, "node_modules/process-nextick-args": { "version": "2.0.1", - "dev": true, "license": "MIT" }, "node_modules/progress": { "version": "2.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -27941,7 +26781,6 @@ }, "node_modules/prompts": { "version": "2.4.2", - "dev": true, "license": "MIT", "dependencies": { "kleur": "^3.0.3", @@ -27953,7 +26792,6 @@ }, "node_modules/prop-types": { "version": "15.8.1", - "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", @@ -27963,7 +26801,6 @@ }, "node_modules/prop-types-exact": { "version": "1.2.0", - "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.3", @@ -27973,7 +26810,6 @@ }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", - "dev": true, "license": "MIT" }, "node_modules/proto-list": { @@ -27988,7 +26824,6 @@ }, "node_modules/proxy-addr": { "version": "2.0.7", - "dev": true, "license": "MIT", "dependencies": { "forwarded": "0.2.0", @@ -28000,24 +26835,20 @@ }, "node_modules/proxy-from-env": { "version": "1.1.0", - "dev": true, "license": "MIT" }, "node_modules/pseudomap": { "version": "1.0.2", - "dev": true, "license": "ISC" }, "node_modules/psl": { "version": "1.9.0", - "dev": true, "license": "MIT" }, "node_modules/public-encrypt": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, "dependencies": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", @@ -28030,12 +26861,10 @@ "node_modules/public-encrypt/node_modules/bn.js": { "version": "4.12.0", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/pump": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", @@ -28045,15 +26874,13 @@ "node_modules/punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" }, "node_modules/puppeteer": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz", "integrity": "sha512-bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ==", "deprecated": "< 19.4.0 is no longer supported", - "dev": true, "hasInstallScript": true, "dependencies": { "debug": "^4.1.0", @@ -28071,7 +26898,6 @@ }, "node_modules/puppeteer-core": { "version": "18.0.5", - "dev": true, "license": "Apache-2.0", "peer": true, "dependencies": { @@ -28095,7 +26921,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, "dependencies": { "es6-promisify": "^5.0.0" }, @@ -28107,7 +26932,6 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", - "dev": true, "dependencies": { "concat-stream": "^1.6.2", "debug": "^2.6.9", @@ -28122,7 +26946,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -28130,14 +26953,12 @@ "node_modules/puppeteer/node_modules/extract-zip/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/puppeteer/node_modules/https-proxy-agent": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dev": true, "dependencies": { "agent-base": "^4.3.0", "debug": "^3.1.0" @@ -28150,7 +26971,6 @@ "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, "dependencies": { "ms": "^2.1.1" } @@ -28159,7 +26979,6 @@ "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, "dependencies": { "minimist": "^1.2.6" }, @@ -28171,7 +26990,6 @@ "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, "dependencies": { "glob": "^7.1.3" }, @@ -28183,14 +27001,12 @@ "version": "6.2.2", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "dev": true, "dependencies": { "async-limiter": "~1.0.0" } }, "node_modules/q": { "version": "1.5.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.6.0", @@ -28201,7 +27017,6 @@ "version": "6.5.2", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true, "engines": { "node": ">=0.6" } @@ -28211,7 +27026,6 @@ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "dev": true, "engines": { "node": ">=0.4.x" } @@ -28220,19 +27034,16 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", - "dev": true, "engines": { "node": ">=0.4.x" } }, "node_modules/querystringify": { "version": "2.2.0", - "dev": true, "license": "MIT" }, "node_modules/queue-microtask": { "version": "1.2.3", - "dev": true, "funding": [ { "type": "github", @@ -28251,7 +27062,6 @@ }, "node_modules/quick-lru": { "version": "4.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -28259,7 +27069,6 @@ }, "node_modules/raf": { "version": "3.4.1", - "dev": true, "license": "MIT", "dependencies": { "performance-now": "^2.1.0" @@ -28267,12 +27076,10 @@ }, "node_modules/railroad-diagrams": { "version": "1.0.0", - "dev": true, "license": "CC0-1.0" }, "node_modules/randexp": { "version": "0.4.6", - "dev": true, "license": "MIT", "dependencies": { "discontinuous-range": "1.0.0", @@ -28284,7 +27091,6 @@ }, "node_modules/randombytes": { "version": "2.1.0", - "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" @@ -28294,7 +27100,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, "dependencies": { "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" @@ -28302,7 +27107,6 @@ }, "node_modules/range-parser": { "version": "1.2.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -28312,7 +27116,6 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", - "dev": true, "dependencies": { "bytes": "3.0.0", "http-errors": "1.6.3", @@ -28327,7 +27130,6 @@ "version": "0.4.23", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -28337,7 +27139,6 @@ }, "node_modules/re-resizable": { "version": "6.9.9", - "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.13.1 || ^17.0.0 || ^18.0.0", @@ -28357,7 +27158,6 @@ }, "node_modules/react-colorful": { "version": "5.6.1", - "dev": true, "license": "MIT", "peerDependencies": { "react": ">=16.8.0", @@ -28366,7 +27166,6 @@ }, "node_modules/react-dates": { "version": "21.8.0", - "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.15.0", @@ -28395,7 +27194,6 @@ }, "node_modules/react-dates/node_modules/airbnb-prop-types": { "version": "2.16.0", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", @@ -28417,7 +27215,6 @@ }, "node_modules/react-dates/node_modules/deepmerge": { "version": "1.5.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28425,12 +27222,10 @@ }, "node_modules/react-dates/node_modules/react-is": { "version": "16.13.1", - "dev": true, "license": "MIT" }, "node_modules/react-dates/node_modules/react-with-direction": { "version": "1.4.0", - "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.16.0", @@ -28449,7 +27244,6 @@ }, "node_modules/react-dom": { "version": "17.0.2", - "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", @@ -28462,7 +27256,6 @@ }, "node_modules/react-infinite-scroller": { "version": "1.2.6", - "dev": true, "license": "MIT", "dependencies": { "prop-types": "^15.5.8" @@ -28473,12 +27266,10 @@ }, "node_modules/react-is": { "version": "17.0.2", - "dev": true, "license": "MIT" }, "node_modules/react-moment-proptypes": { "version": "1.8.1", - "dev": true, "license": "MIT", "dependencies": { "moment": ">=1.6.0" @@ -28489,7 +27280,6 @@ }, "node_modules/react-outside-click-handler": { "version": "1.3.0", - "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.15.0", @@ -28505,7 +27295,6 @@ }, "node_modules/react-outside-click-handler/node_modules/airbnb-prop-types": { "version": "2.16.0", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", @@ -28527,12 +27316,10 @@ }, "node_modules/react-outside-click-handler/node_modules/react-is": { "version": "16.13.1", - "dev": true, "license": "MIT" }, "node_modules/react-portal": { "version": "4.2.2", - "dev": true, "license": "MIT", "dependencies": { "prop-types": "^15.5.8" @@ -28544,7 +27331,6 @@ }, "node_modules/react-refresh": { "version": "0.10.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28552,7 +27338,6 @@ }, "node_modules/react-select": { "version": "5.4.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.0", @@ -28570,7 +27355,6 @@ }, "node_modules/react-shallow-renderer": { "version": "16.15.0", - "dev": true, "license": "MIT", "dependencies": { "object-assign": "^4.1.1", @@ -28584,7 +27368,6 @@ "version": "1.23.0", "resolved": "https://registry.npmjs.org/react-snap/-/react-snap-1.23.0.tgz", "integrity": "sha512-spmg2maHSedLrn6QBAfLJkyMqeeffLTIs7h40pS1copW2xBrajx4HEAcanm+7IVGO6SYCPoGwvbU3U30UFN25g==", - "dev": true, "dependencies": { "clean-css": "4.2.1", "express": "4.16.4", @@ -28607,15 +27390,13 @@ "node_modules/react-snap/node_modules/minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q==", - "dev": true + "integrity": "sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q==" }, "node_modules/react-snap/node_modules/mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha512-SknJC52obPfGQPnjIkXbmA6+5H15E+fR+E4iR2oQ3zzCLbd7/ONua69R/Gw7AgkTLsRG+r5fzksYwWe1AgTyWA==", "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", - "dev": true, "dependencies": { "minimist": "0.0.8" }, @@ -28625,7 +27406,6 @@ }, "node_modules/react-test-renderer": { "version": "17.0.2", - "dev": true, "license": "MIT", "dependencies": { "object-assign": "^4.1.1", @@ -28639,7 +27419,6 @@ }, "node_modules/react-transition-group": { "version": "4.4.5", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@babel/runtime": "^7.5.5", @@ -28654,7 +27433,6 @@ }, "node_modules/react-with-styles": { "version": "4.2.0", - "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.14.0", @@ -28671,7 +27449,6 @@ }, "node_modules/react-with-styles-interface-css": { "version": "6.0.0", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.flat": "^1.2.1", @@ -28684,7 +27461,6 @@ }, "node_modules/react-with-styles/node_modules/airbnb-prop-types": { "version": "2.16.0", - "dev": true, "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", @@ -28706,7 +27482,6 @@ }, "node_modules/react-with-styles/node_modules/deepmerge": { "version": "1.5.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -28714,7 +27489,6 @@ }, "node_modules/react-with-styles/node_modules/react-dom": { "version": "16.14.0", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -28729,12 +27503,10 @@ }, "node_modules/react-with-styles/node_modules/react-is": { "version": "16.13.1", - "dev": true, "license": "MIT" }, "node_modules/react-with-styles/node_modules/react-with-direction": { "version": "1.4.0", - "dev": true, "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.16.0", @@ -28753,7 +27525,6 @@ }, "node_modules/react-with-styles/node_modules/scheduler": { "version": "0.19.1", - "dev": true, "license": "MIT", "peer": true, "dependencies": { @@ -28784,7 +27555,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", "integrity": "sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w==", - "dev": true, "dependencies": { "readable-stream": "^2.0.2" } @@ -28895,7 +27665,6 @@ }, "node_modules/read-pkg": { "version": "5.2.0", - "dev": true, "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", @@ -28909,7 +27678,6 @@ }, "node_modules/read-pkg-up": { "version": "7.0.1", - "dev": true, "license": "MIT", "dependencies": { "find-up": "^4.1.0", @@ -28925,7 +27693,6 @@ }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", - "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" @@ -28933,7 +27700,6 @@ }, "node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", - "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" @@ -28941,7 +27707,6 @@ }, "node_modules/readable-stream": { "version": "2.3.7", - "dev": true, "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", @@ -28955,12 +27720,10 @@ }, "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, "license": "MIT" }, "node_modules/readable-stream/node_modules/string_decoder": { "version": "1.1.1", - "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" @@ -28979,7 +27742,6 @@ }, "node_modules/readdirp": { "version": "3.6.0", - "dev": true, "license": "MIT", "dependencies": { "picomatch": "^2.2.1" @@ -28990,7 +27752,6 @@ }, "node_modules/reakit": { "version": "1.3.11", - "dev": true, "license": "MIT", "dependencies": { "@popperjs/core": "^2.5.4", @@ -29010,7 +27771,6 @@ }, "node_modules/reakit-system": { "version": "0.15.2", - "dev": true, "license": "MIT", "dependencies": { "reakit-utils": "^0.15.2" @@ -29022,7 +27782,6 @@ }, "node_modules/reakit-utils": { "version": "0.15.2", - "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0", @@ -29031,7 +27790,6 @@ }, "node_modules/reakit-warning": { "version": "0.6.2", - "dev": true, "license": "MIT", "dependencies": { "reakit-utils": "^0.15.2" @@ -29042,7 +27800,6 @@ }, "node_modules/rechoir": { "version": "0.7.1", - "dev": true, "license": "MIT", "dependencies": { "resolve": "^1.9.0" @@ -29053,7 +27810,6 @@ }, "node_modules/redent": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "indent-string": "^4.0.0", @@ -29065,7 +27821,6 @@ }, "node_modules/redux": { "version": "4.2.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.9.2" @@ -29073,17 +27828,14 @@ }, "node_modules/reflect.ownkeys": { "version": "0.2.0", - "dev": true, "license": "MIT" }, "node_modules/regenerate": { "version": "1.4.2", - "dev": true, "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.1.0", - "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2" @@ -29098,7 +27850,6 @@ }, "node_modules/regenerator-transform": { "version": "0.15.0", - "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.4" @@ -29117,13 +27868,13 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "dev": true, - "license": "MIT", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" @@ -29134,7 +27885,6 @@ }, "node_modules/regexpp": { "version": "3.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -29145,7 +27895,6 @@ }, "node_modules/regexpu-core": { "version": "5.2.1", - "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2", @@ -29161,7 +27910,6 @@ }, "node_modules/regextras": { "version": "0.8.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.1.14" @@ -29169,12 +27917,10 @@ }, "node_modules/regjsgen": { "version": "0.7.1", - "dev": true, "license": "MIT" }, "node_modules/regjsparser": { "version": "0.9.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "jsesc": "~0.5.0" @@ -29185,7 +27931,6 @@ }, "node_modules/regjsparser/node_modules/jsesc": { "version": "0.5.0", - "dev": true, "bin": { "jsesc": "bin/jsesc" } @@ -29194,7 +27939,6 @@ "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "dev": true, "engines": { "node": ">= 0.10" } @@ -29254,12 +27998,10 @@ }, "node_modules/rememo": { "version": "4.0.1", - "dev": true, "license": "MIT" }, "node_modules/remove-accents": { "version": "0.4.3", - "dev": true, "license": "MIT" }, "node_modules/remove-bom-buffer": { @@ -29331,7 +28073,6 @@ }, "node_modules/replace-in-file": { "version": "6.3.5", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.2", @@ -29347,12 +28088,10 @@ }, "node_modules/requestidlecallback": { "version": "0.3.0", - "dev": true, "license": "MIT" }, "node_modules/require-directory": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -29360,7 +28099,6 @@ }, "node_modules/require-from-string": { "version": "2.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -29373,7 +28111,6 @@ }, "node_modules/requireindex": { "version": "1.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.5" @@ -29393,7 +28130,6 @@ }, "node_modules/requires-port": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/resolve": { @@ -29413,7 +28149,6 @@ }, "node_modules/resolve-bin": { "version": "0.4.3", - "dev": true, "license": "MIT", "dependencies": { "find-parent-dir": "~0.3.0" @@ -29421,7 +28156,6 @@ }, "node_modules/resolve-dir": { "version": "0.1.1", - "dev": true, "license": "MIT", "dependencies": { "expand-tilde": "^1.2.2", @@ -29433,7 +28167,6 @@ }, "node_modules/resolve-dir/node_modules/global-modules": { "version": "0.2.3", - "dev": true, "license": "MIT", "dependencies": { "global-prefix": "^0.1.4", @@ -29445,7 +28178,6 @@ }, "node_modules/resolve-dir/node_modules/global-prefix": { "version": "0.1.5", - "dev": true, "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.0", @@ -29459,12 +28191,10 @@ }, "node_modules/resolve-dir/node_modules/ini": { "version": "1.3.8", - "dev": true, "license": "ISC" }, "node_modules/resolve-dir/node_modules/is-windows": { "version": "0.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -29495,7 +28225,6 @@ }, "node_modules/resolve.exports": { "version": "1.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -29503,7 +28232,6 @@ }, "node_modules/restore-cursor": { "version": "3.1.0", - "dev": true, "license": "MIT", "dependencies": { "onetime": "^5.1.0", @@ -29515,7 +28243,6 @@ }, "node_modules/ret": { "version": "0.1.15", - "dev": true, "license": "MIT", "engines": { "node": ">=0.12" @@ -29523,7 +28250,6 @@ }, "node_modules/retry": { "version": "0.13.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -29531,7 +28257,6 @@ }, "node_modules/reusify": { "version": "1.0.4", - "dev": true, "license": "MIT", "engines": { "iojs": ">=1.0.0", @@ -29540,17 +28265,14 @@ }, "node_modules/rgb-regex": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/rgba-regex": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/rimraf": { "version": "3.0.2", - "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -29566,7 +28288,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" @@ -29574,7 +28295,6 @@ }, "node_modules/rst-selector-parser": { "version": "2.2.3", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "lodash.flattendeep": "^4.4.0", @@ -29583,7 +28303,6 @@ }, "node_modules/rtlcss": { "version": "2.4.0", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.3.0", @@ -29598,7 +28317,6 @@ }, "node_modules/rtlcss/node_modules/ansi-styles": { "version": "3.2.1", - "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -29609,7 +28327,6 @@ }, "node_modules/rtlcss/node_modules/chalk": { "version": "2.4.2", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -29622,7 +28339,6 @@ }, "node_modules/rtlcss/node_modules/color-convert": { "version": "1.9.3", - "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -29630,12 +28346,10 @@ }, "node_modules/rtlcss/node_modules/color-name": { "version": "1.1.3", - "dev": true, "license": "MIT" }, "node_modules/rtlcss/node_modules/escape-string-regexp": { "version": "1.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -29643,7 +28357,6 @@ }, "node_modules/rtlcss/node_modules/has-flag": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -29651,7 +28364,6 @@ }, "node_modules/rtlcss/node_modules/mkdirp": { "version": "0.5.6", - "dev": true, "license": "MIT", "dependencies": { "minimist": "^1.2.6" @@ -29662,7 +28374,6 @@ }, "node_modules/rtlcss/node_modules/postcss": { "version": "6.0.23", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.4.1", @@ -29675,7 +28386,6 @@ }, "node_modules/rtlcss/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -29683,7 +28393,6 @@ }, "node_modules/rtlcss/node_modules/strip-json-comments": { "version": "2.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -29691,7 +28400,6 @@ }, "node_modules/rtlcss/node_modules/supports-color": { "version": "5.5.0", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -29702,7 +28410,6 @@ }, "node_modules/run-async": { "version": "2.4.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.12.0" @@ -29710,7 +28417,6 @@ }, "node_modules/run-con": { "version": "1.2.11", - "dev": true, "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", @@ -29724,7 +28430,6 @@ }, "node_modules/run-parallel": { "version": "1.2.0", - "dev": true, "funding": [ { "type": "github", @@ -29746,12 +28451,10 @@ }, "node_modules/rungen": { "version": "0.3.2", - "dev": true, "license": "MIT" }, "node_modules/rxjs": { "version": "7.5.7", - "dev": true, "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" @@ -29759,7 +28462,6 @@ }, "node_modules/safe-buffer": { "version": "5.2.1", - "dev": true, "funding": [ { "type": "github", @@ -29786,7 +28488,6 @@ }, "node_modules/safe-regex-test": { "version": "1.0.0", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -29799,12 +28500,10 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", - "dev": true, "license": "MIT" }, "node_modules/sass": { "version": "1.55.0", - "dev": true, "license": "MIT", "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -29820,7 +28519,6 @@ }, "node_modules/sass-loader": { "version": "12.6.0", - "dev": true, "license": "MIT", "dependencies": { "klona": "^2.0.4", @@ -29857,12 +28555,10 @@ }, "node_modules/sax": { "version": "1.2.4", - "dev": true, "license": "ISC" }, "node_modules/saxes": { "version": "5.0.1", - "dev": true, "license": "ISC", "dependencies": { "xmlchars": "^2.2.0" @@ -29873,7 +28569,6 @@ }, "node_modules/scheduler": { "version": "0.20.2", - "dev": true, "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", @@ -29882,7 +28577,6 @@ }, "node_modules/schema-utils": { "version": "3.1.1", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", @@ -29899,17 +28593,14 @@ }, "node_modules/select": { "version": "1.1.2", - "dev": true, "license": "MIT" }, "node_modules/select-hose": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/selfsigned": { "version": "2.1.1", - "dev": true, "license": "MIT", "dependencies": { "node-forge": "^1" @@ -29920,7 +28611,6 @@ }, "node_modules/semver": { "version": "7.3.7", - "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" @@ -29947,7 +28637,6 @@ "version": "0.16.2", "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", - "dev": true, "dependencies": { "debug": "2.6.9", "depd": "~1.1.2", @@ -29971,7 +28660,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -29980,7 +28668,6 @@ "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true, "bin": { "mime": "cli.js" } @@ -29988,12 +28675,10 @@ "node_modules/send/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/sentence-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -30003,7 +28688,6 @@ }, "node_modules/serialize-javascript": { "version": "6.0.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" @@ -30011,7 +28695,6 @@ }, "node_modules/serve-index": { "version": "1.9.1", - "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.4", @@ -30028,7 +28711,6 @@ }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", - "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -30036,14 +28718,12 @@ }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/serve-static": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", - "dev": true, "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -30061,14 +28741,12 @@ }, "node_modules/setprototypeof": { "version": "1.1.0", - "dev": true, "license": "ISC" }, "node_modules/sha.js": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -30079,7 +28757,6 @@ }, "node_modules/shallow-clone": { "version": "0.1.2", - "dev": true, "license": "MIT", "dependencies": { "is-extendable": "^0.1.1", @@ -30093,7 +28770,6 @@ }, "node_modules/shallow-clone/node_modules/kind-of": { "version": "2.0.1", - "dev": true, "license": "MIT", "dependencies": { "is-buffer": "^1.0.2" @@ -30104,7 +28780,6 @@ }, "node_modules/shallow-clone/node_modules/lazy-cache": { "version": "0.2.7", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -30114,14 +28789,12 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz", "integrity": "sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==", - "dev": true, "dependencies": { "fast-safe-stringify": "^2.0.7" } }, "node_modules/shebang-command": { "version": "1.2.0", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" @@ -30132,24 +28805,21 @@ }, "node_modules/shebang-regex": { "version": "1.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/shell-quote": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz", - "integrity": "sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==", - "dev": true, + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel": { "version": "1.0.4", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.0", @@ -30162,14 +28832,12 @@ }, "node_modules/signal-exit": { "version": "3.0.7", - "dev": true, "license": "ISC" }, "node_modules/simple-concat": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "dev": true, "funding": [ { "type": "github", @@ -30187,7 +28855,6 @@ }, "node_modules/simple-swizzle": { "version": "0.2.2", - "dev": true, "license": "MIT", "dependencies": { "is-arrayish": "^0.3.1" @@ -30195,12 +28862,10 @@ }, "node_modules/simple-swizzle/node_modules/is-arrayish": { "version": "0.3.2", - "dev": true, "license": "MIT" }, "node_modules/sirv": { "version": "1.0.19", - "dev": true, "license": "MIT", "dependencies": { "@polka/url": "^1.0.0-next.20", @@ -30213,12 +28878,10 @@ }, "node_modules/sisteransi": { "version": "1.0.5", - "dev": true, "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -30226,7 +28889,6 @@ }, "node_modules/slice-ansi": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", @@ -30251,7 +28913,6 @@ }, "node_modules/snake-case": { "version": "3.0.4", - "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", @@ -30260,7 +28921,6 @@ }, "node_modules/sockjs": { "version": "0.3.24", - "dev": true, "license": "MIT", "dependencies": { "faye-websocket": "^0.11.3", @@ -30296,7 +28956,6 @@ }, "node_modules/source-list-map": { "version": "2.0.1", - "dev": true, "license": "MIT" }, "node_modules/source-map": { @@ -30308,7 +28967,6 @@ }, "node_modules/source-map-js": { "version": "1.0.2", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -30316,7 +28974,6 @@ }, "node_modules/source-map-loader": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "abab": "^2.0.5", @@ -30336,7 +28993,6 @@ }, "node_modules/source-map-loader/node_modules/iconv-lite": { "version": "0.6.3", - "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -30359,7 +29015,6 @@ }, "node_modules/source-map-support": { "version": "0.5.21", - "dev": true, "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", @@ -30368,7 +29023,6 @@ }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -30383,7 +29037,6 @@ "version": "2.1.8", "resolved": "https://registry.npmjs.org/sourcemapped-stacktrace-node/-/sourcemapped-stacktrace-node-2.1.8.tgz", "integrity": "sha512-xQOqfT5mquKLBp+H06WTeGYEQh7OF5wa44IPHbh+qNdTP15xSzxwISPml1xCweJ6DExDpDDxXe/P34wP+GdDrg==", - "dev": true, "dependencies": { "es6-promise": "^4.1.1", "isomorphic-fetch": "^2.2.1", @@ -30397,7 +29050,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -30412,7 +29064,6 @@ }, "node_modules/spawnd": { "version": "6.0.2", - "dev": true, "license": "MIT", "dependencies": { "exit": "^0.1.2", @@ -30422,7 +29073,6 @@ }, "node_modules/spdx-correct": { "version": "3.1.1", - "dev": true, "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", @@ -30431,12 +29081,10 @@ }, "node_modules/spdx-exceptions": { "version": "2.3.0", - "dev": true, "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", @@ -30445,12 +29093,10 @@ }, "node_modules/spdx-license-ids": { "version": "3.0.12", - "dev": true, "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -30465,7 +29111,6 @@ }, "node_modules/spdy-transport": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -30478,7 +29123,6 @@ }, "node_modules/spdy-transport/node_modules/readable-stream": { "version": "3.6.0", - "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -30513,7 +29157,6 @@ }, "node_modules/sprintf-js": { "version": "1.1.2", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/ssri": { @@ -30529,7 +29172,6 @@ }, "node_modules/stable": { "version": "0.1.8", - "dev": true, "license": "MIT" }, "node_modules/stack-trace": { @@ -30542,7 +29184,6 @@ }, "node_modules/stack-utils": { "version": "2.0.5", - "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" @@ -30553,7 +29194,6 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -30561,7 +29201,6 @@ }, "node_modules/stackframe": { "version": "1.3.4", - "dev": true, "license": "MIT" }, "node_modules/state-toggle": { @@ -30600,7 +29239,6 @@ }, "node_modules/statuses": { "version": "1.4.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -30610,7 +29248,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, "dependencies": { "internal-slot": "^1.0.4" }, @@ -30622,7 +29259,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "dev": true, "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" @@ -30632,7 +29268,6 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -30655,7 +29290,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", - "dev": true, "dependencies": { "duplexer2": "~0.1.0", "readable-stream": "^2.0.2" @@ -30670,7 +29304,6 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", - "dev": true, "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", @@ -30682,7 +29315,6 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -30701,7 +29333,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz", "integrity": "sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==", - "dev": true, "dependencies": { "inherits": "^2.0.1", "readable-stream": "^2.0.2" @@ -30709,7 +29340,6 @@ }, "node_modules/string_decoder": { "version": "1.3.0", - "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" @@ -30717,7 +29347,6 @@ }, "node_modules/string-length": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "char-regex": "^1.0.2", @@ -30729,7 +29358,6 @@ }, "node_modules/string-width": { "version": "4.2.3", - "dev": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", @@ -30742,7 +29370,6 @@ }, "node_modules/string.prototype.matchall": { "version": "4.0.7", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -30760,7 +29387,6 @@ }, "node_modules/string.prototype.trim": { "version": "1.2.6", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -30776,7 +29402,6 @@ }, "node_modules/string.prototype.trimend": { "version": "1.0.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -30789,7 +29414,6 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.5", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -30813,7 +29437,6 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", - "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" @@ -30843,7 +29466,6 @@ }, "node_modules/strip-final-newline": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -30851,7 +29473,6 @@ }, "node_modules/strip-indent": { "version": "3.0.0", - "dev": true, "license": "MIT", "dependencies": { "min-indent": "^1.0.0" @@ -30862,7 +29483,6 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -30889,12 +29509,10 @@ }, "node_modules/style-search": { "version": "0.1.0", - "dev": true, "license": "ISC" }, "node_modules/style-value-types": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "hey-listen": "^1.0.8", @@ -30903,7 +29521,6 @@ }, "node_modules/stylehacks": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.16.6", @@ -30918,7 +29535,6 @@ }, "node_modules/stylelint": { "version": "14.13.0", - "dev": true, "license": "MIT", "dependencies": { "@csstools/selector-specificity": "^2.0.2", @@ -30973,7 +29589,6 @@ }, "node_modules/stylelint-config-recommended": { "version": "6.0.0", - "dev": true, "license": "MIT", "peerDependencies": { "stylelint": "^14.0.0" @@ -30981,7 +29596,6 @@ }, "node_modules/stylelint-config-recommended-scss": { "version": "5.0.2", - "dev": true, "license": "MIT", "dependencies": { "postcss-scss": "^4.0.2", @@ -30994,7 +29608,6 @@ }, "node_modules/stylelint-scss": { "version": "4.3.0", - "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.17.21", @@ -31009,12 +29622,10 @@ }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/stylelint/node_modules/hosted-git-info": { "version": "4.1.0", - "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" @@ -31025,7 +29636,6 @@ }, "node_modules/stylelint/node_modules/meow": { "version": "9.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", @@ -31050,7 +29660,6 @@ }, "node_modules/stylelint/node_modules/normalize-package-data": { "version": "3.0.3", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", @@ -31064,7 +29673,6 @@ }, "node_modules/stylelint/node_modules/resolve-from": { "version": "5.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -31072,7 +29680,6 @@ }, "node_modules/stylelint/node_modules/type-fest": { "version": "0.18.1", - "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -31083,7 +29690,6 @@ }, "node_modules/stylelint/node_modules/write-file-atomic": { "version": "4.0.2", - "dev": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", @@ -31095,7 +29701,6 @@ }, "node_modules/stylelint/node_modules/yargs-parser": { "version": "20.2.9", - "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -31109,14 +29714,12 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", "integrity": "sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==", - "dev": true, "dependencies": { "minimist": "^1.1.0" } }, "node_modules/supports-color": { "version": "7.2.0", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -31127,7 +29730,6 @@ }, "node_modules/supports-hyperlinks": { "version": "2.3.0", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0", @@ -31204,16 +29806,13 @@ }, "node_modules/svg-parser": { "version": "2.0.4", - "dev": true, "license": "MIT" }, "node_modules/svg-tags": { - "version": "1.0.0", - "dev": true + "version": "1.0.0" }, "node_modules/svgo": { "version": "2.8.0", - "dev": true, "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", @@ -31233,7 +29832,6 @@ }, "node_modules/svgo/node_modules/commander": { "version": "7.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -31241,7 +29839,6 @@ }, "node_modules/svgo/node_modules/css-select": { "version": "4.3.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -31256,7 +29853,6 @@ }, "node_modules/svgo/node_modules/css-tree": { "version": "1.1.3", - "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.14", @@ -31268,7 +29864,6 @@ }, "node_modules/svgo/node_modules/csso": { "version": "4.2.0", - "dev": true, "license": "MIT", "dependencies": { "css-tree": "^1.1.2" @@ -31279,7 +29874,6 @@ }, "node_modules/svgo/node_modules/dom-serializer": { "version": "1.4.1", - "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", @@ -31292,7 +29886,6 @@ }, "node_modules/svgo/node_modules/domhandler": { "version": "4.3.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" @@ -31306,7 +29899,6 @@ }, "node_modules/svgo/node_modules/domutils": { "version": "2.8.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", @@ -31319,7 +29911,6 @@ }, "node_modules/svgo/node_modules/entities": { "version": "2.2.0", - "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -31327,12 +29918,10 @@ }, "node_modules/svgo/node_modules/mdn-data": { "version": "2.0.14", - "dev": true, "license": "CC0-1.0" }, "node_modules/svgo/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -31340,21 +29929,18 @@ }, "node_modules/symbol-tree": { "version": "3.2.4", - "dev": true, "license": "MIT" }, "node_modules/syntax-error": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz", "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==", - "dev": true, "dependencies": { "acorn-node": "^1.2.0" } }, "node_modules/table": { "version": "6.8.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "ajv": "^8.0.1", @@ -31369,7 +29955,6 @@ }, "node_modules/table/node_modules/ajv": { "version": "8.11.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -31384,12 +29969,10 @@ }, "node_modules/table/node_modules/json-schema-traverse": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/tannin": { "version": "1.2.0", - "dev": true, "license": "MIT", "dependencies": { "@tannin/plural-forms": "^1.1.0" @@ -31397,7 +29980,6 @@ }, "node_modules/tannin/node_modules/@tannin/compile": { "version": "1.1.0", - "dev": true, "license": "MIT", "dependencies": { "@tannin/evaluate": "^1.2.0", @@ -31406,12 +29988,10 @@ }, "node_modules/tannin/node_modules/@tannin/evaluate": { "version": "1.2.0", - "dev": true, "license": "MIT" }, "node_modules/tannin/node_modules/@tannin/plural-forms": { "version": "1.1.0", - "dev": true, "license": "MIT", "dependencies": { "@tannin/compile": "^1.1.0" @@ -31419,12 +29999,10 @@ }, "node_modules/tannin/node_modules/@tannin/postfix": { "version": "1.1.0", - "dev": true, "license": "MIT" }, "node_modules/tapable": { "version": "2.2.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -31448,7 +30026,6 @@ }, "node_modules/tar-fs": { "version": "2.1.1", - "dev": true, "license": "MIT", "dependencies": { "chownr": "^1.1.1", @@ -31459,12 +30036,10 @@ }, "node_modules/tar-fs/node_modules/chownr": { "version": "1.1.4", - "dev": true, "license": "ISC" }, "node_modules/tar-stream": { "version": "2.2.0", - "dev": true, "license": "MIT", "dependencies": { "bl": "^4.0.3", @@ -31479,7 +30054,6 @@ }, "node_modules/tar-stream/node_modules/readable-stream": { "version": "3.6.0", - "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -31500,7 +30074,6 @@ }, "node_modules/terminal-link": { "version": "2.1.1", - "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", @@ -31515,7 +30088,6 @@ }, "node_modules/terser": { "version": "5.15.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.2", @@ -31532,7 +30104,6 @@ }, "node_modules/terser-webpack-plugin": { "version": "5.3.6", - "dev": true, "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.14", @@ -31565,7 +30136,6 @@ }, "node_modules/terser/node_modules/acorn": { "version": "8.8.0", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -31576,12 +30146,10 @@ }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", - "dev": true, "license": "MIT" }, "node_modules/test-exclude": { "version": "6.0.0", - "dev": true, "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", @@ -31602,7 +30170,6 @@ }, "node_modules/text-table": { "version": "0.2.0", - "dev": true, "license": "MIT" }, "node_modules/textextensions": { @@ -31612,12 +30179,10 @@ }, "node_modules/throat": { "version": "6.0.1", - "dev": true, "license": "MIT" }, "node_modules/throttle-debounce": { "version": "3.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -31625,12 +30190,10 @@ }, "node_modules/through": { "version": "2.3.8", - "dev": true, "license": "MIT" }, "node_modules/through2": { "version": "2.0.5", - "dev": true, "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", @@ -31648,7 +30211,6 @@ }, "node_modules/thunky": { "version": "1.1.0", - "dev": true, "license": "MIT" }, "node_modules/time-stamp": { @@ -31663,7 +30225,6 @@ "version": "1.4.2", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", "integrity": "sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q==", - "dev": true, "dependencies": { "process": "~0.11.0" }, @@ -31673,12 +30234,10 @@ }, "node_modules/timsort": { "version": "0.3.0", - "dev": true, "license": "MIT" }, "node_modules/tiny-emitter": { "version": "2.1.0", - "dev": true, "license": "MIT" }, "node_modules/tmp": { @@ -31694,7 +30253,6 @@ }, "node_modules/tmpl": { "version": "1.0.5", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/to-absolute-glob": { @@ -31718,7 +30276,6 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", - "dev": true, "license": "MIT", "dependencies": { "is-number": "^7.0.0" @@ -31740,7 +30297,6 @@ }, "node_modules/toidentifier": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=0.6" @@ -31748,7 +30304,6 @@ }, "node_modules/totalist": { "version": "1.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -31756,7 +30311,6 @@ }, "node_modules/tough-cookie": { "version": "4.1.2", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", @@ -31770,7 +30324,6 @@ }, "node_modules/tough-cookie/node_modules/punycode": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -31778,7 +30331,6 @@ }, "node_modules/tough-cookie/node_modules/universalify": { "version": "0.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 4.0.0" @@ -31786,7 +30338,6 @@ }, "node_modules/tr46": { "version": "2.1.0", - "dev": true, "license": "MIT", "dependencies": { "punycode": "^2.1.1" @@ -31797,7 +30348,6 @@ }, "node_modules/tr46/node_modules/punycode": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -31805,7 +30355,6 @@ }, "node_modules/tree-kill": { "version": "1.2.2", - "dev": true, "license": "MIT", "bin": { "tree-kill": "cli.js" @@ -31825,7 +30374,6 @@ }, "node_modules/trim-newlines": { "version": "3.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -31851,7 +30399,6 @@ }, "node_modules/tsconfig-paths": { "version": "3.14.1", - "dev": true, "license": "MIT", "dependencies": { "@types/json5": "^0.0.29", @@ -31864,7 +30411,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, "dependencies": { "minimist": "^1.2.0" }, @@ -31874,7 +30420,6 @@ }, "node_modules/tsconfig-paths/node_modules/strip-bom": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -31882,12 +30427,10 @@ }, "node_modules/tslib": { "version": "2.4.0", - "dev": true, "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", - "dev": true, "license": "MIT", "dependencies": { "tslib": "^1.8.1" @@ -31901,23 +30444,19 @@ }, "node_modules/tsutils/node_modules/tslib": { "version": "1.14.1", - "dev": true, "license": "0BSD" }, "node_modules/tty-browserify": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", - "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==", - "dev": true + "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" }, "node_modules/turbo-combine-reducers": { "version": "1.0.2", - "dev": true, "license": "MIT" }, "node_modules/type-check": { "version": "0.3.2", - "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2" @@ -31928,7 +30467,6 @@ }, "node_modules/type-detect": { "version": "4.0.8", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -31936,7 +30474,6 @@ }, "node_modules/type-fest": { "version": "0.21.3", - "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -31947,7 +30484,6 @@ }, "node_modules/type-is": { "version": "1.6.18", - "dev": true, "license": "MIT", "dependencies": { "media-typer": "0.3.0", @@ -31959,7 +30495,6 @@ }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", - "dev": true, "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" @@ -31967,7 +30502,6 @@ }, "node_modules/typescript": { "version": "4.8.4", - "dev": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -31979,7 +30513,6 @@ }, "node_modules/uc.micro": { "version": "1.0.6", - "dev": true, "license": "MIT" }, "node_modules/uglify-js": { @@ -31997,14 +30530,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz", "integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==", - "dev": true, "bin": { "umd": "bin/cli.js" } }, "node_modules/unbox-primitive": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -32018,7 +30549,6 @@ }, "node_modules/unbzip2-stream": { "version": "1.4.3", - "dev": true, "license": "MIT", "dependencies": { "buffer": "^5.2.1", @@ -32037,7 +30567,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz", "integrity": "sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==", - "dev": true, "dependencies": { "acorn-node": "^1.3.0", "dash-ast": "^1.0.0", @@ -32072,7 +30601,6 @@ }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -32080,7 +30608,6 @@ }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", @@ -32092,7 +30619,6 @@ }, "node_modules/unicode-match-property-value-ecmascript": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -32100,7 +30626,6 @@ }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -32172,12 +30697,10 @@ }, "node_modules/uniq": { "version": "1.0.1", - "dev": true, "license": "MIT" }, "node_modules/uniqs": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/unique-slug": { @@ -32253,7 +30776,6 @@ }, "node_modules/unpipe": { "version": "1.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -32261,7 +30783,6 @@ }, "node_modules/unquote": { "version": "1.1.1", - "dev": true, "license": "MIT" }, "node_modules/update-browserslist-db": { @@ -32290,7 +30811,6 @@ }, "node_modules/upper-case": { "version": "2.0.2", - "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -32298,7 +30818,6 @@ }, "node_modules/upper-case-first": { "version": "2.0.2", - "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -32306,7 +30825,6 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" @@ -32314,7 +30832,6 @@ }, "node_modules/uri-js/node_modules/punycode": { "version": "2.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -32329,7 +30846,6 @@ "version": "0.11.0", "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "dev": true, "dependencies": { "punycode": "1.3.2", "querystring": "0.2.0" @@ -32337,7 +30853,6 @@ }, "node_modules/url-loader": { "version": "4.1.1", - "dev": true, "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", @@ -32363,7 +30878,6 @@ }, "node_modules/url-parse": { "version": "1.5.10", - "dev": true, "license": "MIT", "dependencies": { "querystringify": "^2.1.1", @@ -32373,8 +30887,7 @@ "node_modules/url/node_modules/punycode": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", - "dev": true + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" }, "node_modules/use": { "version": "3.1.1", @@ -32386,7 +30899,6 @@ }, "node_modules/use-isomorphic-layout-effect": { "version": "1.1.2", - "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" @@ -32399,7 +30911,6 @@ }, "node_modules/use-memo-one": { "version": "1.1.3", - "dev": true, "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" @@ -32409,7 +30920,6 @@ "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dev": true, "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", @@ -32420,12 +30930,10 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", - "dev": true, "license": "MIT" }, "node_modules/util.promisify": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "define-properties": "^1.1.3", @@ -32439,7 +30947,6 @@ }, "node_modules/utils-merge": { "version": "1.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4.0" @@ -32447,7 +30954,6 @@ }, "node_modules/uuid": { "version": "8.3.2", - "dev": true, "license": "MIT", "bin": { "uuid": "dist/bin/uuid" @@ -32455,12 +30961,10 @@ }, "node_modules/v8-compile-cache": { "version": "2.3.0", - "dev": true, "license": "MIT" }, "node_modules/v8-to-istanbul": { "version": "8.1.1", - "dev": true, "license": "ISC", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", @@ -32473,7 +30977,6 @@ }, "node_modules/v8-to-istanbul/node_modules/convert-source-map": { "version": "1.8.0", - "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.1" @@ -32481,12 +30984,10 @@ }, "node_modules/v8-to-istanbul/node_modules/safe-buffer": { "version": "5.1.2", - "dev": true, "license": "MIT" }, "node_modules/v8-to-istanbul/node_modules/source-map": { "version": "0.7.4", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">= 8" @@ -32505,7 +31006,6 @@ }, "node_modules/validate-npm-package-license": { "version": "3.0.4", - "dev": true, "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", @@ -32530,7 +31030,6 @@ }, "node_modules/vary": { "version": "1.1.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -32538,7 +31037,6 @@ }, "node_modules/vendors": { "version": "1.0.4", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -32614,12 +31112,10 @@ "node_modules/vm-browserify": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" }, "node_modules/w3c-hr-time": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "browser-process-hrtime": "^1.0.0" @@ -32627,7 +31123,6 @@ }, "node_modules/w3c-xmlserializer": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "xml-name-validator": "^3.0.0" @@ -32638,7 +31133,6 @@ }, "node_modules/wait-on": { "version": "6.0.1", - "dev": true, "license": "MIT", "dependencies": { "axios": "^0.25.0", @@ -32656,12 +31150,10 @@ }, "node_modules/wait-on/node_modules/@hapi/hoek": { "version": "9.3.0", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/wait-on/node_modules/@hapi/topo": { "version": "5.1.0", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" @@ -32669,7 +31161,6 @@ }, "node_modules/wait-on/node_modules/@sideway/address": { "version": "4.1.4", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" @@ -32677,12 +31168,10 @@ }, "node_modules/wait-on/node_modules/@sideway/pinpoint": { "version": "2.0.0", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/wait-on/node_modules/axios": { "version": "0.25.0", - "dev": true, "license": "MIT", "dependencies": { "follow-redirects": "^1.14.7" @@ -32690,7 +31179,6 @@ }, "node_modules/wait-on/node_modules/joi": { "version": "17.6.2", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0", @@ -32707,7 +31195,6 @@ }, "node_modules/walker": { "version": "1.0.8", - "dev": true, "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" @@ -32715,7 +31202,6 @@ }, "node_modules/watchpack": { "version": "2.4.0", - "dev": true, "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", @@ -32727,7 +31213,6 @@ }, "node_modules/wbuf": { "version": "1.7.3", - "dev": true, "license": "MIT", "dependencies": { "minimalistic-assert": "^1.0.0" @@ -32735,7 +31220,6 @@ }, "node_modules/wcwidth": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "defaults": "^1.0.3" @@ -32743,7 +31227,6 @@ }, "node_modules/wcwidth/node_modules/clone": { "version": "1.0.4", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8" @@ -32751,7 +31234,6 @@ }, "node_modules/wcwidth/node_modules/defaults": { "version": "1.0.3", - "dev": true, "license": "MIT", "dependencies": { "clone": "^1.0.2" @@ -32759,14 +31241,12 @@ }, "node_modules/webidl-conversions": { "version": "3.0.1", - "dev": true, "license": "BSD-2-Clause" }, "node_modules/webpack": { "version": "5.76.1", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.1.tgz", "integrity": "sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==", - "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", @@ -32811,7 +31291,6 @@ }, "node_modules/webpack-bundle-analyzer": { "version": "4.6.1", - "dev": true, "license": "MIT", "dependencies": { "acorn": "^8.0.4", @@ -32833,7 +31312,6 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/acorn": { "version": "8.8.0", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -32844,7 +31322,6 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/acorn-walk": { "version": "8.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" @@ -32852,7 +31329,6 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/commander": { "version": "7.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -32860,7 +31336,6 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/ws": { "version": "7.5.9", - "dev": true, "license": "MIT", "engines": { "node": ">=8.3.0" @@ -32880,7 +31355,6 @@ }, "node_modules/webpack-cli": { "version": "4.10.0", - "dev": true, "license": "MIT", "dependencies": { "@discoveryjs/json-ext": "^0.5.0", @@ -32926,7 +31400,6 @@ }, "node_modules/webpack-cli/node_modules/commander": { "version": "7.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -32934,7 +31407,6 @@ }, "node_modules/webpack-cli/node_modules/cross-spawn": { "version": "7.0.3", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -32947,7 +31419,6 @@ }, "node_modules/webpack-cli/node_modules/interpret": { "version": "2.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" @@ -32955,7 +31426,6 @@ }, "node_modules/webpack-cli/node_modules/shebang-command": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -32966,7 +31436,6 @@ }, "node_modules/webpack-cli/node_modules/shebang-regex": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -32974,7 +31443,6 @@ }, "node_modules/webpack-cli/node_modules/which": { "version": "2.0.2", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -32988,7 +31456,6 @@ }, "node_modules/webpack-dev-middleware": { "version": "5.3.3", - "dev": true, "license": "MIT", "dependencies": { "colorette": "^2.0.10", @@ -33010,7 +31477,6 @@ }, "node_modules/webpack-dev-middleware/node_modules/ajv": { "version": "8.11.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -33025,7 +31491,6 @@ }, "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -33036,12 +31501,10 @@ }, "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/webpack-dev-middleware/node_modules/schema-utils": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -33059,7 +31522,6 @@ }, "node_modules/webpack-dev-server": { "version": "4.11.1", - "dev": true, "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.9", @@ -33113,7 +31575,6 @@ }, "node_modules/webpack-dev-server/node_modules/ajv": { "version": "8.11.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -33128,7 +31589,6 @@ }, "node_modules/webpack-dev-server/node_modules/ajv-keywords": { "version": "5.1.0", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -33139,7 +31599,6 @@ }, "node_modules/webpack-dev-server/node_modules/body-parser": { "version": "1.20.0", - "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", @@ -33162,7 +31621,6 @@ }, "node_modules/webpack-dev-server/node_modules/bytes": { "version": "3.1.2", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -33170,7 +31628,6 @@ }, "node_modules/webpack-dev-server/node_modules/content-disposition": { "version": "0.5.4", - "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" @@ -33181,7 +31638,6 @@ }, "node_modules/webpack-dev-server/node_modules/cookie": { "version": "0.5.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -33189,7 +31645,6 @@ }, "node_modules/webpack-dev-server/node_modules/debug": { "version": "2.6.9", - "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -33197,7 +31652,6 @@ }, "node_modules/webpack-dev-server/node_modules/depd": { "version": "2.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -33205,7 +31659,6 @@ }, "node_modules/webpack-dev-server/node_modules/destroy": { "version": "1.2.0", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8", @@ -33214,7 +31667,6 @@ }, "node_modules/webpack-dev-server/node_modules/express": { "version": "4.18.1", - "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.8", @@ -33255,7 +31707,6 @@ }, "node_modules/webpack-dev-server/node_modules/finalhandler": { "version": "1.2.0", - "dev": true, "license": "MIT", "dependencies": { "debug": "2.6.9", @@ -33272,7 +31723,6 @@ }, "node_modules/webpack-dev-server/node_modules/http-errors": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "depd": "2.0.0", @@ -33287,7 +31737,6 @@ }, "node_modules/webpack-dev-server/node_modules/ipaddr.js": { "version": "2.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 10" @@ -33295,12 +31744,10 @@ }, "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/mime": { "version": "1.6.0", - "dev": true, "license": "MIT", "bin": { "mime": "cli.js" @@ -33311,12 +31758,10 @@ }, "node_modules/webpack-dev-server/node_modules/ms": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/on-finished": { "version": "2.4.1", - "dev": true, "license": "MIT", "dependencies": { "ee-first": "1.1.1" @@ -33327,7 +31772,6 @@ }, "node_modules/webpack-dev-server/node_modules/qs": { "version": "6.10.3", - "dev": true, "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" @@ -33341,7 +31785,6 @@ }, "node_modules/webpack-dev-server/node_modules/raw-body": { "version": "2.5.1", - "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", @@ -33355,7 +31798,6 @@ }, "node_modules/webpack-dev-server/node_modules/schema-utils": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", @@ -33373,7 +31815,6 @@ }, "node_modules/webpack-dev-server/node_modules/send": { "version": "0.18.0", - "dev": true, "license": "MIT", "dependencies": { "debug": "2.6.9", @@ -33396,12 +31837,10 @@ }, "node_modules/webpack-dev-server/node_modules/send/node_modules/ms": { "version": "2.1.3", - "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/serve-static": { "version": "1.15.0", - "dev": true, "license": "MIT", "dependencies": { "encodeurl": "~1.0.2", @@ -33415,12 +31854,10 @@ }, "node_modules/webpack-dev-server/node_modules/setprototypeof": { "version": "1.2.0", - "dev": true, "license": "ISC" }, "node_modules/webpack-dev-server/node_modules/statuses": { "version": "2.0.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -33428,7 +31865,6 @@ }, "node_modules/webpack-merge": { "version": "5.8.0", - "dev": true, "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", @@ -33440,7 +31876,6 @@ }, "node_modules/webpack-merge/node_modules/clone-deep": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", @@ -33453,7 +31888,6 @@ }, "node_modules/webpack-merge/node_modules/is-plain-object": { "version": "2.0.4", - "dev": true, "license": "MIT", "dependencies": { "isobject": "^3.0.1" @@ -33464,7 +31898,6 @@ }, "node_modules/webpack-merge/node_modules/kind-of": { "version": "6.0.3", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -33472,7 +31905,6 @@ }, "node_modules/webpack-merge/node_modules/shallow-clone": { "version": "3.0.1", - "dev": true, "license": "MIT", "dependencies": { "kind-of": "^6.0.2" @@ -33483,7 +31915,6 @@ }, "node_modules/webpack-remove-empty-scripts": { "version": "0.8.4", - "dev": true, "license": "ISC", "dependencies": { "ansis": "1.4.0" @@ -33501,7 +31932,6 @@ }, "node_modules/webpack-rtl-plugin": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "@romainberger/css-diff": "^1.0.3", @@ -33513,7 +31943,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/ansi-styles": { "version": "3.2.1", - "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -33524,7 +31953,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/argparse": { "version": "1.0.10", - "dev": true, "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -33532,7 +31960,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/chalk": { "version": "2.4.2", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -33545,7 +31972,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/color-convert": { "version": "1.9.3", - "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -33553,12 +31979,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/color-name": { "version": "1.1.3", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/cosmiconfig": { "version": "5.2.1", - "dev": true, "license": "MIT", "dependencies": { "import-fresh": "^2.0.0", @@ -33572,7 +31996,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-declaration-sorter": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.1", @@ -33584,7 +32007,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-select": { "version": "2.1.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -33595,7 +32017,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-tree": { "version": "1.0.0-alpha.37", - "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.4", @@ -33607,7 +32028,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/css-what": { "version": "3.4.2", - "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -33618,7 +32038,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/cssnano": { "version": "4.1.10", - "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^5.0.0", @@ -33632,7 +32051,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/cssnano-preset-default": { "version": "4.0.8", - "dev": true, "license": "MIT", "dependencies": { "css-declaration-sorter": "^4.0.1", @@ -33672,7 +32090,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/csso": { "version": "4.2.0", - "dev": true, "license": "MIT", "dependencies": { "css-tree": "^1.1.2" @@ -33683,7 +32100,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/csso/node_modules/css-tree": { "version": "1.1.3", - "dev": true, "license": "MIT", "dependencies": { "mdn-data": "2.0.14", @@ -33695,12 +32111,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/csso/node_modules/mdn-data": { "version": "2.0.14", - "dev": true, "license": "CC0-1.0" }, "node_modules/webpack-rtl-plugin/node_modules/dom-serializer": { "version": "0.2.2", - "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", @@ -33709,7 +32123,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/domutils": { "version": "1.7.0", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "0", @@ -33718,12 +32131,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/domutils/node_modules/domelementtype": { "version": "1.3.1", - "dev": true, "license": "BSD-2-Clause" }, "node_modules/webpack-rtl-plugin/node_modules/dot-prop": { "version": "5.3.0", - "dev": true, "license": "MIT", "dependencies": { "is-obj": "^2.0.0" @@ -33734,7 +32145,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/entities": { "version": "2.2.0", - "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -33742,7 +32152,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/escape-string-regexp": { "version": "1.0.5", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -33750,7 +32159,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/has-flag": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -33758,7 +32166,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/import-fresh": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { "caller-path": "^2.0.0", @@ -33770,7 +32177,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/js-yaml": { "version": "3.14.1", - "dev": true, "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -33782,12 +32188,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/mdn-data": { "version": "2.0.4", - "dev": true, "license": "CC0-1.0" }, "node_modules/webpack-rtl-plugin/node_modules/mkdirp": { "version": "0.5.6", - "dev": true, "license": "MIT", "dependencies": { "minimist": "^1.2.6" @@ -33798,7 +32202,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/normalize-url": { "version": "3.3.0", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -33806,7 +32209,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/nth-check": { "version": "1.0.2", - "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "~1.0.0" @@ -33814,7 +32216,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/parse-json": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "error-ex": "^1.3.1", @@ -33826,12 +32227,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/picocolors": { "version": "0.2.1", - "dev": true, "license": "ISC" }, "node_modules/webpack-rtl-plugin/node_modules/postcss": { "version": "7.0.39", - "dev": true, "license": "MIT", "dependencies": { "picocolors": "^0.2.1", @@ -33847,7 +32246,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-calc": { "version": "7.0.5", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.27", @@ -33857,7 +32255,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-colormin": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -33872,12 +32269,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-colormin/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-convert-values": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -33889,12 +32284,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-convert-values/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-comments": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -33905,7 +32298,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-duplicates": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -33916,7 +32308,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-empty": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -33927,7 +32318,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-discard-overridden": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -33938,7 +32328,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-longhand": { "version": "4.0.11", - "dev": true, "license": "MIT", "dependencies": { "css-color-names": "0.0.4", @@ -33952,12 +32341,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-rules": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -33973,7 +32360,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { "version": "3.1.2", - "dev": true, "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -33986,7 +32372,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-font-values": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -33998,12 +32383,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-gradients": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -34017,12 +32400,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-params": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", @@ -34038,12 +32419,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-params/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-selectors": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", @@ -34057,7 +32436,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { "version": "3.1.2", - "dev": true, "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -34070,7 +32448,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-charset": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -34081,7 +32458,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-display-values": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", @@ -34094,12 +32470,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-positions": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -34113,12 +32487,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-repeat-style": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -34132,12 +32504,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-string": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "has": "^1.0.0", @@ -34150,12 +32520,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-timing-functions": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", @@ -34168,12 +32536,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-unicode": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -34186,12 +32552,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-url": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "is-absolute-url": "^2.0.0", @@ -34205,12 +32569,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-whitespace": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -34222,12 +32584,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-ordered-values": { "version": "4.1.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", @@ -34240,12 +32600,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-reduce-initial": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -34259,7 +32617,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-reduce-transforms": { "version": "4.0.2", - "dev": true, "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", @@ -34273,12 +32630,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-svgo": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { "postcss": "^7.0.0", @@ -34291,12 +32646,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/postcss-svgo/node_modules/postcss-value-parser": { "version": "3.3.1", - "dev": true, "license": "MIT" }, "node_modules/webpack-rtl-plugin/node_modules/postcss-unique-selectors": { "version": "4.0.1", - "dev": true, "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", @@ -34309,7 +32662,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/resolve-from": { "version": "3.0.0", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -34317,7 +32669,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/source-map": { "version": "0.6.1", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -34325,12 +32676,10 @@ }, "node_modules/webpack-rtl-plugin/node_modules/sprintf-js": { "version": "1.0.3", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/webpack-rtl-plugin/node_modules/stylehacks": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -34343,7 +32692,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/stylehacks/node_modules/postcss-selector-parser": { "version": "3.1.2", - "dev": true, "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -34356,7 +32704,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/supports-color": { "version": "5.5.0", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -34367,7 +32714,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/svgo": { "version": "1.3.2", - "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.4.1", @@ -34393,7 +32739,6 @@ }, "node_modules/webpack-rtl-plugin/node_modules/webpack-sources": { "version": "1.3.0", - "dev": true, "license": "MIT", "dependencies": { "source-list-map": "^2.0.0", @@ -34402,7 +32747,6 @@ }, "node_modules/webpack-sources": { "version": "3.2.3", - "dev": true, "license": "MIT", "engines": { "node": ">=10.13.0" @@ -34410,7 +32754,6 @@ }, "node_modules/webpack/node_modules/acorn": { "version": "8.8.0", - "dev": true, "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -34421,7 +32764,6 @@ }, "node_modules/webpack/node_modules/acorn-import-assertions": { "version": "1.8.0", - "dev": true, "license": "MIT", "peerDependencies": { "acorn": "^8" @@ -34429,7 +32771,6 @@ }, "node_modules/websocket-driver": { "version": "0.7.4", - "dev": true, "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", @@ -34442,7 +32783,6 @@ }, "node_modules/websocket-extensions": { "version": "0.1.4", - "dev": true, "license": "Apache-2.0", "engines": { "node": ">=0.8.0" @@ -34450,7 +32790,6 @@ }, "node_modules/whatwg-encoding": { "version": "1.0.5", - "dev": true, "license": "MIT", "dependencies": { "iconv-lite": "0.4.24" @@ -34459,17 +32798,14 @@ "node_modules/whatwg-fetch": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", - "dev": true + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" }, "node_modules/whatwg-mimetype": { "version": "2.3.0", - "dev": true, "license": "MIT" }, "node_modules/whatwg-url": { "version": "5.0.0", - "dev": true, "license": "MIT", "dependencies": { "tr46": "~0.0.3", @@ -34478,12 +32814,10 @@ }, "node_modules/whatwg-url/node_modules/tr46": { "version": "0.0.3", - "dev": true, "license": "MIT" }, "node_modules/which": { "version": "1.3.1", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -34494,7 +32828,6 @@ }, "node_modules/which-boxed-primitive": { "version": "1.0.2", - "dev": true, "license": "MIT", "dependencies": { "is-bigint": "^1.0.1", @@ -34511,7 +32844,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, "dependencies": { "is-map": "^2.0.1", "is-set": "^2.0.1", @@ -34531,7 +32863,6 @@ "version": "1.1.9", "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -34557,25 +32888,26 @@ }, "node_modules/wildcard": { "version": "2.0.0", - "dev": true, "license": "MIT" }, "node_modules/word-wrap": { "version": "1.2.3", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/words-count": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/words-count/-/words-count-2.0.2.tgz", + "integrity": "sha512-u0LFfJPhnR0xXu/5WoqWIkgdGJst5GahS4lYy4G5TIX4JAQgeNKD33HpmMoxveVBWNS6W6YZV2OQjVIVLL4K7Q==" + }, "node_modules/wordwrap": { "version": "1.0.0", - "dev": true, "license": "MIT" }, "node_modules/wrap-ansi": { "version": "7.0.0", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", @@ -34591,12 +32923,10 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "dev": true, "license": "ISC" }, "node_modules/write-file-atomic": { "version": "3.0.3", - "dev": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", @@ -34607,7 +32937,6 @@ }, "node_modules/ws": { "version": "8.8.1", - "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" @@ -34631,17 +32960,14 @@ }, "node_modules/xml-name-validator": { "version": "3.0.0", - "dev": true, "license": "Apache-2.0" }, "node_modules/xmlchars": { "version": "2.2.0", - "dev": true, "license": "MIT" }, "node_modules/xtend": { "version": "4.0.2", - "dev": true, "license": "MIT", "engines": { "node": ">=0.4" @@ -34649,21 +32975,18 @@ }, "node_modules/yallist": { "version": "4.0.0", - "dev": true, "license": "ISC" }, "node_modules/yaml": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz", - "integrity": "sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==", - "dev": true, + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", "engines": { "node": ">= 14" } }, "node_modules/yargs": { "version": "17.6.0", - "dev": true, "license": "MIT", "dependencies": { "cliui": "^8.0.1", @@ -34680,7 +33003,6 @@ }, "node_modules/yargs-parser": { "version": "18.1.3", - "dev": true, "license": "ISC", "dependencies": { "camelcase": "^5.0.0", @@ -34692,7 +33014,6 @@ }, "node_modules/yargs-parser/node_modules/camelcase": { "version": "5.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -34700,7 +33021,6 @@ }, "node_modules/yargs/node_modules/cliui": { "version": "8.0.1", - "dev": true, "license": "ISC", "dependencies": { "string-width": "^4.2.0", @@ -34713,7 +33033,6 @@ }, "node_modules/yargs/node_modules/y18n": { "version": "5.0.8", - "dev": true, "license": "ISC", "engines": { "node": ">=10" @@ -34721,7 +33040,6 @@ }, "node_modules/yargs/node_modules/yargs-parser": { "version": "21.1.1", - "dev": true, "license": "ISC", "engines": { "node": ">=12" @@ -34729,7 +33047,6 @@ }, "node_modules/yauzl": { "version": "2.10.0", - "dev": true, "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", @@ -34738,7 +33055,6 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -34746,123 +33062,6 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } - }, - "packages/brand": { - "version": "0.0.2", - "dev": true, - "license": "GPL-3.0-or-later" - }, - "packages/components": { - "version": "1.1.0", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@emotion/styled": "^11.6.0", - "@wordpress/api-fetch": "^5.2.6", - "@wordpress/components": "^19.5.0", - "@wordpress/compose": "^5.0.6", - "@wordpress/element": "^4.14.0", - "@wordpress/i18n": "^4.2.4", - "@wordpress/url": "^3.3.1", - "lodash": "^4.17.21", - "react-select": "^5.2.1", - "throttle-debounce": "^3.0.1" - }, - "devDependencies": { - "@testing-library/react": "^12.1.2" - } - }, - "packages/dev": { - "version": "0.2.1", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "chalk": "^4.1.2", - "columnify": "^1.5.4", - "commander": "^8.2.0", - "inquirer": "^8.2.0", - "replace-in-file": "^6.3.1", - "semver": "^7.3.5", - "yaml": "^1.10.2" - }, - "bin": { - "llms-dev": "src/index.js" - }, - "engines": { - "node": ">=14.14.0" - } - }, - "packages/dev/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "packages/fontawesome": { - "version": "0.0.1", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@emotion/styled": "^11.10.0", - "@fortawesome/fontawesome-free": "^6.1.2", - "react-infinite-scroller": "^1.2.6" - }, - "devDependencies": { - "yaml": "^2.1.1" - } - }, - "packages/icons": { - "version": "1.0.1-alpha.2", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@wordpress/icons": "^6.1.1" - }, - "devDependencies": { - "@babel/core": "^7.16.5", - "babelify": "^10.0.0", - "browserify": "^17.0.0", - "cheerio": "^1.0.0-rc.10", - "react-dom": "^17.0.2", - "react-snap": "^1.23.0" - } - }, - "packages/llms-e2e-test-utils": { - "version": "4.0.1", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@wordpress/e2e-test-utils": "^7.0.0", - "css-xpath": "^1.0.0", - "semver": "^7.3.5" - }, - "peerDependencies": { - "lodash": "^4.17.21" - } - }, - "packages/scripts": { - "version": "4.0.1", - "dev": true, - "license": "GPL-3.0-or-later", - "dependencies": { - "@jest/test-sequencer": "^27.4.6", - "@wordpress/eslint-plugin": "^11.1.0", - "@wordpress/scripts": "^23.6.0", - "dotenv": "^8.2.0", - "eslint-import-resolver-node": "^0.3.6", - "fast-glob": "^3.2.11", - "mini-css-extract-plugin": "^2.6.1", - "webpack-remove-empty-scripts": "^0.8.1", - "webpack-rtl-plugin": "^2.0.0" - } - }, - "packages/utils": { - "version": "1.0.1-alpha.1", - "dev": true, - "license": "GPL-3.0-or-later" } } } From 69f2fea9b7bd8149b3b70809286b2f8b3f3c564d Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 14 Jul 2023 17:14:44 +0200 Subject: [PATCH 12/62] fix cs/docs --- .../admin/views/setup-wizard/step-pages.php | 10 +-- includes/class.llms.install.php | 78 ++++++++++++------- 2 files changed, 54 insertions(+), 34 deletions(-) diff --git a/includes/admin/views/setup-wizard/step-pages.php b/includes/admin/views/setup-wizard/step-pages.php index d10b7e8004..79d4de49de 100644 --- a/includes/admin/views/setup-wizard/step-pages.php +++ b/includes/admin/views/setup-wizard/step-pages.php @@ -3,8 +3,8 @@ * Setup Wizard step: Page Setup * * @since 4.4.4 - * @since [version] Using the LLMS_Install::get_pages() method now. - * @version 4.4.4 + * @since [version] Using the `LLMS_Install::get_pages()` method now. + * @version [version] * * @property LLMS_Admin_Setup_Wizard $this Setup wizard class instance. */ @@ -18,15 +18,15 @@ - - + + '', - 'option' => 'lifterlms_shop_page_id', - 'slug' => 'courses', - 'title' => esc_html__( 'Course Catalog', 'lifterlms' ), + 'content' => '', + 'option' => 'lifterlms_shop_page_id', + 'slug' => 'courses', + 'title' => esc_html__( 'Course Catalog', 'lifterlms' ), 'wizard_title' => esc_html__( 'Course Catalog', 'lifterlms' ), - 'description' => esc_html__( 'This page is where your visitors will find a list of all your available courses.', 'lifterlms' ), - 'docs_url' => 'https://lifterlms.com/docs/course-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Course%20Catalog', + 'description' => esc_html__( 'This page is where your visitors will find a list of all your available courses.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/course-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Course%20Catalog', ), array( - 'content' => '', - 'option' => 'lifterlms_memberships_page_id', - 'slug' => 'memberships', - 'title' => esc_html__( 'Membership Catalog', 'lifterlms' ), + 'content' => '', + 'option' => 'lifterlms_memberships_page_id', + 'slug' => 'memberships', + 'title' => esc_html__( 'Membership Catalog', 'lifterlms' ), 'wizard_title' => esc_html__( 'Membership Catalog', 'lifterlms' ), - 'description' => esc_html__( 'This page is where your visitors will find a list of all your available memberships.', 'lifterlms' ), - 'docs_url' => 'https://lifterlms.com/docs/membership-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Membership%20Catalog', + 'description' => esc_html__( 'This page is where your visitors will find a list of all your available memberships.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/membership-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Membership%20Catalog', ), array( - 'content' => '[lifterlms_checkout]', - 'option' => 'lifterlms_checkout_page_id', - 'slug' => 'purchase', - 'title' => esc_html__( 'Purchase', 'lifterlms' ), + 'content' => '[lifterlms_checkout]', + 'option' => 'lifterlms_checkout_page_id', + 'slug' => 'purchase', + 'title' => esc_html__( 'Purchase', 'lifterlms' ), 'wizard_title' => esc_html__( 'Checkout', 'lifterlms' ), - 'description' => esc_html__( 'This is the page where visitors will be directed in order to pay for courses and memberships.', 'lifterlms' ), - 'docs_url' => 'https://lifterlms.com/docs/checkout-page/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Checkout%20Page', + 'description' => esc_html__( 'This is the page where visitors will be directed in order to pay for courses and memberships.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/checkout-page/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Checkout%20Page', ), array( - 'content' => '[lifterlms_my_account]', - 'option' => 'lifterlms_myaccount_page_id', - 'slug' => 'dashboard', - 'title' => esc_html__( 'Dashboard', 'lifterlms' ), + 'content' => '[lifterlms_my_account]', + 'option' => 'lifterlms_myaccount_page_id', + 'slug' => 'dashboard', + 'title' => esc_html__( 'Dashboard', 'lifterlms' ), 'wizard_title' => esc_html__( 'Student Dashboard', 'lifterlms' ), - 'description' => esc_html__( 'Page where students can view and manage their current enrollments, earned certificates and achievements, account information, and purchase history.', 'lifterlms' ), - 'docs_url' => 'https://lifterlms.com/docs/student-dashboard/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Student%20Dashboard', + 'description' => esc_html__( 'Page where students can view and manage their current enrollments, earned certificates and achievements, account information, and purchase history.', 'lifterlms' ), + 'docs_url' => 'https://lifterlms.com/docs/student-dashboard/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Student%20Dashboard', ), ) ); } /** - * Create essential starter pages + * Create essential starter pages. * * @since 1.0.0 * @since 3.24.0 Unknown. - * @since [version] Using get_pages method now. + * @since [version] Using `$this->get_pages()` method now. * * @return boolean False on error, true on success. */ public static function create_pages() { - $pages = apply_filters( 'llms_install_create_pages', LLMS_Install::get_pages() ); + /** + * Filters the essential pages to be installed. + * + * @since 3.0.0 + * + * {@see `llms_install_get_pages} filter hook. + * + * @param array $pages A multidimensional array defining the essential starter pages to be installed. + */ + $pages = apply_filters( 'llms_install_create_pages', self::get_pages() ); foreach ( $pages as $page ) { if ( ! llms_create_page( $page['slug'], $page['title'], $page['content'], $page['option'] ) ) { return false; From 5e5f17fa692c0c90d1dfb6de0b607951f477095a Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 14 Jul 2023 17:16:14 +0200 Subject: [PATCH 13/62] changelog --- .changelogs/enhancement_filter-wizard-pages.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelogs/enhancement_filter-wizard-pages.yml diff --git a/.changelogs/enhancement_filter-wizard-pages.yml b/.changelogs/enhancement_filter-wizard-pages.yml new file mode 100644 index 0000000000..2a020cd45b --- /dev/null +++ b/.changelogs/enhancement_filter-wizard-pages.yml @@ -0,0 +1,3 @@ +significance: patch +type: dev +entry: Added new filter `llms_install_get_pages`. From 30b6ed18fbd31988a6f1a5507e7f4131b52cb10b Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 14 Jul 2023 17:19:42 +0200 Subject: [PATCH 14/62] Delete dev.yml outdated changelog file --- .changelogs/dev.yml | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .changelogs/dev.yml diff --git a/.changelogs/dev.yml b/.changelogs/dev.yml deleted file mode 100644 index 47cf95286e..0000000000 --- a/.changelogs/dev.yml +++ /dev/null @@ -1,4 +0,0 @@ -significance: patch -type: changed -entry: The llms_install_create_pages filter can now be used to manage the pages - shown in the setup wizard. From 0b790622ea15c07dbb1d54a31334f43325439462 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Mon, 17 Jul 2023 17:01:15 +0800 Subject: [PATCH 15/62] Change `render_block_llms/navigation-link` filter to `render_block` for compatibility with LLMS block visibility. --- .changelogs/llms-link-visibility.yml | 3 +++ includes/class.llms.nav.menus.php | 11 +++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .changelogs/llms-link-visibility.yml diff --git a/.changelogs/llms-link-visibility.yml b/.changelogs/llms-link-visibility.yml new file mode 100644 index 0000000000..983aaa05f7 --- /dev/null +++ b/.changelogs/llms-link-visibility.yml @@ -0,0 +1,3 @@ +significance: patch +type: fixed +entry: Use `render_block_llms/navigation-link` filter instead of `render_block` for compatibility with LLMS block visibility. diff --git a/includes/class.llms.nav.menus.php b/includes/class.llms.nav.menus.php index 61e5eecb90..95d37d9bcd 100644 --- a/includes/class.llms.nav.menus.php +++ b/includes/class.llms.nav.menus.php @@ -5,7 +5,7 @@ * @package LifterLMS/Classes * * @since 3.14.7 - * @version 7.2.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -29,6 +29,7 @@ class LLMS_Nav_Menus { * @since 7.1.0 Postpone the LifterLMS menu meta box addition to `admin_head-nav-menus.php` * rather than `load-nav-menus.php` it's not initially hidden (for new users). * @since 7.2.0 Add navigation link block and enqueue block editor assets. + * @since [version] Change `render_block_llms/navigation-link` to `render_block` for compatibility with LLMS block visibility. * * @return void */ @@ -53,7 +54,7 @@ public function __construct() { add_action( 'init', array( $this, 'register_block' ) ); // Render block. - add_filter( 'render_block_llms/navigation-link', array( $this, 'render_block' ), 10, 2 ); + add_filter( 'render_block', array( $this, 'render_block' ), 10, 2 ); // Load menu items data in block editor. add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ) ); @@ -373,12 +374,18 @@ public function register_block() { * Render the navigation link block. * * @since 7.2.0 + * @since [version] Add block name check since filter changed. * * @param string $block_content Block content. * @param array $block Block data. * @return string */ public function render_block( string $block_content, array $block ) : string { + + if ( $block['blockName'] !== 'llms/navigation-link' ) { + return $block_content; + } + $items = $this->filter_nav_items( $this->get_nav_items() ); $url = $items[ $block['attrs']['page'] ]['url'] ?? ''; From 3aa3942fb276f3078bf6e33c90dafb10fff84e76 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Mon, 17 Jul 2023 18:22:18 +0800 Subject: [PATCH 16/62] Coding standards yoda condition --- includes/class.llms.nav.menus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class.llms.nav.menus.php b/includes/class.llms.nav.menus.php index 95d37d9bcd..667e8fa1b0 100644 --- a/includes/class.llms.nav.menus.php +++ b/includes/class.llms.nav.menus.php @@ -382,7 +382,7 @@ public function register_block() { */ public function render_block( string $block_content, array $block ) : string { - if ( $block['blockName'] !== 'llms/navigation-link' ) { + if ( 'llms/navigation-link' !== $block['blockName'] ) { return $block_content; } From ee17f280f0dd4d89bb843f99d24d32bf945b877e Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Mon, 17 Jul 2023 20:45:42 +0800 Subject: [PATCH 17/62] Make changelog entry easier to understand for users --- .changelogs/llms-link-visibility.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changelogs/llms-link-visibility.yml b/.changelogs/llms-link-visibility.yml index 983aaa05f7..5f040d24a7 100644 --- a/.changelogs/llms-link-visibility.yml +++ b/.changelogs/llms-link-visibility.yml @@ -1,3 +1,3 @@ significance: patch type: fixed -entry: Use `render_block_llms/navigation-link` filter instead of `render_block` for compatibility with LLMS block visibility. +entry: Fixed issue with LifterLMS Navigation Link block and block visibility settings. From ce3878efaabf8876b406ae941f4d8e91a91892a4 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 17 Jul 2023 15:12:33 +0200 Subject: [PATCH 18/62] Update llms-link-visibility.yml --- .changelogs/llms-link-visibility.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.changelogs/llms-link-visibility.yml b/.changelogs/llms-link-visibility.yml index 5f040d24a7..b254e12867 100644 --- a/.changelogs/llms-link-visibility.yml +++ b/.changelogs/llms-link-visibility.yml @@ -1,3 +1,5 @@ significance: patch type: fixed +links: + - "#2474" entry: Fixed issue with LifterLMS Navigation Link block and block visibility settings. From eedc01eeae405e1ec83cfb4fea669579d7b28449 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Tue, 18 Jul 2023 13:27:00 +0800 Subject: [PATCH 19/62] Use dashboard as default value for navigation link block --- .changelogs/nav-link-block-default.yml | 3 +++ includes/class.llms.nav.menus.php | 12 ++++++++++-- src/blocks/navigation-link/block.json | 6 ++++-- 3 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 .changelogs/nav-link-block-default.yml diff --git a/.changelogs/nav-link-block-default.yml b/.changelogs/nav-link-block-default.yml new file mode 100644 index 0000000000..20851ff8db --- /dev/null +++ b/.changelogs/nav-link-block-default.yml @@ -0,0 +1,3 @@ +significance: minor +type: changed +entry: Use dashboard as default value for navigation link block. diff --git a/includes/class.llms.nav.menus.php b/includes/class.llms.nav.menus.php index 667e8fa1b0..516ce0988f 100644 --- a/includes/class.llms.nav.menus.php +++ b/includes/class.llms.nav.menus.php @@ -387,17 +387,25 @@ public function render_block( string $block_content, array $block ) : string { } $items = $this->filter_nav_items( $this->get_nav_items() ); - $url = $items[ $block['attrs']['page'] ]['url'] ?? ''; + $page = $block['attrs']['page'] ?? 'dashboard'; + + if ( ! $page ) { + return ''; + } + + $url = $items[ $page ]['url'] ?? ''; // Support conditional URLs, e.g. when user logged in or not. if ( ! $url ) { return ''; } + $label = $block['attrs']['label'] ?? $items[ $page ]['label'] ?? ''; + $html = '
  • '; $html .= ''; $html .= ''; - $html .= esc_html( $block['attrs']['label'] ); + $html .= esc_html( $label ); $html .= '
  • '; return $html; diff --git a/src/blocks/navigation-link/block.json b/src/blocks/navigation-link/block.json index 7f581aca09..6331556d99 100644 --- a/src/blocks/navigation-link/block.json +++ b/src/blocks/navigation-link/block.json @@ -26,10 +26,12 @@ "textdomain": "lifterlms", "attributes": { "label": { - "type": "string" + "type": "string", + "default": "Dashboard" }, "page": { - "type": "string" + "type": "string", + "default": "dashboard" }, "llms_visibility": { "type": "string" From f5fc0f571e0dcd22a8b7e6daae227c877e2dc843 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Tue, 18 Jul 2023 16:20:59 +0800 Subject: [PATCH 20/62] Update changelog to patch and add link to issue --- .changelogs/nav-link-block-default.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.changelogs/nav-link-block-default.yml b/.changelogs/nav-link-block-default.yml index 20851ff8db..fa3f8d2854 100644 --- a/.changelogs/nav-link-block-default.yml +++ b/.changelogs/nav-link-block-default.yml @@ -1,3 +1,5 @@ -significance: minor -type: changed +significance: patch +type: fixed +links: + - "#2465" entry: Use dashboard as default value for navigation link block. From ddc74ed7532dff9db446d90e102b5852afcfb5fb Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 19 Jul 2023 17:19:47 +0200 Subject: [PATCH 21/62] Update nav-link-block-default.yml --- .changelogs/nav-link-block-default.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changelogs/nav-link-block-default.yml b/.changelogs/nav-link-block-default.yml index fa3f8d2854..dfcf59fa2e 100644 --- a/.changelogs/nav-link-block-default.yml +++ b/.changelogs/nav-link-block-default.yml @@ -2,4 +2,4 @@ significance: patch type: fixed links: - "#2465" -entry: Use dashboard as default value for navigation link block. +entry: Use student dashboard as default value for navigation link block. From 9f48f06350e62d8aa204ecc77bf06acb6249673c Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Thu, 20 Jul 2023 11:02:34 +0800 Subject: [PATCH 22/62] Fix warning for themes without sidebar.php template --- .changelogs/fix-sidebar-fse.yml | 5 +++++ templates/global/sidebar.php | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 .changelogs/fix-sidebar-fse.yml diff --git a/.changelogs/fix-sidebar-fse.yml b/.changelogs/fix-sidebar-fse.yml new file mode 100644 index 0000000000..5124d29e78 --- /dev/null +++ b/.changelogs/fix-sidebar-fse.yml @@ -0,0 +1,5 @@ +significance: patch +type: fixed +links: + - "#2488" +entry: Fixed warning for themes without sidebar.php template. diff --git a/templates/global/sidebar.php b/templates/global/sidebar.php index aad1592bc1..6eeee9f5ce 100644 --- a/templates/global/sidebar.php +++ b/templates/global/sidebar.php @@ -5,9 +5,12 @@ * @package LifterLMS/Templates * * @since Unknown - * @version Unknown + * @since [version] Fix warning for themes without sidebar.php template. + * @version [version] */ defined( 'ABSPATH' ) || exit; -get_sidebar( 'llms_shop' ); +if ( ABSPATH . WPINC . '/theme-compat/sidebar.php' !== locate_template( array( 'sidebar-llms_shop', 'sidebar.php' ) ) ) { + get_sidebar( 'llms_shop' ); +} From 5ee63177551a6775056c9415da870904b0d63ce2 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Thu, 20 Jul 2023 18:17:13 +0800 Subject: [PATCH 23/62] Limit sidebar check to block themes --- templates/global/sidebar.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/templates/global/sidebar.php b/templates/global/sidebar.php index 6eeee9f5ce..fb51b0a4fd 100644 --- a/templates/global/sidebar.php +++ b/templates/global/sidebar.php @@ -11,6 +11,12 @@ defined( 'ABSPATH' ) || exit; -if ( ABSPATH . WPINC . '/theme-compat/sidebar.php' !== locate_template( array( 'sidebar-llms_shop', 'sidebar.php' ) ) ) { - get_sidebar( 'llms_shop' ); +$core_fallback = ABSPATH . WPINC . '/theme-compat/sidebar.php'; +$sidebar_templates = array( 'sidebar-llms_shop.php', 'sidebar.php' ); + +// Return early if using block theme with no sidebar template. +if ( wp_is_block_theme() && $core_fallback === locate_template( $sidebar_templates ) ) { + return; } + +get_sidebar( 'llms_shop' ); From 3ecaff1da61bb992d5dfba549050a3959d1c905d Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Thu, 20 Jul 2023 19:22:58 +0800 Subject: [PATCH 24/62] Update changelog entry to be more informative --- .changelogs/fix-sidebar-fse.yml | 2 +- templates/global/sidebar.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.changelogs/fix-sidebar-fse.yml b/.changelogs/fix-sidebar-fse.yml index 5124d29e78..b1c412c6e5 100644 --- a/.changelogs/fix-sidebar-fse.yml +++ b/.changelogs/fix-sidebar-fse.yml @@ -2,4 +2,4 @@ significance: patch type: fixed links: - "#2488" -entry: Fixed warning for themes without sidebar.php template. +entry: Don't include WordPress default sidebar.php template when using a block theme. diff --git a/templates/global/sidebar.php b/templates/global/sidebar.php index fb51b0a4fd..598c0e7a5b 100644 --- a/templates/global/sidebar.php +++ b/templates/global/sidebar.php @@ -5,7 +5,7 @@ * @package LifterLMS/Templates * * @since Unknown - * @since [version] Fix warning for themes without sidebar.php template. + * @since [version] Don't include WordPress default sidebar.php template when using a block theme. * @version [version] */ From 88ac2b66ee98db47410a2bc42a587f242e28cd59 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Thu, 20 Jul 2023 16:24:32 +0200 Subject: [PATCH 25/62] Fix cs on sidebar.php --- templates/global/sidebar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/global/sidebar.php b/templates/global/sidebar.php index 598c0e7a5b..cfdb9cb92a 100644 --- a/templates/global/sidebar.php +++ b/templates/global/sidebar.php @@ -15,7 +15,7 @@ $sidebar_templates = array( 'sidebar-llms_shop.php', 'sidebar.php' ); // Return early if using block theme with no sidebar template. -if ( wp_is_block_theme() && $core_fallback === locate_template( $sidebar_templates ) ) { +if ( wp_is_block_theme() && locate_template( $sidebar_templates ) === $core_fallback ) { return; } From 619895a86e84f5254a93e505b8b3fec6dc7b4b79 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Sun, 16 Jul 2023 13:38:48 +0200 Subject: [PATCH 26/62] Display a warning icon for each access plan within the editor when there's a notice related to it --- assets/js/llms-metabox-product.js | 54 ++++++++++++++----- .../scss/admin/metaboxes/_llms-metabox.scss | 6 +++ .../admin/metaboxes/_metabox-product.scss | 9 ++-- 3 files changed, 52 insertions(+), 17 deletions(-) diff --git a/assets/js/llms-metabox-product.js b/assets/js/llms-metabox-product.js index ab80d5e1b1..ca11558b6c 100644 --- a/assets/js/llms-metabox-product.js +++ b/assets/js/llms-metabox-product.js @@ -1,11 +1,12 @@ /** - * Product Options MetaBox - * Displays on Course & Membership Post Types + * Product Options MetaBox. + * + * Displays on Course & Membership Post Types. * * @since 3.0.0 * @since 3.30.3 Unknown. * @since 3.36.3 Fixed conflicts with the Classic Editor block. - * @version 3.36.3 + * @version [version] */ ( function( $ ) { @@ -43,12 +44,15 @@ this.validation_class = 'llms-invalid'; /** - * Initialize + * Initialize. * - * @param bool skip_dep_checks if true, skips dependency checks. - * @return void - * @since 3.0.0 - * @version 3.29.3 + * @param bool skip_dep_checks If true, skips dependency checks. + * + * @since 3.0.0 + * @since 3.29.3 Unknown. + * @since [version] Check on whether access plans require attention. + * + * @return {Void} */ this.init = function( skip_dep_checks ) { @@ -63,7 +67,12 @@ if ( ! $mb.length ) { return; - } else if ( skip_dep_checks ) { + } + + // Check whether the warning icon should be displayed. + self.requiresAttention(); + + if ( skip_dep_checks ) { self.bind(); return; } @@ -105,13 +114,12 @@ }; /** - * Bind DOM Events + * Bind DOM Events. * - * @since 3.0.0 - * @since 3.30.0 Add checkout redirect fields events. - * @version 3.30.0 + * @since 3.0.0 + * @since 3.30.0 Add checkout redirect fields events. * - * @return void + * @return {Void} */ this.bind = function() { @@ -319,6 +327,24 @@ }; + /** + * Checks whether the access plan requires attention, e.g. because it contains notices. + * + * And if so adds the class `llms-needs-attention` to the access plan. + * + * @since [version] + * + * @return {Void} + */ + this.requiresAttention = function() { + var self = this; + self.$plans.find( '.llms-access-plan' ).each( + function() { + $(this).toggleClass( 'llms-needs-attention', $(this).find('p.notice').length > 0 ); + } + ); + } + /** * Handle physical deletion of a plan element * If the plan hasn't be persisted to the database it's removed from the dom diff --git a/assets/scss/admin/metaboxes/_llms-metabox.scss b/assets/scss/admin/metaboxes/_llms-metabox.scss index ec6a2217e7..6bd7c3b382 100644 --- a/assets/scss/admin/metaboxes/_llms-metabox.scss +++ b/assets/scss/admin/metaboxes/_llms-metabox.scss @@ -196,6 +196,12 @@ &.dashicons-no:hover { color: $color-danger; } + &.dashicons-warning.medium-danger { + &, + &:hover { + color: $color-orange; + } + } } } diff --git a/assets/scss/admin/metaboxes/_metabox-product.scss b/assets/scss/admin/metaboxes/_metabox-product.scss index 91a1650b6e..c4c4e758a8 100644 --- a/assets/scss/admin/metaboxes/_metabox-product.scss +++ b/assets/scss/admin/metaboxes/_metabox-product.scss @@ -31,11 +31,12 @@ display: inline; } } - + .llms-needs-attention .dashicons-warning.medium-danger { + display: inline; + } .dashicons-warning { display: none; } - } .llms-access-plan { @@ -66,7 +67,9 @@ color: $color-danger; margin-left: 3px; } - + .notice { + margin-left: 0; + } } } From 065d75ac0cec4f4cd310d2e5b1c54eed6cf879d9 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Sun, 16 Jul 2023 13:41:06 +0200 Subject: [PATCH 27/62] changelog --- .changelogs/access-plans-with-warnings.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changelogs/access-plans-with-warnings.yml diff --git a/.changelogs/access-plans-with-warnings.yml b/.changelogs/access-plans-with-warnings.yml new file mode 100644 index 0000000000..1ec7130bee --- /dev/null +++ b/.changelogs/access-plans-with-warnings.yml @@ -0,0 +1,5 @@ +significance: patch +type: changed +entry: When a notice is shown for an access plan on the course edit screen (e.g. + When using the WooCommerce integration and no product has been associated to + the access plan), also display a warning icon next to the access plan title. From 600e7b8a27ac4cef8746eff6e44001a88d5f2a88 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Sun, 16 Jul 2023 13:53:52 +0200 Subject: [PATCH 28/62] views --- includes/admin/views/access-plans/access-plan.php | 5 +++++ includes/admin/views/access-plans/metabox.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/includes/admin/views/access-plans/access-plan.php b/includes/admin/views/access-plans/access-plan.php index 16d4c03525..9a7d746f85 100644 --- a/includes/admin/views/access-plans/access-plan.php +++ b/includes/admin/views/access-plans/access-plan.php @@ -9,6 +9,8 @@ * @since 3.31.0 Change sale_price input from text to number to ensure min value validation is properly enforced by browsers. * @since 3.37.18 Don't localize the price "step" html attribute. * @since 4.14.0 Get the access plan's raw content to display it in the wp_editor. + * @since [version] Added another icon for possible issues with the access plan configuration. + * @version [version] * * @var LLMS_Course $course LLMS_Course. * @var array $checkout_redirection_types Checkout redirect setting options. @@ -56,6 +58,9 @@
    + + + diff --git a/includes/admin/views/access-plans/metabox.php b/includes/admin/views/access-plans/metabox.php index 76f21667fd..d691402869 100644 --- a/includes/admin/views/access-plans/metabox.php +++ b/includes/admin/views/access-plans/metabox.php @@ -2,7 +2,7 @@ /** * Product Options Admin Metabox HTML * - * @package LifterLMS/Admin/Views + * @package LifterLMS/Admin/Views * * @since 3.0.0 * @since 6.0.0 Fix closing tag inside the `llms-no-plans-msg` div element. From 44fd391c20b8bf8d8126e75e6f901997c2ed6edb Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 21 Jul 2023 08:45:10 +0200 Subject: [PATCH 29/62] Update access-plans-with-warnings.yml --- .changelogs/access-plans-with-warnings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changelogs/access-plans-with-warnings.yml b/.changelogs/access-plans-with-warnings.yml index 1ec7130bee..f23916ec3e 100644 --- a/.changelogs/access-plans-with-warnings.yml +++ b/.changelogs/access-plans-with-warnings.yml @@ -2,4 +2,4 @@ significance: patch type: changed entry: When a notice is shown for an access plan on the course edit screen (e.g. When using the WooCommerce integration and no product has been associated to - the access plan), also display a warning icon next to the access plan title. + the access plan.) Also display a warning icon next to the access plan title. From dda009b63b70ee681b24747781f3939d4c3733d9 Mon Sep 17 00:00:00 2001 From: Sapayth Hossain Date: Mon, 24 Jul 2023 20:08:04 +0600 Subject: [PATCH 30/62] additional param to filter hook Add $tab additional param to 'lifterlms_reporting_tab_cap' filter hook --- includes/admin/reporting/class.llms.admin.reporting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin/reporting/class.llms.admin.reporting.php b/includes/admin/reporting/class.llms.admin.reporting.php index 8e7ddc63c9..5c5358ac9a 100644 --- a/includes/admin/reporting/class.llms.admin.reporting.php +++ b/includes/admin/reporting/class.llms.admin.reporting.php @@ -357,7 +357,7 @@ private function get_tab_cap( $tab = null ) { $cap = 'view_others_lifterlms_reports'; } - return apply_filters( 'lifterlms_reporting_tab_cap', $cap ); + return apply_filters( 'lifterlms_reporting_tab_cap', $cap, $tab ); } /** From 5a8e7583fceff529f54e7703335ff1c562840a99 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 24 Jul 2023 17:46:05 +0200 Subject: [PATCH 31/62] docs --- ..._to_filter_hook_lifterlms_reporting_tab_cap.yml | 8 ++++++++ .../admin/reporting/class.llms.admin.reporting.php | 14 ++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml diff --git a/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml b/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml new file mode 100644 index 0000000000..72f24f0d4d --- /dev/null +++ b/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml @@ -0,0 +1,8 @@ +significance: patch +type: dev +links: + - "#2468" +attributions: + - "@sapayth" +entry: Added the parameter `$tab` (ID/slug of the tab) to the filter + `lifterlms_reporting_tab_cap`. diff --git a/includes/admin/reporting/class.llms.admin.reporting.php b/includes/admin/reporting/class.llms.admin.reporting.php index 5c5358ac9a..df206a4505 100644 --- a/includes/admin/reporting/class.llms.admin.reporting.php +++ b/includes/admin/reporting/class.llms.admin.reporting.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Reporting/Classes * * @since 3.2.0 - * @version 6.11.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -344,6 +344,7 @@ private function get_tabs() { * within the view. * * @since 3.19.4 + * @since [version] Use `in_array()` with strict type comparison. * * @param string $tab ID/slug of the tab. * @return string @@ -353,10 +354,19 @@ private function get_tab_cap( $tab = null ) { $tab = is_null( $tab ) ? self::get_current_tab() : $tab; $cap = 'view_lifterlms_reports'; - if ( in_array( $tab, array( 'sales', 'enrollments' ) ) ) { + if ( in_array( $tab, array( 'sales', 'enrollments' ), true ) ) { $cap = 'view_others_lifterlms_reports'; } + /** + * Filters the WP capability required to access a reporting tab. + * + * @since 3.19.4 + * @since [version] Added the `$tab` parameter. + * + * @param string $cap The required WP capability. + * @param string|null $tab ID/slug of the tab. + */ return apply_filters( 'lifterlms_reporting_tab_cap', $cap, $tab ); } From 18e6401f459f2f98225941904b799fc0350adec0 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 24 Jul 2023 17:54:57 +0200 Subject: [PATCH 32/62] Update add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml --- ...ional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml b/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml index 72f24f0d4d..4a30e69b20 100644 --- a/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml +++ b/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml @@ -4,5 +4,5 @@ links: - "#2468" attributions: - "@sapayth" -entry: Added the parameter `$tab` (ID/slug of the tab) to the filter - `lifterlms_reporting_tab_cap`. +entry: Added the parameter `$tab` (ID/slug of the tab) to the + `lifterlms_reporting_tab_cap` filter hook. From ed500610d1fdb617f0518618d77552ab3446404c Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Sun, 16 Jul 2023 11:00:51 +0200 Subject: [PATCH 33/62] Escape install pages fields translations only when needed. Strip all tags from essential page titles. Slash page data prior to pass it to `wp_insert_post`. --- includes/admin/llms.functions.admin.php | 79 ++++++++++++++++++++----- includes/class.llms.install.php | 24 ++++---- 2 files changed, 75 insertions(+), 28 deletions(-) diff --git a/includes/admin/llms.functions.admin.php b/includes/admin/llms.functions.admin.php index 2cc19e45b1..22329cd0e0 100644 --- a/includes/admin/llms.functions.admin.php +++ b/includes/admin/llms.functions.admin.php @@ -5,21 +5,24 @@ * @package LifterLMS/Admin/Functions * * @since 3.0.0 - * @version 7.1.3 + * @version [version] */ defined( 'ABSPATH' ) || exit; /** - * Create a Page & save it's id as an option + * Create a Page & save it's id as an option. * - * @param string $slug page slug - * @param string $title page title - * @param string $content page content - * @param string $option option name - * @return int page id - * @since 3.0.0 - * @version 3.7.5 + * @since 3.0.0 + * @since 3.7.5 Unknown. + * @since [version] Strip all tags from the page title, slash the page data prior to inserting the page in the db via `wp_insert_post`. + * Prefer strict type comparison when using `in_array()`. + * + * @param string $slug Page slug. + * @param string $title Page title. + * @param string $content Page content + * @param string $option Option name. + * @return int Page id. */ function llms_create_page( $slug, $title = '', $content = '', $option = '' ) { @@ -28,7 +31,8 @@ function llms_create_page( $slug, $title = '', $content = '', $option = '' ) { // See if there's a valid page already stored for the option we're trying to create. if ( $option_val && is_numeric( $option_val ) ) { $page_object = get_post( $option_val ); - if ( $page_object && 'page' === $page_object->post_type && ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ) ) ) { + if ( $page_object && 'page' === $page_object->post_type && + ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ), true ) ) { return $page_object->ID; } } @@ -37,11 +41,30 @@ function llms_create_page( $slug, $title = '', $content = '', $option = '' ) { // Search for an existing page with the specified page content like a shortcode. if ( strlen( $content ) > 0 ) { - $page_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_content LIKE %s LIMIT 1;", "%{$content}%" ) ); + $page_id = $wpdb->get_var( + $wpdb->prepare( + "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_content LIKE %s LIMIT 1;", + "%{$content}%" + ) + );// no-cache ok. } else { - $page_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug ) ); + $page_id = $wpdb->get_var( + $wpdb->prepare( + "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", + $slug + ) + );// no-cache ok. } + /** + * Filters the ID of the page to be created. + * + * @since 3.0.0 + * + * @param int $page_id The WP_Post ID of the page. + * @param string $slug The page slug. + * @param string $content THe content of the page. + */ $page_id = apply_filters( 'llms_create_page_id', $page_id, $slug, $content ); if ( $page_id ) { if ( $option ) { @@ -52,9 +75,19 @@ function llms_create_page( $slug, $title = '', $content = '', $option = '' ) { // Look in the trashed page by content. if ( strlen( $content ) > 0 ) { - $trashed_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_content LIKE %s LIMIT 1;", "%{$content}%" ) ); + $trashed_id = $wpdb->get_var( + $wpdb->prepare( + "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_content LIKE %s LIMIT 1;", + "%{$content}%" + ) + );// no-cache ok. } else { - $trashed_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug ) ); + $trashed_id = $wpdb->get_var( + $wpdb->prepare( + "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", + $slug + ) + );// no-cache ok. } // If we find it in the trash move it out of the trash. @@ -71,11 +104,25 @@ function llms_create_page( $slug, $title = '', $content = '', $option = '' ) { 'post_type' => 'page', 'post_author' => get_current_user_id() ? get_current_user_id() : 1, 'post_name' => $slug, - 'post_title' => $title, + 'post_title' => wp_strip_all_tags( $title ), 'post_content' => $content, 'comment_status' => 'closed', ); - $page_id = wp_insert_post( apply_filters( 'llms_create_page', $page_data ) ); + $page_id = wp_insert_post( + wp_slash( + /** + * Filters the page data passed to create a page. + * + * The output of this filter will be slashed via `wp_slash` prior + * to be passed to `wp_insert_post`. + * + * @since 3.0.0 + * + * @param array $page_data Array of page data. + */ + apply_filters( 'llms_create_page', $page_data ) + ) + ); } if ( $option ) { update_option( $option, $page_id ); diff --git a/includes/class.llms.install.php b/includes/class.llms.install.php index 2d3732ecc8..089aa3cd02 100644 --- a/includes/class.llms.install.php +++ b/includes/class.llms.install.php @@ -262,36 +262,36 @@ public static function get_pages() { 'content' => '', 'option' => 'lifterlms_shop_page_id', 'slug' => 'courses', - 'title' => esc_html__( 'Course Catalog', 'lifterlms' ), - 'wizard_title' => esc_html__( 'Course Catalog', 'lifterlms' ), - 'description' => esc_html__( 'This page is where your visitors will find a list of all your available courses.', 'lifterlms' ), + 'title' => __( 'Course Catalog', 'lifterlms' ), + 'wizard_title' => __( 'Course Catalog', 'lifterlms' ), + 'description' => __( 'This page is where your visitors will find a list of all your available courses.', 'lifterlms' ), 'docs_url' => 'https://lifterlms.com/docs/course-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Course%20Catalog', ), array( 'content' => '', 'option' => 'lifterlms_memberships_page_id', 'slug' => 'memberships', - 'title' => esc_html__( 'Membership Catalog', 'lifterlms' ), - 'wizard_title' => esc_html__( 'Membership Catalog', 'lifterlms' ), - 'description' => esc_html__( 'This page is where your visitors will find a list of all your available memberships.', 'lifterlms' ), + 'title' => __( 'Membership Catalog', 'lifterlms' ), + 'wizard_title' => __( 'Membership Catalog', 'lifterlms' ), + 'description' => __( 'This page is where your visitors will find a list of all your available memberships.', 'lifterlms' ), 'docs_url' => 'https://lifterlms.com/docs/membership-catalog/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Membership%20Catalog', ), array( 'content' => '[lifterlms_checkout]', 'option' => 'lifterlms_checkout_page_id', 'slug' => 'purchase', - 'title' => esc_html__( 'Purchase', 'lifterlms' ), - 'wizard_title' => esc_html__( 'Checkout', 'lifterlms' ), - 'description' => esc_html__( 'This is the page where visitors will be directed in order to pay for courses and memberships.', 'lifterlms' ), + 'title' => __( 'Purchase', 'lifterlms' ), + 'wizard_title' => __( 'Checkout', 'lifterlms' ), + 'description' => __( 'This is the page where visitors will be directed in order to pay for courses and memberships.', 'lifterlms' ), 'docs_url' => 'https://lifterlms.com/docs/checkout-page/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Checkout%20Page', ), array( 'content' => '[lifterlms_my_account]', 'option' => 'lifterlms_myaccount_page_id', 'slug' => 'dashboard', - 'title' => esc_html__( 'Dashboard', 'lifterlms' ), - 'wizard_title' => esc_html__( 'Student Dashboard', 'lifterlms' ), - 'description' => esc_html__( 'Page where students can view and manage their current enrollments, earned certificates and achievements, account information, and purchase history.', 'lifterlms' ), + 'title' => __( 'Dashboard', 'lifterlms' ), + 'wizard_title' => __( 'Student Dashboard', 'lifterlms' ), + 'description' => __( 'Page where students can view and manage their current enrollments, earned certificates and achievements, account information, and purchase history.', 'lifterlms' ), 'docs_url' => 'https://lifterlms.com/docs/student-dashboard/?utm_source=LifterLMS%20Plugin&utm_campaign=Plugin%20to%20Sale&utm_medium=Wizard&utm_content=LifterLMS%20Student%20Dashboard', ), ) From 05664e53399dc81e94b893b78db372c7110a1494 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Sun, 16 Jul 2023 11:09:04 +0200 Subject: [PATCH 34/62] changelog --- .changelogs/create_pages_improvements.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changelogs/create_pages_improvements.yml diff --git a/.changelogs/create_pages_improvements.yml b/.changelogs/create_pages_improvements.yml new file mode 100644 index 0000000000..a3d7d6b3eb --- /dev/null +++ b/.changelogs/create_pages_improvements.yml @@ -0,0 +1,5 @@ +significance: patch +type: changed +entry: "When creating pages via `llms_create_pages()`: strip all tags from the + page title and slash the page data prior to inserting the page in the db via + `wp_insert_post()`." From 128e0641ba8e3c1990deaaf2d6604fa87dfd49d5 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 26 Jul 2023 12:47:20 +0200 Subject: [PATCH 35/62] Apply suggestions from code review Co-authored-by: SEO Themes --- includes/admin/llms.functions.admin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/admin/llms.functions.admin.php b/includes/admin/llms.functions.admin.php index 22329cd0e0..99a1c66b16 100644 --- a/includes/admin/llms.functions.admin.php +++ b/includes/admin/llms.functions.admin.php @@ -114,7 +114,8 @@ function llms_create_page( $slug, $title = '', $content = '', $option = '' ) { * Filters the page data passed to create a page. * * The output of this filter will be slashed via `wp_slash` prior - * to be passed to `wp_insert_post`. + * to being passed to `wp_insert_post` to prevent slashes from + * being stripped from the page title. * * @since 3.0.0 * From 47ec3695d1f5e3fa6f37651a33f5a53905f00c30 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 26 Jul 2023 12:48:21 +0200 Subject: [PATCH 36/62] Update create_pages_improvements.yml --- .changelogs/create_pages_improvements.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.changelogs/create_pages_improvements.yml b/.changelogs/create_pages_improvements.yml index a3d7d6b3eb..2d0b3b10ff 100644 --- a/.changelogs/create_pages_improvements.yml +++ b/.changelogs/create_pages_improvements.yml @@ -2,4 +2,5 @@ significance: patch type: changed entry: "When creating pages via `llms_create_pages()`: strip all tags from the page title and slash the page data prior to inserting the page in the db via - `wp_insert_post()`." + `wp_insert_post()` to prevent slashes from being stripped from the page + title." From af4162b69109c6483e41a446b38aefdef8623f7a Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 31 Jul 2023 09:25:25 +0200 Subject: [PATCH 37/62] Fixed PHP warning when no course/membership catalog page was set or if the selected page doesn't exist anymore. --- .changelogs/fix-loop-no_pageid.yml | 6 ++++++ includes/functions/llms.functions.templates.loop.php | 12 +++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 .changelogs/fix-loop-no_pageid.yml diff --git a/.changelogs/fix-loop-no_pageid.yml b/.changelogs/fix-loop-no_pageid.yml new file mode 100644 index 0000000000..98074eb74a --- /dev/null +++ b/.changelogs/fix-loop-no_pageid.yml @@ -0,0 +1,6 @@ +significance: patch +type: fixed +links: + - "#2496" +entry: Fixed PHP Warning when no course/membership catalog page was set or if + the selected page doesn't exist anymore. diff --git a/includes/functions/llms.functions.templates.loop.php b/includes/functions/llms.functions.templates.loop.php index 4710aa0ce0..f3c2f0c33e 100644 --- a/includes/functions/llms.functions.templates.loop.php +++ b/includes/functions/llms.functions.templates.loop.php @@ -5,7 +5,7 @@ * @package LifterLMS/Functions * * @since 1.0.0 - * @version 7.1.3 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -34,8 +34,10 @@ function lifterlms_archive_description() { * If content is added to the course/membership catalog page via the WP editor, output it as the archive description before the loop. * * @since 4.10.0 Moved from `lifterlms_archive_description()`. - * Adjusted filter `llms_archive_description` to always run instead of only running if content exists to display, - * this allows developers to filter the content even when an empty string is returned. + * Adjusted filter `llms_archive_description` to always run instead of only running if content exists to display, + * this allows developers to filter the content even when an empty string is returned. + * @since [version] Fixed PHP Warning when no course/membership catalog page was set or if the + * selected page doesn't exist anymore. * * @return string */ @@ -57,9 +59,9 @@ function lifterlms_get_archive_description() { } // If we don't have a description, try to pull it from the page's content area. - if ( empty( $content ) && $page_id ) { + if ( empty( $content ) && (int) $page_id > 0 ) { $page = get_post( $page_id ); - $content = $page->post_content; + $content = $page ? $page->post_content : $content; } /** From 38e0d0531adba202930ef9f23e8ba21cbe9c6f46 Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Tue, 1 Aug 2023 16:03:33 -0400 Subject: [PATCH 38/62] Added llms_dashboard_widget_data and llms_dashboard_checklist filters. --- .changelogs/issue_2491.yml | 6 ++++ includes/admin/views/dashboard.php | 4 +-- .../admin/views/dashboard/quick-links.php | 35 +++++++++++-------- 3 files changed, 29 insertions(+), 16 deletions(-) create mode 100644 .changelogs/issue_2491.yml diff --git a/.changelogs/issue_2491.yml b/.changelogs/issue_2491.yml new file mode 100644 index 0000000000..c479d2ba96 --- /dev/null +++ b/.changelogs/issue_2491.yml @@ -0,0 +1,6 @@ +significance: patch +type: deprecated +links: + - "#2491" +entry: Added llms_dashboard_checklist and llms_dashboard_widget_data filters to + adjust dashboard content. diff --git a/includes/admin/views/dashboard.php b/includes/admin/views/dashboard.php index cc7855217d..1aa65c286d 100644 --- a/includes/admin/views/dashboard.php +++ b/includes/admin/views/dashboard.php @@ -44,7 +44,7 @@ ) ), 'widget_data' => array( - array( + apply_filters( 'llms_dashboard_widget_data', array( 'enrollments' => array( 'title' => __( 'Enrollments', 'lifterlms' ), 'cols' => '1-4', @@ -73,7 +73,7 @@ 'info' => __( 'Number of total lessons completed during the selected period', 'lifterlms' ), 'link' => admin_url( 'admin.php?page=llms-reporting&tab=courses' ), ), - ), + ) ), ), ) ); diff --git a/includes/admin/views/dashboard/quick-links.php b/includes/admin/views/dashboard/quick-links.php index 2405e4b518..f44d288087 100644 --- a/includes/admin/views/dashboard/quick-links.php +++ b/includes/admin/views/dashboard/quick-links.php @@ -5,6 +5,7 @@ * @package LifterLMS/Admin/Views/Dashboard * * @since 7.1.0 + * @since [version] Added llms_dashboard_checklist filter. * @version 7.1.0 */ @@ -57,22 +58,28 @@ if ( $enrollments >= 10 ) { $enrollments_check = true; } + + // Add checklist items to an array so we can filter. + $checklist = array(); + if ( $ap_check ) { + $checklist['access_plan'] = ' ' . esc_html( 'Create Access Plan', 'lifterlms' ); + } else { + $checklist['access_plan'] = ' ' . esc_html( 'Create Access Plan', 'lifterlms' ) . ''; + } + if ( $enrollments_check ) { + $checklist['enrollments'] = ' ' . esc_html( 'Get 10 Enrollments', 'lifterlms' ); + } else { + $checklist['enrollments'] = ' ' . esc_html( 'Get 10 Enrollments', 'lifterlms' ) . ''; + } + + $checklist = apply_filters( 'llms_dashboard_checklist', $checklist ); ?>
      -
    • - - - - - -
    • -
    • - - - - - -
    • + ' . $item . ''; + } + ?>
    From 52a318bc3f4e6d6bbec55dc01682813deff54e9e Mon Sep 17 00:00:00 2001 From: Jason Coleman Date: Tue, 1 Aug 2023 16:04:42 -0400 Subject: [PATCH 39/62] Adding since comment --- includes/admin/views/dashboard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/admin/views/dashboard.php b/includes/admin/views/dashboard.php index 1aa65c286d..430457621c 100644 --- a/includes/admin/views/dashboard.php +++ b/includes/admin/views/dashboard.php @@ -5,6 +5,7 @@ * @package LifterLMS/Admin/Views * * @since 7.1.0 + * @since [version] Added llms_dashboard_widget_data filter. * @version 7.1.0 */ From 5c0b4ebc5ddd9424ea5335aeeabd79110f57c85b Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 14:33:17 +0200 Subject: [PATCH 40/62] Apply suggestions from code review --- .changelogs/issue_2491.yml | 4 ++-- includes/admin/views/dashboard.php | 2 +- includes/admin/views/dashboard/quick-links.php | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.changelogs/issue_2491.yml b/.changelogs/issue_2491.yml index c479d2ba96..105d159eb9 100644 --- a/.changelogs/issue_2491.yml +++ b/.changelogs/issue_2491.yml @@ -1,6 +1,6 @@ significance: patch -type: deprecated +type: added links: - "#2491" -entry: Added llms_dashboard_checklist and llms_dashboard_widget_data filters to +entry: Added `llms_dashboard_checklist` and `llms_dashboard_widget_data` filters to adjust dashboard content. diff --git a/includes/admin/views/dashboard.php b/includes/admin/views/dashboard.php index 430457621c..04a1df9d29 100644 --- a/includes/admin/views/dashboard.php +++ b/includes/admin/views/dashboard.php @@ -6,7 +6,7 @@ * * @since 7.1.0 * @since [version] Added llms_dashboard_widget_data filter. - * @version 7.1.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; diff --git a/includes/admin/views/dashboard/quick-links.php b/includes/admin/views/dashboard/quick-links.php index f44d288087..20de201c3c 100644 --- a/includes/admin/views/dashboard/quick-links.php +++ b/includes/admin/views/dashboard/quick-links.php @@ -6,7 +6,7 @@ * * @since 7.1.0 * @since [version] Added llms_dashboard_checklist filter. - * @version 7.1.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -64,12 +64,12 @@ if ( $ap_check ) { $checklist['access_plan'] = ' ' . esc_html( 'Create Access Plan', 'lifterlms' ); } else { - $checklist['access_plan'] = ' ' . esc_html( 'Create Access Plan', 'lifterlms' ) . ''; + $checklist['access_plan'] = ' ' . esc_html__( 'Create Access Plan', 'lifterlms' ) . ''; } if ( $enrollments_check ) { - $checklist['enrollments'] = ' ' . esc_html( 'Get 10 Enrollments', 'lifterlms' ); + $checklist['enrollments'] = ' ' . esc_html__( 'Get 10 Enrollments', 'lifterlms' ); } else { - $checklist['enrollments'] = ' ' . esc_html( 'Get 10 Enrollments', 'lifterlms' ) . ''; + $checklist['enrollments'] = ' ' . esc_html__( 'Get 10 Enrollments', 'lifterlms' ) . ''; } $checklist = apply_filters( 'llms_dashboard_checklist', $checklist ); From 718719c3be7b08b90de1b3e7bc0a142df7daedd8 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 15:17:54 +0200 Subject: [PATCH 41/62] phpcs/docs --- includes/admin/views/dashboard.php | 70 ++++++++++++---------- templates/admin/reporting/tabs/widgets.php | 17 +++--- 2 files changed, 50 insertions(+), 37 deletions(-) diff --git a/includes/admin/views/dashboard.php b/includes/admin/views/dashboard.php index 04a1df9d29..54437cf84c 100644 --- a/includes/admin/views/dashboard.php +++ b/includes/admin/views/dashboard.php @@ -45,36 +45,46 @@ ) ), 'widget_data' => array( - apply_filters( 'llms_dashboard_widget_data', array( - 'enrollments' => array( - 'title' => __( 'Enrollments', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Number of total enrollments during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=enrollments' ), - ), - 'registrations' => array( - 'title' => __( 'Registrations', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Number of total user registrations during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=students' ), - ), - 'sold' => array( - 'title' => __( 'Net Sales', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Total of all successful transactions during this period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=sales' ), - ), - 'lessoncompletions' => array( - 'title' => __( 'Lessons Completed', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Number of total lessons completed during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=courses' ), - ), - ) ), + apply_filters( + /** + * Filters the dashboard widget data. + * + * @since [version] + * + * @param array $widget_data Array of data that will feed the dashboard widget. + */ + 'llms_dashboard_widget_data', + array( + 'enrollments' => array( + 'title' => __( 'Enrollments', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Number of total enrollments during the selected period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=enrollments' ), + ), + 'registrations' => array( + 'title' => __( 'Registrations', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Number of total user registrations during the selected period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=students' ), + ), + 'sold' => array( + 'title' => __( 'Net Sales', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Total of all successful transactions during this period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=sales' ), + ), + 'lessoncompletions' => array( + 'title' => __( 'Lessons Completed', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Number of total lessons completed during the selected period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=courses' ), + ), + ) + ), ), ) ); diff --git a/templates/admin/reporting/tabs/widgets.php b/templates/admin/reporting/tabs/widgets.php index a7691750c1..27a270777f 100644 --- a/templates/admin/reporting/tabs/widgets.php +++ b/templates/admin/reporting/tabs/widgets.php @@ -6,7 +6,10 @@ * * @since Unknown * @since 7.2.0 Add content tag param to widget options. - * @version 7.2.0 + * @since [version] Escape output. + * @version [version] + * + * @param array $widget_data Array of widget data to display. */ defined( 'ABSPATH' ) || exit; @@ -17,13 +20,13 @@ ?> $widgets ) : ?> -
    +
    $opts ) : ?> -
    -
    +
    + @@ -58,4 +61,4 @@
    - + From d94c41dcab65a5e585c960c488eeeb972edf478a Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 15:25:22 +0200 Subject: [PATCH 42/62] cs --- includes/admin/views/dashboard/quick-links.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/includes/admin/views/dashboard/quick-links.php b/includes/admin/views/dashboard/quick-links.php index 20de201c3c..e76ea92a7c 100644 --- a/includes/admin/views/dashboard/quick-links.php +++ b/includes/admin/views/dashboard/quick-links.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Views/Dashboard * * @since 7.1.0 - * @since [version] Added llms_dashboard_checklist filter. + * @since [version] Added `llms_dashboard_checklist` filter. * @version [version] */ @@ -62,9 +62,9 @@ // Add checklist items to an array so we can filter. $checklist = array(); if ( $ap_check ) { - $checklist['access_plan'] = ' ' . esc_html( 'Create Access Plan', 'lifterlms' ); + $checklist['access_plan'] = ' ' . esc_html__( 'Create Access Plan', 'lifterlms' ); } else { - $checklist['access_plan'] = '
    ' . esc_html__( 'Create Access Plan', 'lifterlms' ) . ''; + $checklist['access_plan'] = ' ' . esc_html__( 'Create Access Plan', 'lifterlms' ) . ''; } if ( $enrollments_check ) { $checklist['enrollments'] = ' ' . esc_html__( 'Get 10 Enrollments', 'lifterlms' ); @@ -72,6 +72,13 @@ $checklist['enrollments'] = ' ' . esc_html__( 'Get 10 Enrollments', 'lifterlms' ) . ''; } + /** + * Filters the dashboard quick links checklist. + * + * @since [version] + * + * @param array $checklist Dashboard quick links checklist. + */ $checklist = apply_filters( 'llms_dashboard_checklist', $checklist ); ?>
      From 0ad7c8cec44b3ead8682c39d084974f6532e303b Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 16:25:16 +0200 Subject: [PATCH 43/62] Minor refactoring so that both the WordPress dasboard widget and the LifterLMS dashboard widget share the same data --- .changelogs/issue_2491.yml | 2 +- .../class.llms.admin.dashboard-widget.php | 89 +++++++++++-------- includes/admin/views/dashboard.php | 47 +--------- 3 files changed, 56 insertions(+), 82 deletions(-) diff --git a/.changelogs/issue_2491.yml b/.changelogs/issue_2491.yml index 105d159eb9..f6b22651de 100644 --- a/.changelogs/issue_2491.yml +++ b/.changelogs/issue_2491.yml @@ -1,5 +1,5 @@ significance: patch -type: added +type: dev links: - "#2491" entry: Added `llms_dashboard_checklist` and `llms_dashboard_widget_data` filters to diff --git a/includes/admin/class.llms.admin.dashboard-widget.php b/includes/admin/class.llms.admin.dashboard-widget.php index 8d6130f585..1adfe4d4a1 100644 --- a/includes/admin/class.llms.admin.dashboard-widget.php +++ b/includes/admin/class.llms.admin.dashboard-widget.php @@ -128,42 +128,7 @@ private function get_widgets(): string { ), ) ), - 'widget_data' => array( - array( - 'enrollments' => array( - 'title' => esc_html__( 'Enrollments', 'lifterlms' ), - 'cols' => '1-4', - 'content' => esc_html__( 'loading...', 'lifterlms' ), - 'content_tag' => 'p', - 'info' => esc_html__( 'Number of total enrollments during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=enrollments' ), - ), - 'registrations' => array( - 'title' => esc_html__( 'Registrations', 'lifterlms' ), - 'cols' => '1-4', - 'content' => esc_html__( 'loading...', 'lifterlms' ), - 'content_tag' => 'p', - 'info' => esc_html__( 'Number of total user registrations during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=students' ), - ), - 'sold' => array( - 'title' => esc_html__( 'Net Sales', 'lifterlms' ), - 'cols' => '1-4', - 'content' => esc_html__( 'loading...', 'lifterlms' ), - 'content_tag' => 'p', - 'info' => esc_html__( 'Total of all successful transactions during this period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=sales' ), - ), - 'lessoncompletions' => array( - 'title' => esc_html__( 'Lessons Completed', 'lifterlms' ), - 'cols' => '1-4', - 'content' => esc_html__( 'loading...', 'lifterlms' ), - 'content_tag' => 'p', - 'info' => esc_html__( 'Number of total lessons completed during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=courses' ), - ), - ), - ), + 'widget_data' => array( self::get_dashboard_widget_data() ), ) ) ?? ''; } @@ -203,6 +168,56 @@ function ( $a, $b ) { return array_slice( $merged, 0, 5 ); } -} + /** + * Get dashboard widget data. + * + * @since [version] + * + * @return array $widget_data Array of data that will feed the dashboard widget. + */ + public static function get_dashboard_widget_data() { + return apply_filters( + /** + * Filters the dashboard widget data. + * + * @since [version] + * + * @param array $widget_data Array of data that will feed the dashboard widget. + */ + 'llms_dashboard_widget_data', + array( + 'enrollments' => array( + 'title' => __( 'Enrollments', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Number of total enrollments during the selected period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=enrollments' ), + ), + 'registrations' => array( + 'title' => __( 'Registrations', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Number of total user registrations during the selected period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=students' ), + ), + 'sold' => array( + 'title' => __( 'Net Sales', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Total of all successful transactions during this period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=sales' ), + ), + 'lessoncompletions' => array( + 'title' => __( 'Lessons Completed', 'lifterlms' ), + 'cols' => '1-4', + 'content' => __( 'loading...', 'lifterlms' ), + 'info' => __( 'Number of total lessons completed during the selected period', 'lifterlms' ), + 'link' => admin_url( 'admin.php?page=llms-reporting&tab=courses' ), + ), + ) + ); + } + +} return new LLMS_Admin_Dashboard_Widget(); diff --git a/includes/admin/views/dashboard.php b/includes/admin/views/dashboard.php index 54437cf84c..f600b28f5f 100644 --- a/includes/admin/views/dashboard.php +++ b/includes/admin/views/dashboard.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Views * * @since 7.1.0 - * @since [version] Added llms_dashboard_widget_data filter. + * @since [version] Leverage new `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()` method. * @version [version] */ @@ -25,7 +25,7 @@
      -

      +

      #llms-charts-wrapper{display:none;}'; ?> array( - apply_filters( - /** - * Filters the dashboard widget data. - * - * @since [version] - * - * @param array $widget_data Array of data that will feed the dashboard widget. - */ - 'llms_dashboard_widget_data', - array( - 'enrollments' => array( - 'title' => __( 'Enrollments', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Number of total enrollments during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=enrollments' ), - ), - 'registrations' => array( - 'title' => __( 'Registrations', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Number of total user registrations during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=students' ), - ), - 'sold' => array( - 'title' => __( 'Net Sales', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Total of all successful transactions during this period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=sales' ), - ), - 'lessoncompletions' => array( - 'title' => __( 'Lessons Completed', 'lifterlms' ), - 'cols' => '1-4', - 'content' => __( 'loading...', 'lifterlms' ), - 'info' => __( 'Number of total lessons completed during the selected period', 'lifterlms' ), - 'link' => admin_url( 'admin.php?page=llms-reporting&tab=courses' ), - ), - ) - ), - ), + 'widget_data' => array( LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data() ), ) ); ?> From 56e096a3b522383c612fe89763a3d04524259377 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 16:26:40 +0200 Subject: [PATCH 44/62] changelog --- .changelogs/issue_2491-1.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .changelogs/issue_2491-1.yml diff --git a/.changelogs/issue_2491-1.yml b/.changelogs/issue_2491-1.yml new file mode 100644 index 0000000000..bf1eb747a7 --- /dev/null +++ b/.changelogs/issue_2491-1.yml @@ -0,0 +1,4 @@ +significance: patch +type: dev +entry: Added new public static method + `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()`. From 06520a3d00c2654804f1fc9ea33981ad84eb08d4 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 19:14:01 +0200 Subject: [PATCH 45/62] Better rounding of float values on some reporting screens --- .changelogs/better-floats.yml | 3 +++ .../admin/reporting/class.llms.admin.reporting.php | 11 ++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 .changelogs/better-floats.yml diff --git a/.changelogs/better-floats.yml b/.changelogs/better-floats.yml new file mode 100644 index 0000000000..03f7f9b230 --- /dev/null +++ b/.changelogs/better-floats.yml @@ -0,0 +1,3 @@ +significance: patch +type: changed +entry: Better rounding of float values on some reporting screens. diff --git a/includes/admin/reporting/class.llms.admin.reporting.php b/includes/admin/reporting/class.llms.admin.reporting.php index df206a4505..182103af2c 100644 --- a/includes/admin/reporting/class.llms.admin.reporting.php +++ b/includes/admin/reporting/class.llms.admin.reporting.php @@ -468,6 +468,7 @@ public static function output_event( $event, $context = 'course' ) { * @since 6.11.0 Moved HTML into a view file. * Fixed division by zero error encountered during data comparisons when `$data` is `0`. * Added a check to ensure only numeric, monetary, or percentage data types will generate comparison data. + * @since [version] Better rounding of float values of percentage data types. * * @param array $args { * Array of widget options and data to be displayed. @@ -520,9 +521,13 @@ public static function output_widget( $args = array() ) { } } - if ( 'monetary' === $args['data_type'] && is_numeric( $args['data'] ) ) { - $args['data'] = llms_price( $args['data'] ); - $args['data_compare'] = llms_price_raw( $args['data_compare'] ); + if ( is_numeric( $args['data'] ) ) { + if ( 'percentage' === $args['data_type'] ) { + $args['data'] = round( $args['data'], llms_get_floats_rounding_precision() ); + } elseif ( 'monetary' === $args['data_type'] ) { + $args['data'] = llms_price( $args['data'] ); + $args['data_compare'] = llms_price_raw( $args['data_compare'] ); + } } $args['id'] = esc_attr( $args['id'] ); From 2df366c56608d0e4f4b61f2dfec3d493feef7975 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Wed, 2 Aug 2023 19:23:26 +0200 Subject: [PATCH 46/62] fix tests --- .../__snapshots__/admin-reporting-output_widget-test-b.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt b/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt index 805b569b19..f063eb62ce 100644 --- a/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt +++ b/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt @@ -2,11 +2,11 @@
      - 1.235% + 1.24% -379.35%
      Test Letter B
      -
      \ No newline at end of file +
    From dc079c2822f0ad184ce15287cb1d371a00e79b75 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Thu, 3 Aug 2023 11:03:46 +0200 Subject: [PATCH 47/62] improve some other floating precision --- .../reporting/class.llms.admin.reporting.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/includes/admin/reporting/class.llms.admin.reporting.php b/includes/admin/reporting/class.llms.admin.reporting.php index 182103af2c..7e785bd129 100644 --- a/includes/admin/reporting/class.llms.admin.reporting.php +++ b/includes/admin/reporting/class.llms.admin.reporting.php @@ -502,17 +502,19 @@ public static function output_widget( $args = array() ) { // Adds a percentage symbol after data. $data_after = 'percentage' === $args['data_type'] && is_numeric( $args['data'] ) ? '%' : ''; - $change = false; - $compare_operator = ''; - $compare_class = ''; - $compare_title = ''; + $change = false; + $compare_operator = ''; + $compare_class = ''; + $compare_title = ''; + $floating_precision = llms_get_floats_rounding_precision(); + if ( $can_compare && $args['data_compare'] && floatval( $args['data'] ) ) { - $change = round( ( $args['data'] - $args['data_compare'] ) / $args['data'] * 100, 2 ); + $change = round( ( $args['data'] - $args['data_compare'] ) / $args['data'] * 100, $floating_precision ); $compare_operator = ( $change <= 0 ) ? '' : '+'; $compare_title = sprintf( // Translators: %s = The value of the data from the previous data set. esc_attr__( 'Previously %s', 'lifterlms' ), - $args['data_compare'] . wp_strip_all_tags( $data_after ) + round( $args['data_compare'], $floating_precision ) . wp_strip_all_tags( $data_after ) ); $compare_class = ( $change <= 0 ) ? 'negative' : 'positive'; @@ -521,9 +523,9 @@ public static function output_widget( $args = array() ) { } } - if ( is_numeric( $args['data'] ) ) { + if ( is_numeric( $args['data'] ?? '' ) ) { if ( 'percentage' === $args['data_type'] ) { - $args['data'] = round( $args['data'], llms_get_floats_rounding_precision() ); + $args['data'] = round( $args['data'], $floating_precision ); } elseif ( 'monetary' === $args['data_type'] ) { $args['data'] = llms_price( $args['data'] ); $args['data_compare'] = llms_price_raw( $args['data_compare'] ); From f92a360670b2042f5241289c83152e22a4518a76 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Thu, 3 Aug 2023 11:19:05 +0200 Subject: [PATCH 48/62] update tests --- .../__snapshots__/admin-reporting-output_widget-test-b.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt b/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt index f063eb62ce..5f0e4fe4a9 100644 --- a/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt +++ b/tests/phpunit/unit-tests/admin/reporting/__snapshots__/admin-reporting-output_widget-test-b.txt @@ -3,7 +3,7 @@
    1.24% - + -379.35%
    From c9dabad7a29b2bf964d47aaedbeb19f851126e82 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Thu, 3 Aug 2023 16:18:28 +0200 Subject: [PATCH 49/62] Fix dashboard widget visibility --- .changelogs/issue_2500.yml | 6 ++++++ assets/js/llms-admin.js | 7 ++++++- includes/admin/class.llms.admin.dashboard-widget.php | 8 +++++++- 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .changelogs/issue_2500.yml diff --git a/.changelogs/issue_2500.yml b/.changelogs/issue_2500.yml new file mode 100644 index 0000000000..5fe80e9962 --- /dev/null +++ b/.changelogs/issue_2500.yml @@ -0,0 +1,6 @@ +significance: patch +type: fixed +links: + - "#2500" +entry: Make the dashboard widget visible only if the current user has LMS + Manager capabilities. diff --git a/assets/js/llms-admin.js b/assets/js/llms-admin.js index 847aedfa3d..416123ef71 100644 --- a/assets/js/llms-admin.js +++ b/assets/js/llms-admin.js @@ -2,7 +2,7 @@ * LifterLMS Admin Panel Javascript * * @since Unknown - * @version 6.3.0 + * @version [version] * * @param obj $ Traditional jQuery reference. * @return void @@ -155,12 +155,17 @@ * @since 6.2.0 Use the LifterLMS REST API "list students" endpoint * instead of the `LLMS_AJAX_Handler::query_students()` PHP function. * @since 6.3.0 Fixed student's REST API URL. + * @since [version] Early bail when the element doesn't exist. * * @param {Object} options Options passed to Select2. Each default option will be pulled from the elements data-attributes. * @return {jQuery} */ $.fn.llmsStudentsSelect2 = function( options ) { + if ( ! this.length ) { + return this; + } + var self = this, options = options || {}, defaults = { diff --git a/includes/admin/class.llms.admin.dashboard-widget.php b/includes/admin/class.llms.admin.dashboard-widget.php index 8d6130f585..68da6c373c 100644 --- a/includes/admin/class.llms.admin.dashboard-widget.php +++ b/includes/admin/class.llms.admin.dashboard-widget.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Classes * * @since 7.2.0 - * @version 7.2.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -32,10 +32,16 @@ public function __construct() { * Add the dashboard widget. * * @since 7.2.0 + * @since [version] Add dashboard widget only if the current user can `manage_lifterlms`. * * @return void */ public function add_dashboard_widget() { + + if ( ! current_user_can( 'manage_lifterlms' ) ) { + return; + } + wp_add_dashboard_widget( 'llms_dashboard_widget', 'LifterLMS ' . __( 'Quick Links', 'lifterlms' ), From f60ac41f6eea32c307492cfc9092d6c9d983d54a Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 4 Aug 2023 10:09:11 +0200 Subject: [PATCH 50/62] Fix quiz results clarifications not working fine with the Divi theme --- .changelogs/.issue_2470.yml.un~ | Bin 0 -> 3072 bytes .changelogs/issue_2470.yml | 7 ++++ assets/js/app/llms-quiz-attempt.js | 35 ++++++++++++++++++ .../_includes/_quiz-result-question-list.scss | 2 +- assets/scss/frontend/_llms-quizzes.scss | 11 ++++-- .../quiz/results-attempt-questions-list.php | 23 +----------- 6 files changed, 52 insertions(+), 26 deletions(-) create mode 100644 .changelogs/.issue_2470.yml.un~ create mode 100644 .changelogs/issue_2470.yml create mode 100644 assets/js/app/llms-quiz-attempt.js diff --git a/.changelogs/.issue_2470.yml.un~ b/.changelogs/.issue_2470.yml.un~ new file mode 100644 index 0000000000000000000000000000000000000000..79e25af8371d411fcab27b22b597655551e5cb55 GIT binary patch literal 3072 zcmeH}ze~eF6vwYWREo3U;PAAAIOwLG#jGLtU==diWJdOS+OV5c#hk&xm@M;4$Yf}XD*7o ztvm8t&@04EU49nE%2qY6EUS52e8aW-e)eLt|-Bh9=>Jq)~+) W - - From bae6bc1d987e8ca36d6a8a0161b49fd343c3c9a3 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 4 Aug 2023 10:20:03 +0200 Subject: [PATCH 51/62] remove debugging --- assets/js/app/llms-quiz-attempt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/app/llms-quiz-attempt.js b/assets/js/app/llms-quiz-attempt.js index ceb0b16787..31933f81e9 100644 --- a/assets/js/app/llms-quiz-attempt.js +++ b/assets/js/app/llms-quiz-attempt.js @@ -16,7 +16,7 @@ LLMS.Quiz_Attempt = { init: function() { $( '.llms-quiz-attempt-question-header a.toggle-answer' ).on( 'click', function( e ) { - console.log('what'); + e.preventDefault(); var $curr = $( this ).closest( 'header' ).next( '.llms-quiz-attempt-question-main' ); From cf1d96b5b929fb38a2a09b33a4fbe5f66722665d Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 4 Aug 2023 17:13:44 +0200 Subject: [PATCH 52/62] fix certificate templates with wp 6.3 --- .changelogs/certificate-template-spacer-fix.yml | 3 +++ includes/schemas/llms-block-templates.php | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changelogs/certificate-template-spacer-fix.yml diff --git a/.changelogs/certificate-template-spacer-fix.yml b/.changelogs/certificate-template-spacer-fix.yml new file mode 100644 index 0000000000..c30fda9383 --- /dev/null +++ b/.changelogs/certificate-template-spacer-fix.yml @@ -0,0 +1,3 @@ +significance: patch +type: fixed +entry: Fix spacer block when creating new certificate templates in WP 6.3. diff --git a/includes/schemas/llms-block-templates.php b/includes/schemas/llms-block-templates.php index 0e6fefe538..34c6b281b9 100644 --- a/includes/schemas/llms-block-templates.php +++ b/includes/schemas/llms-block-templates.php @@ -7,7 +7,7 @@ * @package LifterLMS/Schemas * * @since 6.0.0 - * @version 6.0.0 + * @version [version] * * @see LLMS_Post_Types::get_template(). * @link https://developer.wordpress.org/block-editor/reference-guides/block-api/block-templates/ @@ -15,6 +15,8 @@ defined( 'ABSPATH' ) || exit; +global $wp_version; + $blocks_styles = array( 'certificate' => array( 'title' => array( @@ -68,7 +70,7 @@ ), ), 'spacer' => array( - 'height' => 100, + 'height' => version_compare( $wp_version, '6.3', '>=' ) ? '100px' : 100, ), ), ); From 1a00a35619203550ba460039dbe98b9e88e4bf1e Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 7 Aug 2023 08:49:55 +0200 Subject: [PATCH 53/62] updated wp tested up version to 6.3 --- .changelogs/.issue_2470.yml.un~ | Bin 3072 -> 0 bytes .changelogs/dev.yml | 3 +++ lifterlms.php | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 .changelogs/.issue_2470.yml.un~ create mode 100644 .changelogs/dev.yml diff --git a/.changelogs/.issue_2470.yml.un~ b/.changelogs/.issue_2470.yml.un~ deleted file mode 100644 index 79e25af8371d411fcab27b22b597655551e5cb55..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3072 zcmeH}ze~eF6vwYWREo3U;PAAAIOwLG#jGLtU==diWJdOS+OV5c#hk&xm@M;4$Yf}XD*7o ztvm8t&@04EU49nE%2qY6EUS52e8aW-e)eLt|-Bh9=>Jq)~+) W Date: Mon, 7 Aug 2023 09:44:58 +0200 Subject: [PATCH 54/62] spacer fix for 6.3-beta2 and above --- includes/schemas/llms-block-templates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/schemas/llms-block-templates.php b/includes/schemas/llms-block-templates.php index 34c6b281b9..efa2522fd7 100644 --- a/includes/schemas/llms-block-templates.php +++ b/includes/schemas/llms-block-templates.php @@ -70,7 +70,7 @@ ), ), 'spacer' => array( - 'height' => version_compare( $wp_version, '6.3', '>=' ) ? '100px' : 100, + 'height' => version_compare( $wp_version, '6.3-beta2', '>=' ) ? '100px' : 100, ), ), ); From 390aec8700352f6e543b2ce38e363d2af29ff11a Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 28 Jul 2023 19:18:36 +0200 Subject: [PATCH 55/62] fix llms internal meta field duplication on cloning, revisions creation on cloning/importing llms posts and on lessons creation in the builder --- .../llms-abstract-generator-posts.php | 24 ++++++++++++++++--- includes/admin/class.llms.admin.builder.php | 16 +++++++++++-- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/includes/abstracts/llms-abstract-generator-posts.php b/includes/abstracts/llms-abstract-generator-posts.php index 743bf39af7..ff41502a33 100644 --- a/includes/abstracts/llms-abstract-generator-posts.php +++ b/includes/abstracts/llms-abstract-generator-posts.php @@ -1,11 +1,11 @@ get( 'meta_prefix' ) . 'generated_from_id' ] ); $this->set_metadata( $post, $raw ); $this->set_featured_image( $raw, $post->get( 'id' ) ); @@ -205,6 +218,11 @@ protected function create_post( $type, $raw = array(), $author_id = null ) { $this->sideload_images( $post, $raw ); $this->handle_reusable_blocks( $post, $raw ); + // Re-add revision creation action. + if ( $revision_creation_hook_priority ) { + add_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); + } + return $post; } diff --git a/includes/admin/class.llms.admin.builder.php b/includes/admin/class.llms.admin.builder.php index 1e85d5a436..479ed9b2a7 100644 --- a/includes/admin/class.llms.admin.builder.php +++ b/includes/admin/class.llms.admin.builder.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Classes * * @since 3.13.0 - * @version 7.2.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -1002,10 +1002,11 @@ public static function update_custom_schemas( $type, $post, $post_data ) { } /** - * Update lesson from heartbeat data + * Update lesson from heartbeat data. * * @since 3.16.0 * @since 5.1.3 Made sure a lesson moved in a just created section is correctly assigned to it. + * @since [version] Skip revision creation when creating a brand new lesson. * * @param array $lessons Lesson data from heartbeat. * @param LLMS_Section $section instance of the parent LLMS_Section. @@ -1054,6 +1055,12 @@ private static function update_lessons( $lessons, $section ) { } else { + // Don't create useless creation on "cloning". + $revision_creation_hook_priority = has_action( 'post_updated', 'wp_save_post_revision' ); + if ( $revision_creation_hook_priority && $created ) { + remove_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); + } + /** * If the parent section was just created the lesson will have a temp id * replace it with the newly created section's real ID. @@ -1102,6 +1109,11 @@ private static function update_lessons( $lessons, $section ) { if ( ! empty( $lesson_data['quiz'] ) && is_array( $lesson_data['quiz'] ) ) { $res['quiz'] = self::update_quiz( $lesson_data['quiz'], $lesson ); } + + if ( $revision_creation_hook_priority && $created ) { + add_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); + } + } // Allow 3rd parties to update custom data. From 9ff87874db3017148ba3242e22a73d3f837ed507 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 7 Aug 2023 15:16:37 +0200 Subject: [PATCH 56/62] better way to skip revision on cloning or lesson creating within the builder --- .../abstracts/llms-abstract-generator-posts.php | 13 ++++--------- includes/admin/class.llms.admin.builder.php | 14 +++++--------- 2 files changed, 9 insertions(+), 18 deletions(-) diff --git a/includes/abstracts/llms-abstract-generator-posts.php b/includes/abstracts/llms-abstract-generator-posts.php index ff41502a33..541d334aa8 100644 --- a/includes/abstracts/llms-abstract-generator-posts.php +++ b/includes/abstracts/llms-abstract-generator-posts.php @@ -176,11 +176,8 @@ protected function create_post( $type, $raw = array(), $author_id = null ) { throw new Exception( sprintf( __( 'The class "%s" does not exist.', 'lifterlms' ), $class_name ), self::ERROR_INVALID_POST ); } - // Don't create useless creation on "cloning". - $revision_creation_hook_priority = has_action( 'post_updated', 'wp_save_post_revision' ); - if ( $revision_creation_hook_priority ) { - remove_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); - } + // Don't create useless revision on "cloning". + add_filter( 'wp_revisions_to_keep', '__return_zero', 999 ); // Insert the object. $post = new $class_name( @@ -218,10 +215,8 @@ protected function create_post( $type, $raw = array(), $author_id = null ) { $this->sideload_images( $post, $raw ); $this->handle_reusable_blocks( $post, $raw ); - // Re-add revision creation action. - if ( $revision_creation_hook_priority ) { - add_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); - } + // Remove revision prevention. + remove_filter( 'wp_revisions_to_keep', '__return_zero', 999 ); return $post; diff --git a/includes/admin/class.llms.admin.builder.php b/includes/admin/class.llms.admin.builder.php index 479ed9b2a7..db8416180e 100644 --- a/includes/admin/class.llms.admin.builder.php +++ b/includes/admin/class.llms.admin.builder.php @@ -1055,11 +1055,8 @@ private static function update_lessons( $lessons, $section ) { } else { - // Don't create useless creation on "cloning". - $revision_creation_hook_priority = has_action( 'post_updated', 'wp_save_post_revision' ); - if ( $revision_creation_hook_priority && $created ) { - remove_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); - } + // Don't create useless revision on "creating". + add_filter( 'wp_revisions_to_keep', '__return_zero', 999 ); /** * If the parent section was just created the lesson will have a temp id @@ -1106,14 +1103,13 @@ private static function update_lessons( $lessons, $section ) { $lesson->set( 'name', sanitize_title( $lesson_data['title'] ) ); } + // Remove revision prevention. + remove_filter( 'wp_revisions_to_keep', '__return_zero', 999 ); + if ( ! empty( $lesson_data['quiz'] ) && is_array( $lesson_data['quiz'] ) ) { $res['quiz'] = self::update_quiz( $lesson_data['quiz'], $lesson ); } - if ( $revision_creation_hook_priority && $created ) { - add_action( 'post_updated', 'wp_save_post_revision', $revision_creation_hook_priority ); - } - } // Allow 3rd parties to update custom data. From c55aab4212c33f8ed35a600c802f2000bc99920b Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Mon, 7 Aug 2023 15:24:26 +0200 Subject: [PATCH 57/62] changelogs --- .changelogs/cloning-issue-with-source.yml | 3 +++ includes/admin/class.llms.admin.builder.php | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .changelogs/cloning-issue-with-source.yml diff --git a/.changelogs/cloning-issue-with-source.yml b/.changelogs/cloning-issue-with-source.yml new file mode 100644 index 0000000000..c8f739b8cc --- /dev/null +++ b/.changelogs/cloning-issue-with-source.yml @@ -0,0 +1,3 @@ +significance: patch +type: changed +entry: Avoid creating a post revision when cloning a course/lesson. diff --git a/includes/admin/class.llms.admin.builder.php b/includes/admin/class.llms.admin.builder.php index db8416180e..50650d4ace 100644 --- a/includes/admin/class.llms.admin.builder.php +++ b/includes/admin/class.llms.admin.builder.php @@ -1109,7 +1109,6 @@ private static function update_lessons( $lessons, $section ) { if ( ! empty( $lesson_data['quiz'] ) && is_array( $lesson_data['quiz'] ) ) { $res['quiz'] = self::update_quiz( $lesson_data['quiz'], $lesson ); } - } // Allow 3rd parties to update custom data. From 618b7574e5b496978a18ff7ad3a4e64a2aa2c98d Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 4 Aug 2023 16:05:22 +0200 Subject: [PATCH 58/62] Improve analytics widgets permissions management. --- .changelogs/better-analytics-widgets-1.yml | 5 ++ .changelogs/better-analytics-widgets.yml | 4 ++ assets/js/llms-analytics.js | 23 +++++--- .../abstract.llms.analytics.widget.php | 53 ++++++++++++++++++- .../class.llms.analytics.widget.ajax.php | 42 +++++++++++++-- 5 files changed, 114 insertions(+), 13 deletions(-) create mode 100644 .changelogs/better-analytics-widgets-1.yml create mode 100644 .changelogs/better-analytics-widgets.yml diff --git a/.changelogs/better-analytics-widgets-1.yml b/.changelogs/better-analytics-widgets-1.yml new file mode 100644 index 0000000000..3d1e9b5949 --- /dev/null +++ b/.changelogs/better-analytics-widgets-1.yml @@ -0,0 +1,5 @@ +significance: minor +type: dev +entry: Added new filter hook `llms_can_analytics_widget_be_processed` + that will allow to filter wheteher or not an analytics widgegt can + be processed/disoplayed. diff --git a/.changelogs/better-analytics-widgets.yml b/.changelogs/better-analytics-widgets.yml new file mode 100644 index 0000000000..885d9529a5 --- /dev/null +++ b/.changelogs/better-analytics-widgets.yml @@ -0,0 +1,4 @@ +significance: minor +type: changed +entry: Made sure only who can `view_others_lifterlms_reports` will be able to + see the analytics widget content in the WordPress admin. diff --git a/assets/js/llms-analytics.js b/assets/js/llms-analytics.js index 124b823835..e34cecf8c2 100644 --- a/assets/js/llms-analytics.js +++ b/assets/js/llms-analytics.js @@ -7,24 +7,29 @@ * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`. * @since 4.3.3 Legends will automatically display on top of the chart. * @since 4.5.1 Show sales reporting currency symbol based on LifterLMS site options. - * @version 7.2.0 + * @version [version] * */( function( $, undefined ) { window.llms = window.llms || {}; /** - * LifterLMS Admin Analytics + * LifterLMS Admin Analytics. * * @since 3.0.0 * @since 3.5.0 Unknown * @since 4.5.1 Added `opts` parameter. + * @since [verison] Early bail if no `#llms-analytics-json` is available. * * @param {Object} options Options object. * @return {Object} Class instance. */ var Analytics = function( opts ) { + if ( ! $( '#llms-analytics-json' ).length ) { + return; + } + this.charts_loaded = false; this.data = {}; this.query = $.parseJSON( $( '#llms-analytics-json' ).text() ); @@ -55,13 +60,13 @@ }; /** - * Bind DOM events + * Bind DOM events. * * @since 3.0.0 * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`. * @since 7.2.0 Added check for datepicker before initializing. * - * @return void + * @return {Void} */ this.bind = function() { @@ -194,7 +199,7 @@ var self = this; this.$widgets.each( function() { - + console.log($(this)); self.load_widget( $( this ) ); } ); @@ -202,13 +207,14 @@ }; /** - * Load a specific widget + * Load a specific widget. * * @since 3.0.0 * @since 7.2.0 Change h1 tag to .llms-widget-content. + * @since [version] Append `_ajax_nonce` to the ajax data packet. * - * @param obj $widget The jQuery selector of the widget element. - * @return void + * @param {Object} $widget The jQuery selector of the widget element. + * @return {Void} */ this.load_widget = function( $widget ) { @@ -229,6 +235,7 @@ courses: self.query.current_courses, memberships: self.query.current_memberships, students: self.query.current_students, + _ajax_nonce: window.llms.ajax_nonce, }, method: 'POST', timeout: self.timeout, diff --git a/includes/abstracts/abstract.llms.analytics.widget.php b/includes/abstracts/abstract.llms.analytics.widget.php index e8db28d614..0a22064386 100644 --- a/includes/abstracts/abstract.llms.analytics.widget.php +++ b/includes/abstracts/abstract.llms.analytics.widget.php @@ -5,7 +5,7 @@ * @package LifterLMS/Abstracts/Classes * * @since 3.0.0 - * @version 4.0.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -336,6 +336,57 @@ protected function query() { } + /** + * Whether or not the current widget can be processed/displayed. + * + * @since [version] + * + * @return true|WP_Error True if the widget can be processed, `WP_Error` otherwise. + */ + protected function _can_be_processed() { + + $can_be_processed = true; + if ( ! current_user_can( 'view_others_lifterlms_reports' ) ) { + $can_be_processed = new WP_Error( + WP_Http::FORBIDDEN, // 403. + esc_html__( 'You are not authorized to access the requested widget', 'lifterlms' ) + ); + } + + return $can_be_processed; + } + + /** + * Whether or not the current widget can be processed/displayed. + * + * @since [version] + * + * @return true|WP_Error + */ + public function can_be_processed() { + + $widget_name = str_replace( + array( 'llms_analytics_', '_widget' ), + '', + strtolower( get_class( $this ) ) + ); + + /** + * Whether or not the current widget can be processed/displayed. + * + * @param true|WP_Error True if the widget can be processed, `WP_Error` otherwise. + * @param string The widget name + * @param LLMS_Analytics_Widget The instance extending `LLMS_Analytics_Widget`. + */ + return apply_filters( + 'llms_can_analytics_widget_be_processed', + $this->_can_be_processed(), + $widget_name, + $this + ); + + } + public function output() { $this->set_query(); diff --git a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php index b7601d6939..7fb5c55296 100644 --- a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php +++ b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Reporting/Widgets/Classes * * @since 3.0.0 - * @version 6.0.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -19,12 +19,13 @@ class LLMS_Analytics_Widget_Ajax { /** - * Constructor + * Constructor. * * @since 3.0.0 * @since 3.16.8 Unknown. * @since 3.35.0 Sanitize `$_REQUEST` data. * @since 6.0.0 Removed loading of class files that don't instantiate their class in favor of autoloading. + * @since [version] Ajax call are now handled by `LLMS_Analytics_Widget_Ajax::handle()` method. * * @return void */ @@ -58,10 +59,43 @@ public function __construct() { $file = LLMS_PLUGIN_DIR . 'includes/admin/reporting/widgets/class.llms.analytics.widget.' . $method . '.php'; if ( file_exists( $file ) ) { + add_action( 'wp_ajax_llms_widget_' . $method, array( __CLASS__, 'handle' ) ); + } + } + + /** + * Handles the AJAX request. + * + * @since [version] + * + * @return void + */ + public static function handle() { + + // Make sure we are getting a valid AJAX request. + check_ajax_referer( LLMS_Ajax::NONCE ); - $class = 'LLMS_Analytics_' . ucwords( $method ) . '_Widget'; - add_action( 'wp_ajax_llms_widget_' . $method, array( new $class(), 'output' ) ); + $method = str_replace( + 'llms_widget_', + '', + sanitize_text_field( wp_unslash( $_REQUEST['action'] ) ) + ); + $class = 'LLMS_Analytics_' . ucwords( $method ) . '_Widget'; + + if ( ! class_exists( $class ) ) { + return; + } + + $widget = new $class(); + $can_be_processed = $widget->can_be_processed(); + + if ( is_wp_error( $can_be_processed) ) { + wp_send_json_error( $can_be_processed ); + wp_die(); } + + $widget->output(); + } } From 7c7f359f391745c2453159d2103042f87f942b3e Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 4 Aug 2023 16:19:57 +0200 Subject: [PATCH 59/62] fix cs --- .../abstracts/abstract.llms.analytics.widget.php | 12 ++++++++++-- .../widgets/class.llms.analytics.widget.ajax.php | 4 ++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/includes/abstracts/abstract.llms.analytics.widget.php b/includes/abstracts/abstract.llms.analytics.widget.php index 0a22064386..f761a18871 100644 --- a/includes/abstracts/abstract.llms.analytics.widget.php +++ b/includes/abstracts/abstract.llms.analytics.widget.php @@ -343,7 +343,7 @@ protected function query() { * * @return true|WP_Error True if the widget can be processed, `WP_Error` otherwise. */ - protected function _can_be_processed() { + protected function _can_be_processed() { // phpcs:ignore -- PSR2.Methods.MethodDeclaration.Underscore. $can_be_processed = true; if ( ! current_user_can( 'view_others_lifterlms_reports' ) ) { @@ -387,6 +387,14 @@ public function can_be_processed() { } + /** + * Output widget. + * + * @since 3.0.0 + * @since [version] Use `wp_json_encode` in place of the deprecated `json_encode`. + * + * @return void + */ public function output() { $this->set_query(); @@ -399,7 +407,7 @@ public function output() { } header( 'Content-Type: application/json' ); - echo json_encode( $this ); + echo wp_json_encode( $this ); wp_die(); } diff --git a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php index 7fb5c55296..2734d66e34 100644 --- a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php +++ b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php @@ -78,7 +78,7 @@ public static function handle() { $method = str_replace( 'llms_widget_', '', - sanitize_text_field( wp_unslash( $_REQUEST['action'] ) ) + sanitize_text_field( wp_unslash( $_REQUEST['action'] ?? '' ) ) ); $class = 'LLMS_Analytics_' . ucwords( $method ) . '_Widget'; @@ -89,7 +89,7 @@ public static function handle() { $widget = new $class(); $can_be_processed = $widget->can_be_processed(); - if ( is_wp_error( $can_be_processed) ) { + if ( is_wp_error( $can_be_processed ) ) { wp_send_json_error( $can_be_processed ); wp_die(); } From 5be9e11ec39ed9ebdf19fc2fd791625331922f89 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 8 Aug 2023 09:18:17 +0200 Subject: [PATCH 60/62] fix docs/cs and remove debug line --- assets/js/llms-analytics.js | 2 -- includes/abstracts/abstract.llms.analytics.widget.php | 2 +- .../reporting/widgets/class.llms.analytics.widget.ajax.php | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/assets/js/llms-analytics.js b/assets/js/llms-analytics.js index e34cecf8c2..ef32c4cb59 100644 --- a/assets/js/llms-analytics.js +++ b/assets/js/llms-analytics.js @@ -199,9 +199,7 @@ var self = this; this.$widgets.each( function() { - console.log($(this)); self.load_widget( $( this ) ); - } ); }; diff --git a/includes/abstracts/abstract.llms.analytics.widget.php b/includes/abstracts/abstract.llms.analytics.widget.php index f761a18871..34ccf5a938 100644 --- a/includes/abstracts/abstract.llms.analytics.widget.php +++ b/includes/abstracts/abstract.llms.analytics.widget.php @@ -375,7 +375,7 @@ public function can_be_processed() { * Whether or not the current widget can be processed/displayed. * * @param true|WP_Error True if the widget can be processed, `WP_Error` otherwise. - * @param string The widget name + * @param string The widget name. * @param LLMS_Analytics_Widget The instance extending `LLMS_Analytics_Widget`. */ return apply_filters( diff --git a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php index 2734d66e34..ea3ba4bc83 100644 --- a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php +++ b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php @@ -25,7 +25,7 @@ class LLMS_Analytics_Widget_Ajax { * @since 3.16.8 Unknown. * @since 3.35.0 Sanitize `$_REQUEST` data. * @since 6.0.0 Removed loading of class files that don't instantiate their class in favor of autoloading. - * @since [version] Ajax call are now handled by `LLMS_Analytics_Widget_Ajax::handle()` method. + * @since [version] Ajax calls are now handled by `LLMS_Analytics_Widget_Ajax::handle()` method. * * @return void */ From 1be791371afedc3e0eb39518a42b48ae1a7f1357 Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 8 Aug 2023 16:50:11 +0200 Subject: [PATCH 61/62] update contributors --- .wordpress-org/readme/01-header.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.wordpress-org/readme/01-header.md b/.wordpress-org/readme/01-header.md index d057a7f177..f4c4f6c966 100644 --- a/.wordpress-org/readme/01-header.md +++ b/.wordpress-org/readme/01-header.md @@ -1,5 +1,5 @@ === LifterLMS - WordPress LMS Plugin for eLearning === -Contributors: thomasplevy, chrisbadgett, d4z_c0nf, pondermatic, nrherron, lifterlms, codeboxllc +Contributors: chrisbadgett, strangerstudios, kimannwall, d4z_c0nf, blockify, actuallyakash, codeboxllc Donate link: {{__PROJECT_URI__}} Tags: course, elearning, learning management system, online courses, quiz License: {{__LICENSE__}} From b191309065d58c0553dfa119a4b9588ccf8eed1a Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Tue, 8 Aug 2023 17:42:19 +0200 Subject: [PATCH 62/62] build v7.3.0 --- .changelogs/access-plans-with-warnings.yml | 5 - ...ilter_hook_lifterlms_reporting_tab_cap.yml | 8 - .changelogs/better-analytics-widgets-1.yml | 5 - .changelogs/better-analytics-widgets.yml | 4 - .changelogs/better-floats.yml | 3 - .../certificate-template-spacer-fix.yml | 3 - .changelogs/cloning-issue-with-source.yml | 3 - .changelogs/create_pages_improvements.yml | 6 - .changelogs/dev.yml | 3 - .../enhancement_filter-wizard-pages.yml | 3 - .changelogs/fix-loop-no_pageid.yml | 6 - .changelogs/fix-sidebar-fse.yml | 5 - .changelogs/issue_2470.yml | 7 - .changelogs/issue_2475.yml | 5 - .changelogs/issue_2491-1.yml | 4 - .changelogs/issue_2491.yml | 6 - .changelogs/issue_2500.yml | 6 - .changelogs/llms-link-visibility.yml | 5 - .changelogs/nav-link-block-default.yml | 5 - .changelogs/wrong-function-name.yml | 5 - CHANGELOG.md | 39 ++ assets/css/admin-rtl.css | 10 + assets/css/admin-rtl.min.css | 2 +- assets/css/admin.css | 10 + assets/css/admin.min.css | 2 +- assets/css/lifterlms-rtl.css | 62 +- assets/css/lifterlms-rtl.min.css | 2 +- assets/css/lifterlms.css | 62 +- assets/css/lifterlms.min.css | 2 +- assets/js/app/llms-quiz-attempt.js | 4 +- assets/js/llms-admin.js | 4 +- assets/js/llms-admin.min.js | 2 +- assets/js/llms-analytics.js | 4 +- assets/js/llms-analytics.min.js | 2 +- assets/js/llms-metabox-product.js | 6 +- assets/js/llms-metabox-product.min.js | 2 +- assets/js/llms.js | 36 ++ assets/js/llms.min.js | 2 +- assets/maps/css/admin.css.map | 2 +- assets/maps/css/admin.min.css.map | 2 +- assets/maps/css/lifterlms.css.map | 2 +- assets/maps/css/lifterlms.min.css.map | 2 +- assets/maps/js/llms-admin.min.js.map | 2 +- assets/maps/js/llms-analytics.min.js.map | 2 +- .../maps/js/llms-metabox-product.min.js.map | 2 +- assets/maps/js/llms.js.map | 2 +- assets/maps/js/llms.min.js.map | 2 +- blocks/navigation-link/block.json | 6 +- blocks/navigation-link/index.asset.php | 2 +- blocks/navigation-link/index.js | 2 +- class-lifterlms.php | 2 +- .../abstracts/abstract.llms.admin.table.php | 4 +- .../abstract.llms.analytics.widget.php | 8 +- .../llms-abstract-generator-posts.php | 4 +- includes/admin/class.llms.admin.builder.php | 4 +- .../class.llms.admin.dashboard-widget.php | 8 +- includes/admin/llms.functions.admin.php | 4 +- .../reporting/class.llms.admin.reporting.php | 8 +- .../class.llms.analytics.widget.ajax.php | 6 +- .../admin/views/access-plans/access-plan.php | 4 +- includes/admin/views/dashboard.php | 4 +- .../admin/views/dashboard/quick-links.php | 6 +- .../admin/views/setup-wizard/step-pages.php | 4 +- includes/class.llms.install.php | 6 +- includes/class.llms.l10n.js.php | 10 +- includes/class.llms.nav.menus.php | 6 +- .../llms.functions.templates.loop.php | 4 +- includes/schemas/llms-block-templates.php | 2 +- languages/currency-symbols.php | 2 +- languages/lifterlms.pot | 609 +++++++++--------- lifterlms.php | 2 +- package-lock.json | 4 +- package.json | 2 +- readme.txt | 56 +- templates/admin/reporting/tabs/widgets.php | 4 +- templates/global/sidebar.php | 4 +- .../quiz/results-attempt-questions-list.php | 4 +- 77 files changed, 596 insertions(+), 563 deletions(-) delete mode 100644 .changelogs/access-plans-with-warnings.yml delete mode 100644 .changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml delete mode 100644 .changelogs/better-analytics-widgets-1.yml delete mode 100644 .changelogs/better-analytics-widgets.yml delete mode 100644 .changelogs/better-floats.yml delete mode 100644 .changelogs/certificate-template-spacer-fix.yml delete mode 100644 .changelogs/cloning-issue-with-source.yml delete mode 100644 .changelogs/create_pages_improvements.yml delete mode 100644 .changelogs/dev.yml delete mode 100644 .changelogs/enhancement_filter-wizard-pages.yml delete mode 100644 .changelogs/fix-loop-no_pageid.yml delete mode 100644 .changelogs/fix-sidebar-fse.yml delete mode 100644 .changelogs/issue_2470.yml delete mode 100644 .changelogs/issue_2475.yml delete mode 100644 .changelogs/issue_2491-1.yml delete mode 100644 .changelogs/issue_2491.yml delete mode 100644 .changelogs/issue_2500.yml delete mode 100644 .changelogs/llms-link-visibility.yml delete mode 100644 .changelogs/nav-link-block-default.yml delete mode 100644 .changelogs/wrong-function-name.yml diff --git a/.changelogs/access-plans-with-warnings.yml b/.changelogs/access-plans-with-warnings.yml deleted file mode 100644 index f23916ec3e..0000000000 --- a/.changelogs/access-plans-with-warnings.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: patch -type: changed -entry: When a notice is shown for an access plan on the course edit screen (e.g. - When using the WooCommerce integration and no product has been associated to - the access plan.) Also display a warning icon next to the access plan title. diff --git a/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml b/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml deleted file mode 100644 index 4a30e69b20..0000000000 --- a/.changelogs/add_additional_param_to_filter_hook_lifterlms_reporting_tab_cap.yml +++ /dev/null @@ -1,8 +0,0 @@ -significance: patch -type: dev -links: - - "#2468" -attributions: - - "@sapayth" -entry: Added the parameter `$tab` (ID/slug of the tab) to the - `lifterlms_reporting_tab_cap` filter hook. diff --git a/.changelogs/better-analytics-widgets-1.yml b/.changelogs/better-analytics-widgets-1.yml deleted file mode 100644 index 3d1e9b5949..0000000000 --- a/.changelogs/better-analytics-widgets-1.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: minor -type: dev -entry: Added new filter hook `llms_can_analytics_widget_be_processed` - that will allow to filter wheteher or not an analytics widgegt can - be processed/disoplayed. diff --git a/.changelogs/better-analytics-widgets.yml b/.changelogs/better-analytics-widgets.yml deleted file mode 100644 index 885d9529a5..0000000000 --- a/.changelogs/better-analytics-widgets.yml +++ /dev/null @@ -1,4 +0,0 @@ -significance: minor -type: changed -entry: Made sure only who can `view_others_lifterlms_reports` will be able to - see the analytics widget content in the WordPress admin. diff --git a/.changelogs/better-floats.yml b/.changelogs/better-floats.yml deleted file mode 100644 index 03f7f9b230..0000000000 --- a/.changelogs/better-floats.yml +++ /dev/null @@ -1,3 +0,0 @@ -significance: patch -type: changed -entry: Better rounding of float values on some reporting screens. diff --git a/.changelogs/certificate-template-spacer-fix.yml b/.changelogs/certificate-template-spacer-fix.yml deleted file mode 100644 index c30fda9383..0000000000 --- a/.changelogs/certificate-template-spacer-fix.yml +++ /dev/null @@ -1,3 +0,0 @@ -significance: patch -type: fixed -entry: Fix spacer block when creating new certificate templates in WP 6.3. diff --git a/.changelogs/cloning-issue-with-source.yml b/.changelogs/cloning-issue-with-source.yml deleted file mode 100644 index c8f739b8cc..0000000000 --- a/.changelogs/cloning-issue-with-source.yml +++ /dev/null @@ -1,3 +0,0 @@ -significance: patch -type: changed -entry: Avoid creating a post revision when cloning a course/lesson. diff --git a/.changelogs/create_pages_improvements.yml b/.changelogs/create_pages_improvements.yml deleted file mode 100644 index 2d0b3b10ff..0000000000 --- a/.changelogs/create_pages_improvements.yml +++ /dev/null @@ -1,6 +0,0 @@ -significance: patch -type: changed -entry: "When creating pages via `llms_create_pages()`: strip all tags from the - page title and slash the page data prior to inserting the page in the db via - `wp_insert_post()` to prevent slashes from being stripped from the page - title." diff --git a/.changelogs/dev.yml b/.changelogs/dev.yml deleted file mode 100644 index 2b3e694bbb..0000000000 --- a/.changelogs/dev.yml +++ /dev/null @@ -1,3 +0,0 @@ -significance: patch -type: changed -entry: Updated the WordPress tested version up to 6.3. diff --git a/.changelogs/enhancement_filter-wizard-pages.yml b/.changelogs/enhancement_filter-wizard-pages.yml deleted file mode 100644 index 2a020cd45b..0000000000 --- a/.changelogs/enhancement_filter-wizard-pages.yml +++ /dev/null @@ -1,3 +0,0 @@ -significance: patch -type: dev -entry: Added new filter `llms_install_get_pages`. diff --git a/.changelogs/fix-loop-no_pageid.yml b/.changelogs/fix-loop-no_pageid.yml deleted file mode 100644 index 98074eb74a..0000000000 --- a/.changelogs/fix-loop-no_pageid.yml +++ /dev/null @@ -1,6 +0,0 @@ -significance: patch -type: fixed -links: - - "#2496" -entry: Fixed PHP Warning when no course/membership catalog page was set or if - the selected page doesn't exist anymore. diff --git a/.changelogs/fix-sidebar-fse.yml b/.changelogs/fix-sidebar-fse.yml deleted file mode 100644 index b1c412c6e5..0000000000 --- a/.changelogs/fix-sidebar-fse.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: patch -type: fixed -links: - - "#2488" -entry: Don't include WordPress default sidebar.php template when using a block theme. diff --git a/.changelogs/issue_2470.yml b/.changelogs/issue_2470.yml deleted file mode 100644 index b16e9f4e56..0000000000 --- a/.changelogs/issue_2470.yml +++ /dev/null @@ -1,7 +0,0 @@ -significance: minor -type: changed -links: - - "#2470" -entry: Improved compatibility with the Divi theme by fixing an issue with the - quiz attempt result clarifications not being visible when the Divi - option `Defer jQuery And jQuery Migrate` was enabled. diff --git a/.changelogs/issue_2475.yml b/.changelogs/issue_2475.yml deleted file mode 100644 index af70213573..0000000000 --- a/.changelogs/issue_2475.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: patch -type: fixed -links: - - "#2475" -entry: Updated Kazakhstani Tenge's currency symbol. diff --git a/.changelogs/issue_2491-1.yml b/.changelogs/issue_2491-1.yml deleted file mode 100644 index bf1eb747a7..0000000000 --- a/.changelogs/issue_2491-1.yml +++ /dev/null @@ -1,4 +0,0 @@ -significance: patch -type: dev -entry: Added new public static method - `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()`. diff --git a/.changelogs/issue_2491.yml b/.changelogs/issue_2491.yml deleted file mode 100644 index f6b22651de..0000000000 --- a/.changelogs/issue_2491.yml +++ /dev/null @@ -1,6 +0,0 @@ -significance: patch -type: dev -links: - - "#2491" -entry: Added `llms_dashboard_checklist` and `llms_dashboard_widget_data` filters to - adjust dashboard content. diff --git a/.changelogs/issue_2500.yml b/.changelogs/issue_2500.yml deleted file mode 100644 index 5fe80e9962..0000000000 --- a/.changelogs/issue_2500.yml +++ /dev/null @@ -1,6 +0,0 @@ -significance: patch -type: fixed -links: - - "#2500" -entry: Make the dashboard widget visible only if the current user has LMS - Manager capabilities. diff --git a/.changelogs/llms-link-visibility.yml b/.changelogs/llms-link-visibility.yml deleted file mode 100644 index b254e12867..0000000000 --- a/.changelogs/llms-link-visibility.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: patch -type: fixed -links: - - "#2474" -entry: Fixed issue with LifterLMS Navigation Link block and block visibility settings. diff --git a/.changelogs/nav-link-block-default.yml b/.changelogs/nav-link-block-default.yml deleted file mode 100644 index dfcf59fa2e..0000000000 --- a/.changelogs/nav-link-block-default.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: patch -type: fixed -links: - - "#2465" -entry: Use student dashboard as default value for navigation link block. diff --git a/.changelogs/wrong-function-name.yml b/.changelogs/wrong-function-name.yml deleted file mode 100644 index 5e6f01b4d8..0000000000 --- a/.changelogs/wrong-function-name.yml +++ /dev/null @@ -1,5 +0,0 @@ -significance: patch -type: fixed -attributions: - - "@kamalahmed" -entry: Fixed typo in a function name that could potentially produce a fatal. diff --git a/CHANGELOG.md b/CHANGELOG.md index e3e4ea6cde..1334a0cdd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,45 @@ LifterLMS Changelog =================== +v7.3.0 - 2023-08-08 +------------------- + +##### Updates and Enhancements + ++ When a notice is shown for an access plan on the course edit screen (e.g. When using the WooCommerce integration and no product has been associated to the access plan.) Also display a warning icon next to the access plan title. ++ Made sure only who can `view_others_lifterlms_reports` will be able to see the analytics widget content in the WordPress admin. ++ Better rounding of float values on some reporting screens. ++ Avoid creating a post revision when cloning a course/lesson. ++ When creating pages via `llms_create_pages()`: strip all tags from the page title and slash the page data prior to inserting the page in the db via `wp_insert_post()` to prevent slashes from being stripped from the page title. ++ Updated the WordPress tested version up to 6.3. ++ Improved compatibility with the Divi theme by fixing an issue with the quiz attempt result clarifications not being visible when the Divi option `Defer jQuery And jQuery Migrate` was enabled. [#2470](https://github.com/gocodebox/lifterlms/issues/2470) + +##### Bug Fixes + ++ Fix spacer block when creating new certificate templates in WP 6.3. ++ Fixed PHP Warning when no course/membership catalog page was set or if the selected page doesn't exist anymore. [#2496](https://github.com/gocodebox/lifterlms/issues/2496) ++ Don't include WordPress default sidebar.php template when using a block theme. [#2488](https://github.com/gocodebox/lifterlms/issues/2488) ++ Updated Kazakhstani Tenge's currency symbol. [#2475](https://github.com/gocodebox/lifterlms/issues/2475) ++ Make the dashboard widget visible only if the current user has LMS Manager capabilities. [#2500](https://github.com/gocodebox/lifterlms/issues/2500) ++ Fixed issue with LifterLMS Navigation Link block and block visibility settings. [#2474](https://github.com/gocodebox/lifterlms/issues/2474) ++ Use student dashboard as default value for navigation link block. [#2465](https://github.com/gocodebox/lifterlms/issues/2465) ++ Fixed typo in a function name that could potentially produce a fatal. Thanks [@kamalahmed](https://github.com/kamalahmed)! + +##### Developer Notes + ++ Added the parameter `$tab` (ID/slug of the tab) to the `lifterlms_reporting_tab_cap` filter hook. Thanks [@sapayth](https://github.com/sapayth)! [#2468](https://github.com/gocodebox/lifterlms/issues/2468) ++ Added new filter hook `llms_can_analytics_widget_be_processed` that will allow to filter whether or not an analytics widget can be processed/displayed. ++ Added new filter `llms_install_get_pages`. ++ Added new public static method `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()`. ++ Added `llms_dashboard_checklist` and `llms_dashboard_widget_data` filters to adjust dashboard content. [#2491](https://github.com/gocodebox/lifterlms/issues/2491) + +##### Updated Templates + ++ [templates/admin/reporting/tabs/widgets.php](https://github.com/gocodebox/lifterlms/blob/7.3.0/templates/admin/reporting/tabs/widgets.php) ++ [templates/global/sidebar.php](https://github.com/gocodebox/lifterlms/blob/7.3.0/templates/global/sidebar.php) ++ [templates/quiz/results-attempt-questions-list.php](https://github.com/gocodebox/lifterlms/blob/7.3.0/templates/quiz/results-attempt-questions-list.php) + + v7.2.1 - 2023-06-13 ------------------- diff --git a/assets/css/admin-rtl.css b/assets/css/admin-rtl.css index 338abed587..05a7824ac2 100644 --- a/assets/css/admin-rtl.css +++ b/assets/css/admin-rtl.css @@ -2669,6 +2669,9 @@ a.llms-view-as { .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover { color: #e5554e; } +.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger:hover { + color: #ff922b; +} .llms-collapsible .llms-collapsible-body { display: none; padding: 10px; @@ -2818,6 +2821,9 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post .llms-metabox .llms-access-plans .llms-invalid .dashicons-warning { display: inline; } +.llms-metabox .llms-access-plans .llms-needs-attention .dashicons-warning.medium-danger { + display: inline; +} .llms-metabox .llms-access-plans .dashicons-warning { display: none; } @@ -2841,6 +2847,9 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post color: #e5554e; margin-right: 3px; } +.llms-metabox .llms-access-plan .notice { + margin-right: 0; +} .llms-metabox-students .llms-table tr .name { text-align: right; @@ -3494,6 +3503,7 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post background: #efefef; margin: 0 0 10px; position: relative; + list-style-type: none; } .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer { color: inherit; diff --git a/assets/css/admin-rtl.min.css b/assets/css/admin-rtl.min.css index fd064a5247..8eaaf1d15d 100644 --- a/assets/css/admin-rtl.min.css +++ b/assets/css/admin-rtl.min.css @@ -1,4 +1,4 @@ -#poststuff .llms-metabox:before,#poststuff .llms-metabox:after,.llms-form-fields:before,.llms-metabox .llms-access-plans:before,.llms-collapsible .llms-collapsible-body:before,.llms-collapsible .llms-collapsible-header:before,.llms-collapsible:before,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{content:" ";display:table}#poststuff .llms-metabox:after,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{clear:both}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{right:-7px;position:relative}.llms-button-primary{background:#466dd8}.llms-button-primary:hover,.llms-button-primary.clicked{background:#2b55cb}.llms-button-primary:focus,.llms-button-primary:active{background:#6888df}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}#adminmenu .toplevel_page_lifterlms .wp-menu-image img{padding-top:6px;width:20px}#adminmenu .toplevel_page_lifterlms a[href*="page=llms-add-ons"],#adminmenu .opensub .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a[href*="page=llms-add-ons"]{color:#ff922b}.last-col{float:left;padding-left:0 !important}.last-col:after{clear:both}@media(max-width: 767px){.m-all{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-left:0}.m-1of2{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.m-1of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.m-2of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.m-1of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.m-3of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.m-right{text-align:center}.m-center{text-align:center}.m-left{text-align:center}.d-right{text-align:left}.d-center{text-align:center}.d-left{text-align:right}}@media(min-width: 768px)and (max-width: 1029px){.t-all{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-left:0}.t-1of2{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.t-1of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.t-2of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.t-1of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.t-3of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.t-1of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.t-2of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.t-3of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.t-4of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-right{text-align:left}.d-center{text-align:center}.d-left{text-align:right}}@media(min-width: 1030px){.d-all{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-left:0}.d-1of2{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.d-1of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.d-2of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.d-1of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.d-3of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.d-1of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.d-2of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.d-3of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.d-4of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-1of6{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:16.6666666667%}.d-1of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:14.2857142857%}.d-2of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:28.5714286%}.d-3of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:42.8571429%}.d-4of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:57.1428572%}.d-5of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:71.4285715%}.d-6of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:85.7142857%}.d-1of8{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:12.5%}.d-1of9{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:11.1111111111%}.d-1of10{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:10%}.d-1of11{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:9.0909090909%}.d-1of12{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:8.33%}.d-right{text-align:left}.d-center{text-align:center}.d-left{text-align:right}}#llms-form-wrapper .llms-search-form-wrapper{border-bottom:1px solid #999;margin:20px 0}#llms-form-wrapper #llms_analytics_search{border:none !important;text-shadow:none !important;border:none !important;outline:none !important;-webkit-box-shadow:none !important;box-shadow:none !important;margin:0 !important;color:#fefefe !important;background:#466dd8 !important;border-radius:0;-webkit-transition:.5s;transition:.5s}#llms-form-wrapper #llms_analytics_search:hover{background:#0185a3 !important}#llms-form-wrapper #llms_analytics_search:active{background:#33b1cb !important}#llms-skip-setup-form .llms-admin-link{background:none !important;border:none;padding:0 !important;color:#0074a2;cursor:pointer}#llms-skip-setup-form .llms-admin-link:hover{color:#2ea2cc}#llms-skip-setup-form .llms-admin-link:focus{color:#124964}.llms-switch{position:relative}.llms-switch .llms-toggle{position:absolute;margin-right:-9999px;visibility:hidden}.llms-switch .llms-toggle+label{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;position:relative;cursor:pointer;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.llms-switch input.llms-toggle-round+label{border:2px solid #6c7781;border-radius:10px;height:20px;width:36px}.llms-switch input.llms-toggle-round+label:before,.llms-switch input.llms-toggle-round+label:after{-webkit-box-sizing:border-box;box-sizing:border-box;content:"";display:block;position:absolute;-webkit-transition:background .4s;transition:background .4s}.llms-switch input.llms-toggle-round:checked+label{border-color:#11a0d2;background-color:#11a0d2}.llms-switch input.llms-toggle-round+label:after{height:12px;right:2px;top:2px;background-color:#6c7781;border-radius:50%;-webkit-transition:margin .4s;transition:margin .4s;width:12px;z-index:3}.llms-switch input.llms-toggle-round:checked+label:after{background-color:#fefefe;margin-right:16px}.llms-switch input.llms-toggle-round+label:before{height:8px;top:4px;border:1px solid #6c7781;border-radius:50%;left:4px;width:8px;z-index:2}.llms-switch input.llms-toggle-round:checked+label:before{border-color:#fefefe;border-radius:0;right:6px;left:auto;width:2px}#llms-profile-fields{margin:50px 0}#llms-profile-fields .llms-form-field{padding-right:0}#llms-profile-fields label{display:block;font-weight:bold;padding:8px 0 2px}#llms-profile-fields .type-checkbox .type-checkbox label{display:initial;font-weight:initial;padding:0}#llms-profile-fields .type-checkbox .type-checkbox input{display:inline-block;margin-bottom:0;width:1rem}#llms-profile-fields select{max-width:100%}a.llms-voucher-delete{background:#e5554e;color:#fefefe;display:block;padding:4px 2px;text-decoration:none;-webkit-transition:ease .3s all;transition:ease .3s all}a.llms-voucher-delete:hover{background:#af3a26}.llms-voucher-codes-wrapper table,.llms-voucher-redemption-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td,.llms-voucher-redemption-wrapper table th,.llms-voucher-redemption-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead,.llms-voucher-redemption-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table thead th,.llms-voucher-redemption-wrapper table thead th{padding:10px 10px}.llms-voucher-codes-wrapper table tr,.llms-voucher-redemption-wrapper table tr{counter-increment:row-counter}.llms-voucher-codes-wrapper table tr:nth-child(even),.llms-voucher-redemption-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td,.llms-voucher-redemption-wrapper table tr td{padding:5px}.llms-voucher-codes-wrapper table tr td:first-child:before,.llms-voucher-redemption-wrapper table tr td:first-child:before{content:counter(row-counter)}.llms-voucher-codes-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td span{display:inline-block;min-width:30px}.llms-voucher-codes-wrapper button{cursor:pointer}.llms-voucher-codes-wrapper .llms-voucher-delete{float:left;margin-left:15px}.llms-voucher-codes-wrapper .llms-voucher-uses{width:50px}.llms-voucher-codes-wrapper .llms-voucher-add-codes{float:left}.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text]{width:30px}.llms-voucher-export-wrapper .llms-voucher-export-type{width:100%}.llms-voucher-export-wrapper .llms-voucher-export-type p{margin:0 15px 0 0}.llms-voucher-export-wrapper .llms-voucher-email-wrapper{width:100%;margin:25px 0}.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text]{width:100%}.llms-voucher-export-wrapper .llms-voucher-email-wrapper p{margin:0}.llms-voucher-export-wrapper>button{float:left}.postbox .inside{overflow:auto}.llms-widget{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:20px;padding:20px;position:relative;width:100%}.llms-widget.alt{border:1px solid #ccc;background-color:#efefef;margin-bottom:10px}.llms-widget.alt .llms-label{color:#777;font-size:14px;margin-bottom:10px;padding-bottom:5px}.llms-widget.alt h2{color:#444;font-weight:300}.llms-widget a{border-bottom:1px dotted #466dd8;display:inline-block;text-decoration:none}.llms-widget a:hover{border-bottom:1px dotted #2b55cb}.llms-widget .llms-widget-content{margin:.67em 0;color:#466dd8;font-size:2.4em;font-weight:700;line-height:1;word-break:break-all}.llms-widget h2{font-size:1.8em}.llms-widget .llms-label{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:18px;font-weight:400;margin:0 0 10px 0;text-align:center}.llms-widget .llms-chart{width:100%;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-widget mark.yes{background-color:#7ad03a}.llms-widget .llms-subtitle{margin-bottom:0}.llms-widget .spinner{float:none;right:50%;margin:-10px -10px 0 0;position:absolute;top:50%;z-index:2}.llms-widget.is-loading:before{background:#fefefe;bottom:0;content:"";right:0;opacity:.9;position:absolute;left:0;top:0;z-index:1}.llms-widget.is-loading .spinner{visibility:visible}.llms-widget td[colspan="2"]{padding-right:0}.llms-widget tr.llms-disabled-field{opacity:.5;pointer-events:none}.llms-widget-1-3,.llms-widget-1-4,.llms-widget-1-5{text-align:center}.llms-widget .llms-widget-info-toggle{color:#aaa;cursor:pointer;font-size:16px;position:absolute;left:20px;top:20px}.llms-widget.info-showing .llms-widget-info{display:block}.llms-widget-info{background:#444;color:#fefefe;bottom:-50px;display:none;padding:15px;position:absolute;text-align:center;right:10px;left:15px;z-index:3}.llms-widget-info:before{content:"";border:12px solid rgba(0,0,0,0);border-bottom-color:#444;right:50%;margin-right:-12px;position:absolute;top:-24px}.llms-widget-info p{margin:0}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .no-padding{padding:0 !important}svg.icon{height:24px;width:24px;display:inline-block;fill:currentColor;vertical-align:baseline}button svg.icon{height:18px;width:18px;margin:4px 4px 0 -4px;-webkit-filter:drop-shadow(0 1px #eee);filter:drop-shadow(0 1px #eee);float:left}svg.icon.menu-icon{height:20px;width:20px;display:inline-block;fill:currentColor;vertical-align:text-bottom;margin-left:10px}svg.icon.tree-icon{height:13px;width:13px;vertical-align:middle}svg.icon.section-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon-attr{height:10px;width:10px;vertical-align:middle}svg.icon.list-icon{height:12px;width:12px;vertical-align:middle}svg.icon.list-icon.on{color:#466dd8}svg.icon.list-icon.off{color:#444}svg.icon.detail-icon{height:16px;width:16px;vertical-align:text-bottom;cursor:default}svg.icon.detail-icon.on{color:#466dd8}svg.icon.detail-icon.off{color:#ccc}svg.icon-ion-arrow-up{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}svg use{pointer-events:none}#side-sortables .tab-content{padding:0}.llms-mb-container .tab-content{display:none;background-color:#fff;padding:0 20px}.llms-mb-container .tab-content ul:not(.select2-selection__rendered){margin:0 0 15px 0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li{padding:20px 0;margin:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.select:not([class*=d-]){width:100%}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li:last-child{border:0;padding-bottom:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.top{border-bottom:0;padding-bottom:0}.llms-mb-container .tab-content .full-width{width:100%}.llms-mb-container .tab-content #wp-content-editor-tools{background:none}.llms-mb-container .tab-content.llms-active{display:inherit}.llms-mb-container .tab-content .no-border{border-bottom:0px}.topModal{display:none;position:relative;border:4px solid gray;background:#fff;z-index:1000001;padding:2px;max-width:500px;margin:34px auto 0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-color:#fff;border-radius:2px;border:1px solid #ddd}.topModalClose{float:left;cursor:pointer;margin-left:10px;margin-top:10px}.topModalContainer{display:none;overflow:auto;overflow-y:hidden;position:fixed;top:0 !important;left:0;bottom:0;right:0;-webkit-overflow-scrolling:touch;width:auto !important;margin-right:0 !important;background-color:rgba(0,0,0,0) !important;z-index:100002 !important}.topModalBackground{display:none;background:#000;position:fixed;height:100%;width:100%;top:0 !important;right:0;margin-right:0 !important;z-index:100002 !important;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:auto;overflow-y:hidden}body.modal-open{overflow:hidden}.llms-modal-header{border-top-left-radius:1px;border-top-right-radius:1px;background:#466dd8;color:#eee;padding:10px 15px;font-size:18px}#llms-icon-modal-close{width:16px;height:16px;fill:#fefefe}.llms-modal-content{padding:20px}.llms-modal-content h3{margin-top:0}.llms-modal-form h1{margin-top:0}.llms-modal-form input[type=text]{width:100%}.llms-modal-form textarea,.llms-modal-form input[type=text],.llms-modal-form input[type=password],.llms-modal-form input[type=file],.llms-modal-form input[type=datetime],.llms-modal-form input[type=datetime-local],.llms-modal-form input[type=date],.llms-modal-form input[type=month],.llms-modal-form input[type=time],.llms-modal-form input[type=week],.llms-modal-form input[type=number],.llms-modal-form input[type=email],.llms-modal-form input[type=url],.llms-modal-form input[type=search],.llms-modal-form input[type=tel],.llms-modal-form input[type=color]{padding:0 .4em 0 .4em;margin-bottom:2em;vertical-align:middle;border-radius:3px;min-width:50px;max-width:635px;width:100%;min-height:32px;background-color:#fff;border:1px solid #ccc;margin:0 0 24px 0;outline:none;-webkit-transition:border .3s ease-in-out 0s;transition:border .3s ease-in-out 0s}.llms-modal-form textarea:focus,.llms-modal-form input[type=text]:focus,.llms-modal-form input[type=password]:focus,.llms-modal-form input[type=file]:focus,.llms-modal-form input[type=datetime]:focus,.llms-modal-form input[type=datetime-local]:focus,.llms-modal-form input[type=date]:focus,.llms-modal-form input[type=month]:focus,.llms-modal-form input[type=time]:focus,.llms-modal-form input[type=week]:focus,.llms-modal-form input[type=number]:focus,.llms-modal-form input[type=email]:focus,.llms-modal-form input[type=url]:focus,.llms-modal-form input[type=search]:focus,.llms-modal-form input[type=tel]:focus,.llms-modal-form input[type=color]:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form textarea{padding:.4em !important;height:100px !important;border-radius:3px;vertical-align:middle;min-height:32px;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-modal-form textarea:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single{border-radius:3px;vertical-align:middle;min-height:32px;border:1px solid #ccc;width:100%;background:#fefefe !important;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff;line-height:32px;margin:0 0 24px 0}.llms-modal-form .chosen-container-single .chosen-single:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single div b{margin-top:4px}.llms-modal-form .chosen-search input[type=text]{border:1px solid #ccc}.llms-modal-form .chosen-search input[type=text]:focus{background-color:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-drop{margin-top:-28px}.llms-modal-form .llms-button-primary,.llms-modal-form .llms-button-secondary{padding:10px 10px;border-radius:0;-webkit-transition:.5s;transition:.5s;-webkit-box-shadow:0 1px 1px #ccc;box-shadow:0 1px 1px #ccc}.llms-modal-form .llms-button-primary.full,.llms-modal-form .llms-button-secondary.full{width:100%}.modal-open .select2-dropdown{z-index:1000005}.button.llms-merge-code-button{vertical-align:middle}.button.llms-merge-code-button svg{margin-left:2px;position:relative;top:4px;width:16px}.button.llms-merge-code-button svg g{fill:currentColor}.llms-mb-container .llms-merge-code-wrapper{float:left;top:-5px}.llms-merge-code-wrapper{display:inline;position:relative}.llms-merge-codes{background:#f7f7f7;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;display:none;right:1px;overflow:hidden;position:absolute;top:30px;width:200px}.llms-merge-codes ul{margin:0;padding:0}.llms-merge-codes li{cursor:pointer;margin:0;padding:4px 8px !important;border-bottom:1px solid #ccc}.llms-merge-codes li:hover{color:#23282d;background:#fefefe}.llms-merge-codes.active{display:block;z-index:777}.llms-nav-tab,.llms-nav-tab-filters{display:block;width:100%}form.llms-nav-tab-filters.full-width{width:100%}form.llms-nav-tab-filters.full-width label{display:inline-block;width:10%;text-align:right}form.llms-nav-tab-filters.full-width .select2-container{width:85% !important}.llms-nav-tab-settings{display:block;width:100%}#llms-form-wrapper .llms-select{width:100%;margin-bottom:20px}#llms-form-wrapper .llms-checkbox{display:inline-block;width:100%;text-align:right}#llms-form-wrapper .llms-filter-options{width:100%}#llms-form-wrapper .llms-date-select{width:100%;display:inline-block;margin-bottom:20px}#llms-form-wrapper .llms-date-select input[type=text]{width:100%}ul.tabs li{display:block}@media only screen and (min-width: 481px){#llms-form-wrapper .llms-checkbox{width:33%}}@media only screen and (min-width: 768px){ul.tabs li{display:inline-block}.llms-nav-tab{display:inline-block;width:33%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{width:50%;max-width:500px}#llms-form-wrapper .llms-filter-options{width:50%;max-width:500px}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-left:5%}.llms-widget input[type=text],.llms-widget input[type=password],.llms-widget input[type=datetime],.llms-widget input[type=datetime-local],.llms-widget input[type=date],.llms-widget input[type=month],.llms-widget input[type=time],.llms-widget input[type=week],.llms-widget input[type=number],.llms-widget input[type=email],.llms-widget input[type=url],.llms-widget input[type=search],.llms-widget input[type=tel],.llms-widget input[type=color],.llms-widget select,.llms-widget textarea{width:50%}.llms-widget input[type=text].medium,.llms-widget input[type=password].medium,.llms-widget input[type=datetime].medium,.llms-widget input[type=datetime-local].medium,.llms-widget input[type=date].medium,.llms-widget input[type=month].medium,.llms-widget input[type=time].medium,.llms-widget input[type=week].medium,.llms-widget input[type=number].medium,.llms-widget input[type=email].medium,.llms-widget input[type=url].medium,.llms-widget input[type=search].medium,.llms-widget input[type=tel].medium,.llms-widget input[type=color].medium,.llms-widget select.medium,.llms-widget textarea.medium{width:30%}.llms-widget input[type=text].small,.llms-widget input[type=password].small,.llms-widget input[type=datetime].small,.llms-widget input[type=datetime-local].small,.llms-widget input[type=date].small,.llms-widget input[type=month].small,.llms-widget input[type=time].small,.llms-widget input[type=week].small,.llms-widget input[type=number].small,.llms-widget input[type=email].small,.llms-widget input[type=url].small,.llms-widget input[type=search].small,.llms-widget input[type=tel].small,.llms-widget input[type=color].small,.llms-widget select.small,.llms-widget textarea.small{width:20%}.llms-widget input[type=text].tiny,.llms-widget input[type=password].tiny,.llms-widget input[type=datetime].tiny,.llms-widget input[type=datetime-local].tiny,.llms-widget input[type=date].tiny,.llms-widget input[type=month].tiny,.llms-widget input[type=time].tiny,.llms-widget input[type=week].tiny,.llms-widget input[type=number].tiny,.llms-widget input[type=email].tiny,.llms-widget input[type=url].tiny,.llms-widget input[type=search].tiny,.llms-widget input[type=tel].tiny,.llms-widget input[type=color].tiny,.llms-widget select.tiny,.llms-widget textarea.tiny{width:10%}}@media only screen and (min-width: 1030px){.llms-nav-tab{display:inline-block;width:33.333%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{display:inline-block;width:47.5%}#llms-form-wrapper .llms-select:first-child{margin-left:5%}#llms-form-wrapper .llms-filter-options{display:inline-block;width:47.5%}#llms-form-wrapper .llms-filter-options.date-filter{margin-left:5%}#llms-form-wrapper .llms-filter-options .llms-date-select{margin-bottom:0}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-left:5%}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .llms-widget-1-5{vertical-align:top;width:20%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-4{vertical-align:top;width:25%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-3{width:33.3%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-2{width:50%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px;vertical-align:top}}@media only screen and (min-width: 1240px){.llms-nav-tab-filters,.llms-nav-tab-settings{float:right;width:12.5%}}.wrap.lifterlms{margin-top:0}.llms-header{background-color:#fff;margin:0 -20px 0 0;padding:20px 10px;position:relative;z-index:1}.llms-header .llms-inside-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 10px}.llms-header .lifterlms-logo{-webkit-box-flex:0;-ms-flex:0 0 190px;flex:0 0 190px;max-height:52px;margin-left:10px}.llms-header .llms-meta{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:1.5}.llms-header .llms-meta .llms-version{background-color:#1d2327;color:#fff;border-radius:999px;font-size:13px;font-weight:700;padding:6px 12px}.llms-header .llms-meta a{display:inline-block}.llms-header .llms-meta .llms-license{border-left:1px solid #ccc;font-weight:700;margin-left:12px;padding-left:12px}.llms-header .llms-meta .llms-license a{text-decoration:none}.llms-header .llms-meta .llms-license a:before{content:"";display:inline-block;font:400 16px/1 dashicons;right:0;padding-left:3px;position:relative;text-decoration:none;vertical-align:text-bottom}.llms-header .llms-meta .llms-license a.llms-license-none{color:#888}.llms-header .llms-meta .llms-license a.llms-license-none:before{content:""}.llms-header .llms-meta .llms-license a.llms-license-active{color:#008a20}.llms-header .llms-meta .llms-license a.llms-license-active:before{content:""}.llms-header .llms-meta .llms-support{font-weight:700}.llms-header .llms-meta .llms-support a{color:#1d2327;text-decoration:none}.llms-subheader{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-right:-20px;padding:10px 20px;width:100%;z-index:1}.llms-subheader h1{font-weight:700;padding:0}.llms-subheader h1 a{color:inherit;text-decoration:none}#post_course_difficulty{min-width:200px}#_video-embed,#_audio-embed{width:100%}.clear{clear:both;width:100%}hr{background-color:#ccc;border:none;height:1px;margin:30px 0;padding:0}.llms_certificate_default_image,.llms_certificate_image{width:300px}.llms_achievement_default_image,.llms_achievement_image{width:120px}div[id^=lifterlms-] .inside{overflow:visible}.notice.llms-admin-notice{background-color:#fff;border:1px solid #ccd0d4;-webkit-box-shadow:0 1px 4px rgba(0,0,0,.15);box-shadow:0 1px 4px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 !important;position:relative}.notice.llms-admin-notice .notice-dismiss{text-decoration:none}.notice.llms-admin-notice.notice-warning{border-right:4px solid #f8954f}.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon{background-color:#fef4ed}.notice.llms-admin-notice.notice-info{border-right:4px solid #466dd8}.notice.llms-admin-notice.notice-info h3{color:#466dd8}.notice.llms-admin-notice.notice-info .llms-admin-notice-icon{background-color:#edf0fb}.notice.llms-admin-notice.notice-success{border-right:4px solid #18a957}.notice.llms-admin-notice.notice-success h3{color:#18a957}.notice.llms-admin-notice.notice-success .llms-admin-notice-icon{background-color:#e8f6ee}.notice.llms-admin-notice.notice-error{border-right:4px solid #df1642}.notice.llms-admin-notice.notice-error h3{color:#9c0f2e}.notice.llms-admin-notice.notice-error .llms-admin-notice-icon{background-color:#fce8ec}.notice.llms-admin-notice .llms-admin-notice-icon{background-image:url(../../assets/images/lifterlms-icon-color.png);background-position:center center;background-repeat:no-repeat;background-size:30px;min-width:70px}.notice.llms-admin-notice .llms-admin-notice-content{color:#111;padding:20px}.notice.llms-admin-notice h3{font-size:18px;font-weight:700;line-height:25px;margin:0 0 15px 0}.notice.llms-admin-notice button,.notice.llms-admin-notice .llms-button-primary{display:inline-block}.notice.llms-admin-notice p{font-size:14px;line-height:22px;margin:0 0 15px 0;max-width:65em;padding:0}.notice.llms-admin-notice p:last-of-type{margin-bottom:0}.llms-button-action.small .dashicons,.llms-button-danger.small .dashicons,.llms-button-primary.small .dashicons,.llms-button-secondary.small .dashicons{font-size:13px;height:13px;width:13px}.llms-button-action:hover,.llms-button-danger:hover,.llms-button-primary:hover,.llms-button-secondary:hover{-webkit-box-shadow:none;box-shadow:none}a.llms-view-as{line-height:2;margin-left:8px}.llms-image-field-preview{max-height:80px;vertical-align:middle;width:auto}.llms-image-field-remove.hidden{display:none}.llms-log-viewer{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);margin:20px 0;padding:25px}.llms-log-viewer pre{font-family:monospace;margin:0;padding:0;white-space:pre-wrap}.llms-status--tools .llms-table{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.llms-status--tools .llms-table td,.llms-status--tools .llms-table th{padding:10px;vertical-align:top}.llms-status--tools .llms-table th{width:28%}.llms-status--tools .llms-table p{margin:0 0 10px}.llms-error{color:#e5554e;font-style:italic}.llms-rating-stars{color:#ffb900;text-decoration:none}@media screen and (max-width: 782px){.llms-header{top:46px}.llms-header .llms-inside-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px}.llms-header .llms-inside-wrap .lifterlms-logo{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:inherit;-ms-flex:inherit;flex:inherit;max-height:initial;max-width:200px}.llms-header .llms-inside-wrap .llms-meta{-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px}}.llms-table-wrap{position:relative}.llms-table-header{padding:0}.llms-table-header:before,.llms-table-header:after{content:" ";display:table}.llms-table-header:after{clear:both}.llms-table-header h2{font-size:20px;padding:0;display:inline-block;line-height:1.5;margin:0 0 20px 0;vertical-align:middle}.llms-table-header .llms-table-search,.llms-table-header .llms-table-filters{float:left;padding-right:10px}.llms-table-header .llms-table-search input{margin:0;padding:0 8px}.llms-table{border:1px solid #c3c4c7;border-collapse:collapse;width:100%}.llms-table a:not(.small){color:#466dd8}.llms-table a:not(.small):hover{color:#2b55cb}.llms-table td,.llms-table th{border-bottom:1px solid #c3c4c7;padding:10px 12px;text-align:center}.llms-table td.expandable.closed,.llms-table th.expandable.closed{display:none}.llms-table td .llms-button-primary,.llms-table td .llms-button-secondary,.llms-table td .llms-button-action,.llms-table td .llms-button-danger,.llms-table th .llms-button-primary,.llms-table th .llms-button-secondary,.llms-table th .llms-button-action,.llms-table th .llms-button-danger{display:inline-block}.llms-table tr.llms-quiz-pending td{font-weight:700}.llms-table thead th,.llms-table tfoot th{background-color:#fff;font-weight:700}.llms-table thead th a.llms-sortable,.llms-table tfoot th a.llms-sortable{padding-left:16px;position:relative;text-decoration:none;width:100%}.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc{opacity:1}.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc{opacity:0}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc{opacity:0}.llms-table thead th a.llms-sortable .dashicons,.llms-table tfoot th a.llms-sortable .dashicons{color:#444;font-size:16px;height:16px;opacity:0;position:absolute;width:16px}.llms-table tfoot th{border-bottom:none}.llms-table tfoot th .llms-table-export{float:right}.llms-table tfoot th .llms-table-export .llms-table-progress{background:#efefef;display:none;margin-right:8px;vertical-align:middle;width:100px}.llms-table tfoot th .llms-table-pagination{float:left}.llms-table.zebra tbody tr:nth-child(even) th,.llms-table.zebra tbody tr:nth-child(even) td{background-color:#fff}.llms-table.zebra tbody tr:nth-child(odd) th,.llms-table.zebra tbody tr:nth-child(odd) td{background-color:#f6f7f7}.llms-table.text-left td,.llms-table.text-left th{text-align:right}.llms-table.size-large td,.llms-table.size-large th{font-size:14px;padding:10px 12px}.llms-table .llms-drag-handle{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-table .llms-action-icon{color:#777;text-decoration:none}.llms-table .llms-action-icon .tooltip{cursor:pointer}.llms-table .llms-action-icon:hover{color:#466dd8}.llms-table .llms-action-icon.danger:hover{color:#e5554e}.llms-table .llms-table-page-count{font-size:12px;padding:0 5px}.llms-table-progress{text-align:center}.llms-table-progress .llms-table-progress-bar{background:#eee;border-radius:10px;height:16px;overflow:hidden;position:relative}.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner{background:#466dd8;height:100%;-webkit-transition:width .2s ease;transition:width .2s ease}.llms-table-progress .llms-table-progress-text{color:#466dd8;font-size:12px;font-weight:700;line-height:16px}.llms-table.llms-gateway-table .status .fa,.llms-table.llms-integrations-table .status .fa{color:#466dd8;font-size:22px}.llms-table.llms-gateway-table .sort,.llms-table.llms-integrations-table .sort{cursor:move;text-align:center;width:10px}.llms-gb-table-notifications th,.llms-gb-table-notifications td{text-align:right}.llms-order-note .llms-order-note-content{background:#efefef;margin-bottom:10px;padding:10px;position:relative}.llms-order-note .llms-order-note-content:after{border-style:solid;border-color:#efefef rgba(0,0,0,0);border-width:10px 0 0 10px;bottom:-10px;content:"";display:block;height:0;right:20px;position:absolute;width:0}.llms-order-note .llms-order-note-content p{font-size:13px;margin:0;line-height:1.5}.llms-order-note .llms-order-note-meta{color:#999;font-size:11px;margin-right:10px}.llms-mb-list label{font-size:15px;font-weight:700;line-height:1.5;display:block;width:100%}.llms-mb-list .description{margin-bottom:8px}.llms-mb-list .input-full{width:100%}#poststuff .llms-metabox h2,#poststuff .llms-metabox h3,#poststuff .llms-metabox h6{margin:0;padding:0}#poststuff .llms-metabox h2{font-size:18px;font-weight:700}#poststuff .llms-metabox h3{color:#777;font-size:16px}#poststuff .llms-metabox h4{border-bottom:1px solid #e5e5e5;padding:0;margin:0}#poststuff .llms-metabox .llms-transaction-test-mode{background:#ffffd7;font-style:italic;right:0;padding:2px;position:absolute;left:0;top:0;text-align:center}#poststuff .llms-metabox a.llms-editable,#poststuff .llms-metabox .llms-metabox-icon,#poststuff .llms-metabox button.llms-editable{color:#999;text-decoration:none}#poststuff .llms-metabox a.llms-editable:hover,#poststuff .llms-metabox .llms-metabox-icon:hover,#poststuff .llms-metabox button.llms-editable:hover{color:#466dd8}#poststuff .llms-metabox button.llms-editable{border:none;background:none;cursor:pointer;padding:0;vertical-align:top}#poststuff .llms-metabox h4 button.llms-editable{float:left}#poststuff .llms-metabox .llms-table{margin-top:10px}.llms-metabox-section{background:#fff;margin-top:25px;position:relative}.llms-metabox-section.no-top-margin{margin-top:0}.llms-metabox-section .llms-metabox-field{margin:15px 0;position:relative}.llms-metabox-section .llms-metabox-field label{color:#777;display:block;margin-bottom:5px;font-weight:500;vertical-align:baseline}.llms-metabox-section .llms-metabox-field select,.llms-metabox-section .llms-metabox-field textarea,.llms-metabox-section .llms-metabox-field input[type=text],.llms-metabox-section .llms-metabox-field input[type=number]{width:100%}.llms-metabox-section .llms-metabox-field input.md-text{width:105px}.llms-metabox-section .llms-metabox-field input.sm-text{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input{width:95px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field em{font-style:normal;padding:0 3px}.llms-collapsible{border:1px solid #e5e5e5;position:relative;margin-top:0;margin-bottom:-1px}.llms-collapsible:last-child{margin-bottom:0}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down{display:none}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header{padding:10px}.llms-collapsible .llms-collapsible-header h3{color:#777;margin:0;font-size:16px}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:none}.llms-collapsible .llms-collapsible-header a{text-decoration:none}.llms-collapsible .llms-collapsible-header .dashicons{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-collapsible .llms-collapsible-header .dashicons:hover{color:#466dd8}.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover{color:#e5554e}.llms-collapsible .llms-collapsible-body{display:none;padding:10px}._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove{display:none}._llms_instructors_data.repeater .llms-mb-list{padding:0 5px !important}.post-type-llms_order #post-body-content{display:none}#lifterlms-order-details .handlediv,#lifterlms-order-details .handlediv.button-link,#lifterlms-order-details .postbox-header{display:none}#lifterlms-order-details .inside{padding:20px;margin-top:0}.llms-table tbody tr.llms-txn-failed td{background-color:rgba(229,85,78,.5);border-bottom-color:rgba(229,85,78,.5)}.llms-table tbody tr.llms-txn-refunded td{background-color:rgba(255,165,0,.5);border-bottom-color:rgba(255,165,0,.5)}.llms-txn-refund-form .llms-metabox-section,.llms-manual-txn-form .llms-metabox-section{margin-top:0}.llms-txn-refund-form .llms-metabox-field,.llms-manual-txn-form .llms-metabox-field{text-align:left}.llms-txn-refund-form .llms-metabox-field input[type=number],.llms-manual-txn-form .llms-metabox-field input[type=number]{max-width:100px}.llms-txn-refund-form .llms-metabox-field input[type=text],.llms-manual-txn-form .llms-metabox-field input[type=text]{max-width:340px}.llms-manual-txn-form{background-color:#eaeaea}.llms-manual-txn-form .llms-metabox-section{background-color:#eaeaea}#llms-remaining-edit{display:none}.llms-remaining-edit--content label,.llms-remaining-edit--content span,.llms-remaining-edit--content textarea{display:block}.llms-remaining-edit--content label{margin-bottom:20px}.llms-remaining-edit--content textarea,.llms-remaining-edit--content input{width:100%}.submitbox .llms-mb-section,.llms-award-engagement-submitbox .llms-mb-list{margin-bottom:12px}.submitbox .llms-mb-section:last-of-type,.llms-award-engagement-submitbox .llms-mb-list:last-of-type{margin-bottom:0}.sync-action:before,.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{font:normal 20px/1 dashicons;speak:never;display:inline-block;margin-right:-1px;padding-left:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px;color:#8c8f94}body:not(.admin-color-fresh) .sync-action:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{color:currentColor}.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{content:""}.sync-action:before{content:"";color:#fff}.submitbox .llms-mb-section.post_author_override label,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label{display:inline-block;width:auto}.llms-metabox #llms-new-access-plan-model{display:none}.llms-metabox .llms-access-plans{margin-top:10px}.llms-metabox .llms-access-plans>.llms-no-plans-msg{display:none}.llms-metabox .llms-access-plans>.llms-no-plans-msg:last-child{-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5;display:block;text-align:center;padding:10px}.llms-metabox .llms-access-plans.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-metabox .llms-access-plans .llms-spinning{z-index:1}.llms-metabox .llms-access-plans .llms-invalid{border-color:#e5554e}.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning{display:inline}.llms-metabox .llms-access-plans .dashicons-warning{display:none}.llms-metabox .llms-access-plan{text-align:right}.llms-metabox .llms-access-plan [data-tip]:before{text-align:center}.llms-metabox .llms-access-plan .llms-plan-link,.llms-metabox .llms-access-plan [data-controller]{display:none}.llms-metabox .llms-access-plan:hover .llms-plan-link,.llms-metabox .llms-access-plan.opened .llms-plan-link{display:inline-block}.llms-metabox .llms-access-plan .llms-metabox-field{margin:5px 0}.llms-metabox .llms-access-plan .llms-required{color:#e5554e;margin-right:3px}.llms-metabox-students .llms-table tr .name{text-align:right}.llms-metabox-students .llms-add-student:hover{color:#83c373}.llms-metabox-students .llms-remove-student:hover{color:#e5554e}.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields>li.llms-mb-list{border-bottom:none;padding:0 0 10px}.llms-mb-list.repeater .llms-repeater-rows{position:relative;margin-top:10px;min-height:10px}.llms-mb-list.repeater .llms-repeater-rows.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-mb-list.repeater .llms-repeater-row{background:#fff}.llms-mb-list.repeater .llms-mb-repeater-footer{text-align:left;margin-top:20px}.llms-mb-list.repeater .tmce-active .wp-editor-area{color:#32373c}.llms-builder-launcher p{margin-top:0}.llms-builder-launcher ol{margin-top:-6px}.llms-builder-launcher .llms-button-primary{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-list-table .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.wp-list-table .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.wp-list-table .llms-status.llms-active,.wp-list-table .llms-status.llms-completed,.wp-list-table .llms-status.llms-pass,.wp-list-table .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.wp-list-table .llms-status.llms-fail,.wp-list-table .llms-status.llms-failed,.wp-list-table .llms-status.llms-expired,.wp-list-table .llms-status.llms-cancelled,.wp-list-table .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.wp-list-table .llms-status.llms-incomplete,.wp-list-table .llms-status.llms-on-hold,.wp-list-table .llms-status.llms-pending,.wp-list-table .llms-status.llms-pending-cancel,.wp-list-table .llms-status.llms-refunded,.wp-list-table .llms-status.llms-txn-pending,.wp-list-table .llms-status.llms-txn-refunded{color:#664200;background-color:orange}#lifterlms-order-transactions .llms-table tfoot th{text-align:left}.llms-post-table-post-filter{display:inline-block;margin-left:6px;max-width:100%;width:220px}.llms-nav-tab-wrapper{background:#466dd8;margin:20px 0}.llms-nav-tab-wrapper.llms-nav-secondary{background:#e1e1e1}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item{margin:0}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#cdcdcd}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{color:#414141;font-size:15px;padding:8px 14px}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons{font-size:15px;height:15px;width:15px}.llms-nav-tab-wrapper.llms-nav-text{background:inherit}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items{padding-right:0}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item{background:inherit;color:#646970}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after{display:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after{content:"|";display:inline-block;margin:0 6px 0 8px}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover{background:inherit;color:#466dd8}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link{background:inherit;color:#000;font-weight:600;text-decoration:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link{color:#466dd8;display:inline-block;letter-spacing:0;margin:0;padding:0;text-decoration:underline;text-transform:none}.llms-nav-tab-wrapper.llms-nav-style-tabs{background-color:#1c3987;margin:0;padding-top:8px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item{margin:0 3px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link{border-top-right-radius:4px;border-top-left-radius:4px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link{background-color:#fff;color:#466dd8;font-weight:700}.llms-nav-tab-wrapper.llms-nav-style-filters{background-color:#466dd8;border-radius:12px;margin:20px 0;overflow:hidden;padding:0}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:0}@media only screen and (min-width: 782px){.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item{float:none}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link{padding:14px}.llms-nav-tab-wrapper .llms-nav-items{margin:0;padding-right:10px}.llms-nav-tab-wrapper .llms-nav-items:before,.llms-nav-tab-wrapper .llms-nav-items:after{content:" ";display:table}.llms-nav-tab-wrapper .llms-nav-items:after{clear:both}.llms-nav-tab-wrapper .llms-nav-item{margin:0}.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover{background:#466dd8}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{background:#1c3987}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{font-weight:400}@media only screen and (min-width: 768px){.llms-nav-tab-wrapper .llms-nav-item{float:right}.llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right{float:left}}.llms-nav-tab-wrapper .llms-nav-link{color:#fff;cursor:pointer;display:block;font-weight:400;font-size:15px;padding:9px 18px;text-align:center;text-decoration:none;-webkit-transition:all .3s ease;transition:all .3s ease}#llms-options-page-contents h2{color:#999;font-weight:500;letter-spacing:2px;border-bottom:1px solid #999}.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0;padding:0}.llms-reporting.wrap .llms-stab-title{color:#1c3987;font-size:36px;font-weight:300;margin-bottom:20px}.llms-reporting.wrap td.id a{text-decoration:none}.llms-reporting.wrap th.id,.llms-reporting.wrap td.id,.llms-reporting.wrap th.name,.llms-reporting.wrap td.name,.llms-reporting.wrap th.registered,.llms-reporting.wrap td.registered,.llms-reporting.wrap th.last_seen,.llms-reporting.wrap td.last_seen,.llms-reporting.wrap th.overall_progress,.llms-reporting.wrap td.overall_progress,.llms-reporting.wrap th.title,.llms-reporting.wrap td.title,.llms-reporting.wrap th.course,.llms-reporting.wrap td.course,.llms-reporting.wrap th.lesson,.llms-reporting.wrap td.lesson{text-align:right}.llms-reporting.wrap td.section-title{background:#eaeaea;text-align:right;font-weight:700;padding:16px 4px}.llms-reporting.wrap td.questions-table{text-align:right}.llms-reporting.wrap td.questions-table .correct,.llms-reporting.wrap td.questions-table .question,.llms-reporting.wrap td.questions-table .selected{text-align:right;max-width:300px}.llms-reporting.wrap td.questions-table .correct img,.llms-reporting.wrap td.questions-table .question img,.llms-reporting.wrap td.questions-table .selected img{height:auto;max-width:64px}.llms-reporting.wrap table.quiz-attempts{margin-bottom:40px}.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary{background:#e1e1e1;border-radius:8px;-webkit-box-shadow:none;box-shadow:none;color:#414141;font-size:13px;font-weight:700;height:auto;padding:8px 14px}.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary,.llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary{margin-bottom:0}.llms-reporting.wrap.tab--enrollments .llms-options-page-contents,.llms-reporting.wrap.tab--sales .llms-options-page-contents{-webkit-box-shadow:none;box-shadow:none;background:none;margin-top:20px;padding:0}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;gap:5px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label{font-weight:700}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input{border:0;font-size:13px;margin:0;padding:0 4px;vertical-align:middle;width:110px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input{width:100% !important}.llms-reporting.wrap.tab--enrollments .button.small,.llms-reporting.wrap.tab--sales .button.small{height:23px;line-height:23px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters,.llms-reporting.wrap.tab--sales .llms-analytics-filters{display:none}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap{background-color:#fff;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:-20px 10px 20px 10px;padding:20px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}@media only screen and (min-width: 782px){.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label{display:block;font-weight:700;margin:0 0 5px 0}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered{word-wrap:break-word;text-overflow:inherit;white-space:normal}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p,.llms-reporting.wrap.tab--sales .llms-analytics-filters p{margin:0;text-align:left}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary,.llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary{display:inline-block}.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap{width:160px}.llms-charts-wrapper{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);padding:20px}.llms-reporting-tab h1,.llms-reporting-tab h2,.llms-reporting-tab h3,.llms-reporting-tab h4,.llms-reporting-tab h5,.llms-reporting-tab h6{margin:0}.llms-reporting-tab h1 a,.llms-reporting-tab h2 a,.llms-reporting-tab h3 a,.llms-reporting-tab h4 a,.llms-reporting-tab h5 a,.llms-reporting-tab h6 a{color:#466dd8;text-decoration:none}.llms-reporting-tab h1 a:hover,.llms-reporting-tab h2 a:hover,.llms-reporting-tab h3 a:hover,.llms-reporting-tab h4 a:hover,.llms-reporting-tab h5 a:hover,.llms-reporting-tab h6 a:hover{color:#466dd8}.llms-reporting-tab h2{font-size:22px;line-height:1.5}.llms-reporting-tab h2.llms-table-title{margin-bottom:20px}.llms-reporting-tab h5{font-size:15px;line-height:1.5}.llms-reporting-tab .llms-reporting-body{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header{margin:0}.llms-reporting-tab .llms-reporting-body .llms-gb-tab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-header{padding:30px;margin:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img{border-radius:50%;display:inline-block;margin-left:10px;overflow:hidden;vertical-align:middle}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img{display:block;max-height:64px;width:auto}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info{display:inline-block;vertical-align:middle}.llms-reporting-breadcrumbs{margin:0;padding:0}.llms-reporting-breadcrumbs a{color:#466dd8;font-size:15px;text-decoration:none}.llms-reporting-breadcrumbs a:hover{color:#2b55cb}.llms-reporting-breadcrumbs a:after{content:" > ";color:#646970}.llms-reporting-breadcrumbs a:last-child{color:#000;font-weight:700}.llms-reporting-breadcrumbs a:last-child:after{display:none}#llms-students-table .name{text-align:right}.llms-reporting-tab-content{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-reporting-tab-content>header:before,.llms-reporting-tab-content>header:after{content:" ";display:table}.llms-reporting-tab-content>header:after{clear:both}.llms-reporting-tab-content h3{margin-bottom:20px}.llms-reporting-tab-content .llms-reporting-tab-filter{float:left;position:relative;margin-left:.75em;width:180px;top:-3px}.llms-reporting-tab-content .llms-reporting-tab-main{-webkit-box-flex:3;-ms-flex:3;flex:3;max-width:75%}.llms-reporting-tab-content .llms-reporting-tab-side{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:20px}.llms-reporting-tab-content>.llms-table-wrap{-webkit-box-flex:1;-ms-flex:1;flex:1}.llms-reporting-widgets:before,.llms-reporting-widgets:after{content:" ";display:table}.llms-reporting-widgets:after{clear:both}.llms-reporting-widget{border-top:4px solid #466dd8;background:#fafafa;margin-bottom:10px;padding:30px}.llms-reporting-widget:before,.llms-reporting-widget:after{content:" ";display:table}.llms-reporting-widget:after{clear:both}.llms-reporting-widget .fa{color:#999;float:right;font-size:32px;margin-left:10px}.llms-reporting-widget strong{color:#333;font-size:20px;line-height:1.2}.llms-reporting-widget.llms-reporting-student-address strong{line-height:1.1}.llms-reporting-widget sup,.llms-reporting-widget .llms-price-currency-symbol{font-size:75%;position:relative;top:-4px;vertical-align:baseline}.llms-reporting-widget small{font-size:13px}.llms-reporting-widget small.compare{margin-right:5px}.llms-reporting-widget small.compare.positive{color:#83c373}.llms-reporting-widget small.compare.negative{color:#e5554e}.llms-reporting-event{border-right:4px solid #555;background:#fafafa;font-size:11px;line-height:1.2;margin-bottom:.75em;padding:10px}.llms-reporting-event:before,.llms-reporting-event:after{content:" ";display:table}.llms-reporting-event:after{clear:both}.llms-reporting-event.color--blue{border-right-color:#466dd8}.llms-reporting-event.color--green,.llms-reporting-event._enrollment_trigger,.llms-reporting-event._is_complete.yes{border-right-color:#83c373}.llms-reporting-event.color--purple,.llms-reporting-event._status.enrolled{border-right-color:#845ef7}.llms-reporting-event.color--red,.llms-reporting-event._status.expired,.llms-reporting-event._status.cancelled{border-right-color:#e5554e}.llms-reporting-event.color--orange,.llms-reporting-event._achievement_earned,.llms-reporting-event._certificate_earned,.llms-reporting-event._email_sent{border-right-color:#ff922b}.llms-reporting-event time{color:#888}.llms-reporting-event .llms-student-avatar{margin-right:10px;float:left}.llms-reporting-event a{text-decoration:none;color:inherit}@media only screen and (min-width: 782px){.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{margin-right:0;margin-left:0}}.llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 10px 10px 35px;text-decoration:none}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:right;margin:0;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:left;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;left:-12px;top:-2px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 30px 0 0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-right:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.wrap.llms-reporting .llms-inside-wrap,.wrap.lifterlms-settings .llms-inside-wrap,.wrap.llms-status .llms-inside-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 auto}.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,.wrap.llms-status .llms-inside-wrap .llms-nav-text{margin:0 auto}.wrap.llms-reporting .llms-subheader .llms-save,.wrap.lifterlms-settings .llms-subheader .llms-save,.wrap.llms-status .llms-subheader .llms-save{-webkit-box-flex:1;-ms-flex:auto;flex:auto;text-align:left}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0 -10px 20px -20px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:0}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover{background:#f0f0f1;color:#222}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fafafa;color:#466dd8;border-top-color:#466dd8}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{font-weight:700}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{border-top:2px solid rgba(0,0,0,0);padding:14px}.wrap.llms-reporting .llms-setting-group,.wrap.lifterlms-settings .llms-setting-group,.wrap.llms-status .llms-setting-group{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:20px}.wrap.llms-reporting .llms-setting-group .llms-label,.wrap.lifterlms-settings .llms-setting-group .llms-label,.wrap.llms-status .llms-setting-group .llms-label{border-bottom:1px solid #efefef;font-weight:700;font-size:20px;padding:20px;margin:-20px -20px 20px}.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary{margin-right:10px}.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons{color:#444;cursor:help}.wrap.llms-reporting .llms-setting-group .form-table,.wrap.lifterlms-settings .llms-setting-group .form-table,.wrap.llms-status .llms-setting-group .form-table{margin:0}.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle{margin-top:0}.wrap.llms-reporting .llms-setting-group td[colspan="2"],.wrap.lifterlms-settings .llms-setting-group td[colspan="2"],.wrap.llms-status .llms-setting-group td[colspan="2"]{padding-top:0;padding-right:0}.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,.wrap.llms-status .llms-setting-group tr.llms-disabled-field{opacity:.5;pointer-events:none}.wrap.llms-reporting .llms-setting-group p,.wrap.lifterlms-settings .llms-setting-group p,.wrap.llms-status .llms-setting-group p{font-size:14px}.wrap.llms-reporting .llms-setting-group input[type=text],.wrap.llms-reporting .llms-setting-group input[type=password],.wrap.llms-reporting .llms-setting-group input[type=datetime],.wrap.llms-reporting .llms-setting-group input[type=datetime-local],.wrap.llms-reporting .llms-setting-group input[type=date],.wrap.llms-reporting .llms-setting-group input[type=month],.wrap.llms-reporting .llms-setting-group input[type=time],.wrap.llms-reporting .llms-setting-group input[type=week],.wrap.llms-reporting .llms-setting-group input[type=number],.wrap.llms-reporting .llms-setting-group input[type=email],.wrap.llms-reporting .llms-setting-group input[type=url],.wrap.llms-reporting .llms-setting-group input[type=search],.wrap.llms-reporting .llms-setting-group input[type=tel],.wrap.llms-reporting .llms-setting-group input[type=color],.wrap.llms-reporting .llms-setting-group select,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),.wrap.lifterlms-settings .llms-setting-group input[type=text],.wrap.lifterlms-settings .llms-setting-group input[type=password],.wrap.lifterlms-settings .llms-setting-group input[type=datetime],.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],.wrap.lifterlms-settings .llms-setting-group input[type=date],.wrap.lifterlms-settings .llms-setting-group input[type=month],.wrap.lifterlms-settings .llms-setting-group input[type=time],.wrap.lifterlms-settings .llms-setting-group input[type=week],.wrap.lifterlms-settings .llms-setting-group input[type=number],.wrap.lifterlms-settings .llms-setting-group input[type=email],.wrap.lifterlms-settings .llms-setting-group input[type=url],.wrap.lifterlms-settings .llms-setting-group input[type=search],.wrap.lifterlms-settings .llms-setting-group input[type=tel],.wrap.lifterlms-settings .llms-setting-group input[type=color],.wrap.lifterlms-settings .llms-setting-group select,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),.wrap.llms-status .llms-setting-group input[type=text],.wrap.llms-status .llms-setting-group input[type=password],.wrap.llms-status .llms-setting-group input[type=datetime],.wrap.llms-status .llms-setting-group input[type=datetime-local],.wrap.llms-status .llms-setting-group input[type=date],.wrap.llms-status .llms-setting-group input[type=month],.wrap.llms-status .llms-setting-group input[type=time],.wrap.llms-status .llms-setting-group input[type=week],.wrap.llms-status .llms-setting-group input[type=number],.wrap.llms-status .llms-setting-group input[type=email],.wrap.llms-status .llms-setting-group input[type=url],.wrap.llms-status .llms-setting-group input[type=search],.wrap.llms-status .llms-setting-group input[type=tel],.wrap.llms-status .llms-setting-group input[type=color],.wrap.llms-status .llms-setting-group select,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area){width:50%}.wrap.llms-reporting .llms-setting-group input[type=text].medium,.wrap.llms-reporting .llms-setting-group input[type=password].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,.wrap.llms-reporting .llms-setting-group input[type=date].medium,.wrap.llms-reporting .llms-setting-group input[type=month].medium,.wrap.llms-reporting .llms-setting-group input[type=time].medium,.wrap.llms-reporting .llms-setting-group input[type=week].medium,.wrap.llms-reporting .llms-setting-group input[type=number].medium,.wrap.llms-reporting .llms-setting-group input[type=email].medium,.wrap.llms-reporting .llms-setting-group input[type=url].medium,.wrap.llms-reporting .llms-setting-group input[type=search].medium,.wrap.llms-reporting .llms-setting-group input[type=tel].medium,.wrap.llms-reporting .llms-setting-group input[type=color].medium,.wrap.llms-reporting .llms-setting-group select.medium,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,.wrap.lifterlms-settings .llms-setting-group select.medium,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.llms-status .llms-setting-group input[type=text].medium,.wrap.llms-status .llms-setting-group input[type=password].medium,.wrap.llms-status .llms-setting-group input[type=datetime].medium,.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,.wrap.llms-status .llms-setting-group input[type=date].medium,.wrap.llms-status .llms-setting-group input[type=month].medium,.wrap.llms-status .llms-setting-group input[type=time].medium,.wrap.llms-status .llms-setting-group input[type=week].medium,.wrap.llms-status .llms-setting-group input[type=number].medium,.wrap.llms-status .llms-setting-group input[type=email].medium,.wrap.llms-status .llms-setting-group input[type=url].medium,.wrap.llms-status .llms-setting-group input[type=search].medium,.wrap.llms-status .llms-setting-group input[type=tel].medium,.wrap.llms-status .llms-setting-group input[type=color].medium,.wrap.llms-status .llms-setting-group select.medium,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium{width:30%}.wrap.llms-reporting .llms-setting-group input[type=text].small,.wrap.llms-reporting .llms-setting-group input[type=password].small,.wrap.llms-reporting .llms-setting-group input[type=datetime].small,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,.wrap.llms-reporting .llms-setting-group input[type=date].small,.wrap.llms-reporting .llms-setting-group input[type=month].small,.wrap.llms-reporting .llms-setting-group input[type=time].small,.wrap.llms-reporting .llms-setting-group input[type=week].small,.wrap.llms-reporting .llms-setting-group input[type=number].small,.wrap.llms-reporting .llms-setting-group input[type=email].small,.wrap.llms-reporting .llms-setting-group input[type=url].small,.wrap.llms-reporting .llms-setting-group input[type=search].small,.wrap.llms-reporting .llms-setting-group input[type=tel].small,.wrap.llms-reporting .llms-setting-group input[type=color].small,.wrap.llms-reporting .llms-setting-group select.small,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.lifterlms-settings .llms-setting-group input[type=text].small,.wrap.lifterlms-settings .llms-setting-group input[type=password].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,.wrap.lifterlms-settings .llms-setting-group input[type=date].small,.wrap.lifterlms-settings .llms-setting-group input[type=month].small,.wrap.lifterlms-settings .llms-setting-group input[type=time].small,.wrap.lifterlms-settings .llms-setting-group input[type=week].small,.wrap.lifterlms-settings .llms-setting-group input[type=number].small,.wrap.lifterlms-settings .llms-setting-group input[type=email].small,.wrap.lifterlms-settings .llms-setting-group input[type=url].small,.wrap.lifterlms-settings .llms-setting-group input[type=search].small,.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,.wrap.lifterlms-settings .llms-setting-group input[type=color].small,.wrap.lifterlms-settings .llms-setting-group select.small,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.llms-status .llms-setting-group input[type=text].small,.wrap.llms-status .llms-setting-group input[type=password].small,.wrap.llms-status .llms-setting-group input[type=datetime].small,.wrap.llms-status .llms-setting-group input[type=datetime-local].small,.wrap.llms-status .llms-setting-group input[type=date].small,.wrap.llms-status .llms-setting-group input[type=month].small,.wrap.llms-status .llms-setting-group input[type=time].small,.wrap.llms-status .llms-setting-group input[type=week].small,.wrap.llms-status .llms-setting-group input[type=number].small,.wrap.llms-status .llms-setting-group input[type=email].small,.wrap.llms-status .llms-setting-group input[type=url].small,.wrap.llms-status .llms-setting-group input[type=search].small,.wrap.llms-status .llms-setting-group input[type=tel].small,.wrap.llms-status .llms-setting-group input[type=color].small,.wrap.llms-status .llms-setting-group select.small,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small{width:20%}.wrap.llms-reporting .llms-setting-group input[type=text].tiny,.wrap.llms-reporting .llms-setting-group input[type=password].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-reporting .llms-setting-group input[type=date].tiny,.wrap.llms-reporting .llms-setting-group input[type=month].tiny,.wrap.llms-reporting .llms-setting-group input[type=time].tiny,.wrap.llms-reporting .llms-setting-group input[type=week].tiny,.wrap.llms-reporting .llms-setting-group input[type=number].tiny,.wrap.llms-reporting .llms-setting-group input[type=email].tiny,.wrap.llms-reporting .llms-setting-group input[type=url].tiny,.wrap.llms-reporting .llms-setting-group input[type=search].tiny,.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,.wrap.llms-reporting .llms-setting-group input[type=color].tiny,.wrap.llms-reporting .llms-setting-group select.tiny,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,.wrap.lifterlms-settings .llms-setting-group select.tiny,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.llms-status .llms-setting-group input[type=text].tiny,.wrap.llms-status .llms-setting-group input[type=password].tiny,.wrap.llms-status .llms-setting-group input[type=datetime].tiny,.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-status .llms-setting-group input[type=date].tiny,.wrap.llms-status .llms-setting-group input[type=month].tiny,.wrap.llms-status .llms-setting-group input[type=time].tiny,.wrap.llms-status .llms-setting-group input[type=week].tiny,.wrap.llms-status .llms-setting-group input[type=number].tiny,.wrap.llms-status .llms-setting-group input[type=email].tiny,.wrap.llms-status .llms-setting-group input[type=url].tiny,.wrap.llms-status .llms-setting-group input[type=search].tiny,.wrap.llms-status .llms-setting-group input[type=tel].tiny,.wrap.llms-status .llms-setting-group input[type=color].tiny,.wrap.llms-status .llms-setting-group select.tiny,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny{width:10%}@media only screen and (min-width: 782px){.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fff}}.wrap.llms-reporting #llms-mailhawk-connect,.wrap.lifterlms-settings #llms-mailhawk-connect,.wrap.llms-status #llms-mailhawk-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-mailhawk-connect .dashicons,.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,.wrap.llms-status #llms-mailhawk-connect .dashicons{margin:-4px 0 0 4px;vertical-align:middle}.wrap.llms-reporting #llms-sendwp-connect,.wrap.lifterlms-settings #llms-sendwp-connect,.wrap.llms-status #llms-sendwp-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-sendwp-connect .fa,.wrap.lifterlms-settings #llms-sendwp-connect .fa,.wrap.llms-status #llms-sendwp-connect .fa{margin-left:4px}@media only screen and (min-width: 782px){.wrap.lifterlms-settings .llms-subheader{height:40px;position:sticky;top:32px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -22px 20px -20px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:10px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -22px 20px -20px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:10px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -22px 20px -20px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:10px}}.wrap.llms-dashboard .llms-inside-wrap{padding-top:30px}.wrap.llms-dashboard #poststuff h2{padding:12px 20px}.wrap.llms-dashboard .llms-dashboard-activity h2{font-size:20px;font-weight:700;line-height:1.5;margin-top:0;text-align:center}.wrap.llms-dashboard .postbox{background-color:#fff;border:none;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}.wrap.llms-dashboard .postbox .postbox-header{border-bottom-color:#efefef}.wrap.llms-dashboard .postbox .inside{padding:20px}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p{text-align:right}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions{padding-top:0}.wrap.llms-dashboard #llms_dashboard_addons p{text-align:center}.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary{display:inline-block;margin-top:15px}.wrap.llms-dashboard #llms_dashboard_quick_links ul{list-style:disc;margin:5px 20px 0 0}.wrap.llms-dashboard #llms_dashboard_quick_links ul li{font-size:15px;line-height:1.5}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{display:grid;grid-template-columns:1fr;grid-gap:30px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a{display:inline-block}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3{margin:0 0 10px 0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul{margin-bottom:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist{list-style:none;margin-right:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa{text-align:center;width:16px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check{color:#008a20}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times{color:#d63638}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action{display:block;text-align:center}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{grid-template-columns:1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3{margin:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons{color:#aaa}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{grid-template-columns:1fr 1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_blog ul,.wrap.llms-dashboard #llms_dashboard_podcast ul{margin:0}.wrap.llms-dashboard #llms_dashboard_blog ul li,.wrap.llms-dashboard #llms_dashboard_podcast ul li{margin:0 0 15px 0}.wrap.llms-dashboard #llms_dashboard_blog ul li a,.wrap.llms-dashboard #llms_dashboard_podcast ul li a{display:block}.wrap.llms-dashboard #llms_dashboard_blog p,.wrap.llms-dashboard #llms_dashboard_podcast p{margin:15px 0;text-align:center}.wrap.llms-dashboard #llms_dashboard_blog p a,.wrap.llms-dashboard #llms_dashboard_podcast p a{display:inline-block}#llms_dashboard_widget .inside{margin:0;padding-bottom:8px}#llms_dashboard_widget .llms-dashboard-widget-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:12px}#llms_dashboard_widget .activity-block{padding-bottom:8px;border-color:#e8e8e8}#llms_dashboard_widget h3{margin-bottom:0}#llms_dashboard_widget .llms-charts-wrapper{display:none}#llms_dashboard_widget .llms-widget-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:8px;width:100%;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding:4px 0}#llms_dashboard_widget .llms-widget-row:before,#llms_dashboard_widget .llms-widget-row:after{display:none}#llms_dashboard_widget .llms-widget-1-4{padding:0;-webkit-box-flex:1;-ms-flex:1;flex:1}#llms_dashboard_widget .llms-widget{padding:8px 8px 12px;margin:0;border-radius:6px;border:1px solid #e8e8e8;-webkit-box-shadow:0px 2px 4px #f6f7f7;box-shadow:0px 2px 4px #f6f7f7;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}#llms_dashboard_widget .llms-label{font-size:14px;width:100%;-ms-flex-item-align:start;align-self:flex-start;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#llms_dashboard_widget .llms-widget-content{font-size:20px;margin:0}#llms_dashboard_widget .llms-widget-info-toggle{display:none}#llms_dashboard_widget a{border:0}#llms_dashboard_widget .subsubsub{color:#dcdcde}.llms-dashboard-widget-feed{margin:0 -12px;padding:0;background-color:#f6f7f7}.llms-dashboard-widget-feed li{margin:0;padding:8px 12px;border-bottom:1px solid #e8e8e8}.llms-dashboard-widget-feed span{display:block}.llms-remarks .llms-remarks-field{height:120px;width:100%}.llms-remarks input[type=number]{width:60px}button[name=llms_quiz_attempt_action] .save{display:none}button[name=llms_quiz_attempt_action].grading .default{display:none}button[name=llms_quiz_attempt_action].grading .save{display:inline}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:right;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:left}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-left:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-left:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:100% 0;background-image:radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 5px 5px 0}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-right:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";right:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}/*! +#poststuff .llms-metabox:before,#poststuff .llms-metabox:after,.llms-form-fields:before,.llms-metabox .llms-access-plans:before,.llms-collapsible .llms-collapsible-body:before,.llms-collapsible .llms-collapsible-header:before,.llms-collapsible:before,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{content:" ";display:table}#poststuff .llms-metabox:after,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{clear:both}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{right:-7px;position:relative}.llms-button-primary{background:#466dd8}.llms-button-primary:hover,.llms-button-primary.clicked{background:#2b55cb}.llms-button-primary:focus,.llms-button-primary:active{background:#6888df}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}#adminmenu .toplevel_page_lifterlms .wp-menu-image img{padding-top:6px;width:20px}#adminmenu .toplevel_page_lifterlms a[href*="page=llms-add-ons"],#adminmenu .opensub .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a[href*="page=llms-add-ons"]{color:#ff922b}.last-col{float:left;padding-left:0 !important}.last-col:after{clear:both}@media(max-width: 767px){.m-all{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-left:0}.m-1of2{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.m-1of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.m-2of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.m-1of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.m-3of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.m-right{text-align:center}.m-center{text-align:center}.m-left{text-align:center}.d-right{text-align:left}.d-center{text-align:center}.d-left{text-align:right}}@media(min-width: 768px)and (max-width: 1029px){.t-all{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-left:0}.t-1of2{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.t-1of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.t-2of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.t-1of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.t-3of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.t-1of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.t-2of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.t-3of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.t-4of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-right{text-align:left}.d-center{text-align:center}.d-left{text-align:right}}@media(min-width: 1030px){.d-all{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-left:0}.d-1of2{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.d-1of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.d-2of3{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.d-1of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.d-3of4{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.d-1of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.d-2of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.d-3of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.d-4of5{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-1of6{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:16.6666666667%}.d-1of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:14.2857142857%}.d-2of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:28.5714286%}.d-3of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:42.8571429%}.d-4of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:57.1428572%}.d-5of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:71.4285715%}.d-6of7{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:85.7142857%}.d-1of8{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:12.5%}.d-1of9{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:11.1111111111%}.d-1of10{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:10%}.d-1of11{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:9.0909090909%}.d-1of12{float:right;padding-left:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:8.33%}.d-right{text-align:left}.d-center{text-align:center}.d-left{text-align:right}}#llms-form-wrapper .llms-search-form-wrapper{border-bottom:1px solid #999;margin:20px 0}#llms-form-wrapper #llms_analytics_search{border:none !important;text-shadow:none !important;border:none !important;outline:none !important;-webkit-box-shadow:none !important;box-shadow:none !important;margin:0 !important;color:#fefefe !important;background:#466dd8 !important;border-radius:0;-webkit-transition:.5s;transition:.5s}#llms-form-wrapper #llms_analytics_search:hover{background:#0185a3 !important}#llms-form-wrapper #llms_analytics_search:active{background:#33b1cb !important}#llms-skip-setup-form .llms-admin-link{background:none !important;border:none;padding:0 !important;color:#0074a2;cursor:pointer}#llms-skip-setup-form .llms-admin-link:hover{color:#2ea2cc}#llms-skip-setup-form .llms-admin-link:focus{color:#124964}.llms-switch{position:relative}.llms-switch .llms-toggle{position:absolute;margin-right:-9999px;visibility:hidden}.llms-switch .llms-toggle+label{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;position:relative;cursor:pointer;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.llms-switch input.llms-toggle-round+label{border:2px solid #6c7781;border-radius:10px;height:20px;width:36px}.llms-switch input.llms-toggle-round+label:before,.llms-switch input.llms-toggle-round+label:after{-webkit-box-sizing:border-box;box-sizing:border-box;content:"";display:block;position:absolute;-webkit-transition:background .4s;transition:background .4s}.llms-switch input.llms-toggle-round:checked+label{border-color:#11a0d2;background-color:#11a0d2}.llms-switch input.llms-toggle-round+label:after{height:12px;right:2px;top:2px;background-color:#6c7781;border-radius:50%;-webkit-transition:margin .4s;transition:margin .4s;width:12px;z-index:3}.llms-switch input.llms-toggle-round:checked+label:after{background-color:#fefefe;margin-right:16px}.llms-switch input.llms-toggle-round+label:before{height:8px;top:4px;border:1px solid #6c7781;border-radius:50%;left:4px;width:8px;z-index:2}.llms-switch input.llms-toggle-round:checked+label:before{border-color:#fefefe;border-radius:0;right:6px;left:auto;width:2px}#llms-profile-fields{margin:50px 0}#llms-profile-fields .llms-form-field{padding-right:0}#llms-profile-fields label{display:block;font-weight:bold;padding:8px 0 2px}#llms-profile-fields .type-checkbox .type-checkbox label{display:initial;font-weight:initial;padding:0}#llms-profile-fields .type-checkbox .type-checkbox input{display:inline-block;margin-bottom:0;width:1rem}#llms-profile-fields select{max-width:100%}a.llms-voucher-delete{background:#e5554e;color:#fefefe;display:block;padding:4px 2px;text-decoration:none;-webkit-transition:ease .3s all;transition:ease .3s all}a.llms-voucher-delete:hover{background:#af3a26}.llms-voucher-codes-wrapper table,.llms-voucher-redemption-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td,.llms-voucher-redemption-wrapper table th,.llms-voucher-redemption-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead,.llms-voucher-redemption-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table thead th,.llms-voucher-redemption-wrapper table thead th{padding:10px 10px}.llms-voucher-codes-wrapper table tr,.llms-voucher-redemption-wrapper table tr{counter-increment:row-counter}.llms-voucher-codes-wrapper table tr:nth-child(even),.llms-voucher-redemption-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td,.llms-voucher-redemption-wrapper table tr td{padding:5px}.llms-voucher-codes-wrapper table tr td:first-child:before,.llms-voucher-redemption-wrapper table tr td:first-child:before{content:counter(row-counter)}.llms-voucher-codes-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td span{display:inline-block;min-width:30px}.llms-voucher-codes-wrapper button{cursor:pointer}.llms-voucher-codes-wrapper .llms-voucher-delete{float:left;margin-left:15px}.llms-voucher-codes-wrapper .llms-voucher-uses{width:50px}.llms-voucher-codes-wrapper .llms-voucher-add-codes{float:left}.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text]{width:30px}.llms-voucher-export-wrapper .llms-voucher-export-type{width:100%}.llms-voucher-export-wrapper .llms-voucher-export-type p{margin:0 15px 0 0}.llms-voucher-export-wrapper .llms-voucher-email-wrapper{width:100%;margin:25px 0}.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text]{width:100%}.llms-voucher-export-wrapper .llms-voucher-email-wrapper p{margin:0}.llms-voucher-export-wrapper>button{float:left}.postbox .inside{overflow:auto}.llms-widget{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:20px;padding:20px;position:relative;width:100%}.llms-widget.alt{border:1px solid #ccc;background-color:#efefef;margin-bottom:10px}.llms-widget.alt .llms-label{color:#777;font-size:14px;margin-bottom:10px;padding-bottom:5px}.llms-widget.alt h2{color:#444;font-weight:300}.llms-widget a{border-bottom:1px dotted #466dd8;display:inline-block;text-decoration:none}.llms-widget a:hover{border-bottom:1px dotted #2b55cb}.llms-widget .llms-widget-content{margin:.67em 0;color:#466dd8;font-size:2.4em;font-weight:700;line-height:1;word-break:break-all}.llms-widget h2{font-size:1.8em}.llms-widget .llms-label{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:18px;font-weight:400;margin:0 0 10px 0;text-align:center}.llms-widget .llms-chart{width:100%;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-widget mark.yes{background-color:#7ad03a}.llms-widget .llms-subtitle{margin-bottom:0}.llms-widget .spinner{float:none;right:50%;margin:-10px -10px 0 0;position:absolute;top:50%;z-index:2}.llms-widget.is-loading:before{background:#fefefe;bottom:0;content:"";right:0;opacity:.9;position:absolute;left:0;top:0;z-index:1}.llms-widget.is-loading .spinner{visibility:visible}.llms-widget td[colspan="2"]{padding-right:0}.llms-widget tr.llms-disabled-field{opacity:.5;pointer-events:none}.llms-widget-1-3,.llms-widget-1-4,.llms-widget-1-5{text-align:center}.llms-widget .llms-widget-info-toggle{color:#aaa;cursor:pointer;font-size:16px;position:absolute;left:20px;top:20px}.llms-widget.info-showing .llms-widget-info{display:block}.llms-widget-info{background:#444;color:#fefefe;bottom:-50px;display:none;padding:15px;position:absolute;text-align:center;right:10px;left:15px;z-index:3}.llms-widget-info:before{content:"";border:12px solid rgba(0,0,0,0);border-bottom-color:#444;right:50%;margin-right:-12px;position:absolute;top:-24px}.llms-widget-info p{margin:0}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .no-padding{padding:0 !important}svg.icon{height:24px;width:24px;display:inline-block;fill:currentColor;vertical-align:baseline}button svg.icon{height:18px;width:18px;margin:4px 4px 0 -4px;-webkit-filter:drop-shadow(0 1px #eee);filter:drop-shadow(0 1px #eee);float:left}svg.icon.menu-icon{height:20px;width:20px;display:inline-block;fill:currentColor;vertical-align:text-bottom;margin-left:10px}svg.icon.tree-icon{height:13px;width:13px;vertical-align:middle}svg.icon.section-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon-attr{height:10px;width:10px;vertical-align:middle}svg.icon.list-icon{height:12px;width:12px;vertical-align:middle}svg.icon.list-icon.on{color:#466dd8}svg.icon.list-icon.off{color:#444}svg.icon.detail-icon{height:16px;width:16px;vertical-align:text-bottom;cursor:default}svg.icon.detail-icon.on{color:#466dd8}svg.icon.detail-icon.off{color:#ccc}svg.icon-ion-arrow-up{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}svg use{pointer-events:none}#side-sortables .tab-content{padding:0}.llms-mb-container .tab-content{display:none;background-color:#fff;padding:0 20px}.llms-mb-container .tab-content ul:not(.select2-selection__rendered){margin:0 0 15px 0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li{padding:20px 0;margin:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.select:not([class*=d-]){width:100%}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li:last-child{border:0;padding-bottom:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.top{border-bottom:0;padding-bottom:0}.llms-mb-container .tab-content .full-width{width:100%}.llms-mb-container .tab-content #wp-content-editor-tools{background:none}.llms-mb-container .tab-content.llms-active{display:inherit}.llms-mb-container .tab-content .no-border{border-bottom:0px}.topModal{display:none;position:relative;border:4px solid gray;background:#fff;z-index:1000001;padding:2px;max-width:500px;margin:34px auto 0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-color:#fff;border-radius:2px;border:1px solid #ddd}.topModalClose{float:left;cursor:pointer;margin-left:10px;margin-top:10px}.topModalContainer{display:none;overflow:auto;overflow-y:hidden;position:fixed;top:0 !important;left:0;bottom:0;right:0;-webkit-overflow-scrolling:touch;width:auto !important;margin-right:0 !important;background-color:rgba(0,0,0,0) !important;z-index:100002 !important}.topModalBackground{display:none;background:#000;position:fixed;height:100%;width:100%;top:0 !important;right:0;margin-right:0 !important;z-index:100002 !important;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:auto;overflow-y:hidden}body.modal-open{overflow:hidden}.llms-modal-header{border-top-left-radius:1px;border-top-right-radius:1px;background:#466dd8;color:#eee;padding:10px 15px;font-size:18px}#llms-icon-modal-close{width:16px;height:16px;fill:#fefefe}.llms-modal-content{padding:20px}.llms-modal-content h3{margin-top:0}.llms-modal-form h1{margin-top:0}.llms-modal-form input[type=text]{width:100%}.llms-modal-form textarea,.llms-modal-form input[type=text],.llms-modal-form input[type=password],.llms-modal-form input[type=file],.llms-modal-form input[type=datetime],.llms-modal-form input[type=datetime-local],.llms-modal-form input[type=date],.llms-modal-form input[type=month],.llms-modal-form input[type=time],.llms-modal-form input[type=week],.llms-modal-form input[type=number],.llms-modal-form input[type=email],.llms-modal-form input[type=url],.llms-modal-form input[type=search],.llms-modal-form input[type=tel],.llms-modal-form input[type=color]{padding:0 .4em 0 .4em;margin-bottom:2em;vertical-align:middle;border-radius:3px;min-width:50px;max-width:635px;width:100%;min-height:32px;background-color:#fff;border:1px solid #ccc;margin:0 0 24px 0;outline:none;-webkit-transition:border .3s ease-in-out 0s;transition:border .3s ease-in-out 0s}.llms-modal-form textarea:focus,.llms-modal-form input[type=text]:focus,.llms-modal-form input[type=password]:focus,.llms-modal-form input[type=file]:focus,.llms-modal-form input[type=datetime]:focus,.llms-modal-form input[type=datetime-local]:focus,.llms-modal-form input[type=date]:focus,.llms-modal-form input[type=month]:focus,.llms-modal-form input[type=time]:focus,.llms-modal-form input[type=week]:focus,.llms-modal-form input[type=number]:focus,.llms-modal-form input[type=email]:focus,.llms-modal-form input[type=url]:focus,.llms-modal-form input[type=search]:focus,.llms-modal-form input[type=tel]:focus,.llms-modal-form input[type=color]:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form textarea{padding:.4em !important;height:100px !important;border-radius:3px;vertical-align:middle;min-height:32px;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-modal-form textarea:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single{border-radius:3px;vertical-align:middle;min-height:32px;border:1px solid #ccc;width:100%;background:#fefefe !important;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff;line-height:32px;margin:0 0 24px 0}.llms-modal-form .chosen-container-single .chosen-single:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single div b{margin-top:4px}.llms-modal-form .chosen-search input[type=text]{border:1px solid #ccc}.llms-modal-form .chosen-search input[type=text]:focus{background-color:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-drop{margin-top:-28px}.llms-modal-form .llms-button-primary,.llms-modal-form .llms-button-secondary{padding:10px 10px;border-radius:0;-webkit-transition:.5s;transition:.5s;-webkit-box-shadow:0 1px 1px #ccc;box-shadow:0 1px 1px #ccc}.llms-modal-form .llms-button-primary.full,.llms-modal-form .llms-button-secondary.full{width:100%}.modal-open .select2-dropdown{z-index:1000005}.button.llms-merge-code-button{vertical-align:middle}.button.llms-merge-code-button svg{margin-left:2px;position:relative;top:4px;width:16px}.button.llms-merge-code-button svg g{fill:currentColor}.llms-mb-container .llms-merge-code-wrapper{float:left;top:-5px}.llms-merge-code-wrapper{display:inline;position:relative}.llms-merge-codes{background:#f7f7f7;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;display:none;right:1px;overflow:hidden;position:absolute;top:30px;width:200px}.llms-merge-codes ul{margin:0;padding:0}.llms-merge-codes li{cursor:pointer;margin:0;padding:4px 8px !important;border-bottom:1px solid #ccc}.llms-merge-codes li:hover{color:#23282d;background:#fefefe}.llms-merge-codes.active{display:block;z-index:777}.llms-nav-tab,.llms-nav-tab-filters{display:block;width:100%}form.llms-nav-tab-filters.full-width{width:100%}form.llms-nav-tab-filters.full-width label{display:inline-block;width:10%;text-align:right}form.llms-nav-tab-filters.full-width .select2-container{width:85% !important}.llms-nav-tab-settings{display:block;width:100%}#llms-form-wrapper .llms-select{width:100%;margin-bottom:20px}#llms-form-wrapper .llms-checkbox{display:inline-block;width:100%;text-align:right}#llms-form-wrapper .llms-filter-options{width:100%}#llms-form-wrapper .llms-date-select{width:100%;display:inline-block;margin-bottom:20px}#llms-form-wrapper .llms-date-select input[type=text]{width:100%}ul.tabs li{display:block}@media only screen and (min-width: 481px){#llms-form-wrapper .llms-checkbox{width:33%}}@media only screen and (min-width: 768px){ul.tabs li{display:inline-block}.llms-nav-tab{display:inline-block;width:33%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{width:50%;max-width:500px}#llms-form-wrapper .llms-filter-options{width:50%;max-width:500px}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-left:5%}.llms-widget input[type=text],.llms-widget input[type=password],.llms-widget input[type=datetime],.llms-widget input[type=datetime-local],.llms-widget input[type=date],.llms-widget input[type=month],.llms-widget input[type=time],.llms-widget input[type=week],.llms-widget input[type=number],.llms-widget input[type=email],.llms-widget input[type=url],.llms-widget input[type=search],.llms-widget input[type=tel],.llms-widget input[type=color],.llms-widget select,.llms-widget textarea{width:50%}.llms-widget input[type=text].medium,.llms-widget input[type=password].medium,.llms-widget input[type=datetime].medium,.llms-widget input[type=datetime-local].medium,.llms-widget input[type=date].medium,.llms-widget input[type=month].medium,.llms-widget input[type=time].medium,.llms-widget input[type=week].medium,.llms-widget input[type=number].medium,.llms-widget input[type=email].medium,.llms-widget input[type=url].medium,.llms-widget input[type=search].medium,.llms-widget input[type=tel].medium,.llms-widget input[type=color].medium,.llms-widget select.medium,.llms-widget textarea.medium{width:30%}.llms-widget input[type=text].small,.llms-widget input[type=password].small,.llms-widget input[type=datetime].small,.llms-widget input[type=datetime-local].small,.llms-widget input[type=date].small,.llms-widget input[type=month].small,.llms-widget input[type=time].small,.llms-widget input[type=week].small,.llms-widget input[type=number].small,.llms-widget input[type=email].small,.llms-widget input[type=url].small,.llms-widget input[type=search].small,.llms-widget input[type=tel].small,.llms-widget input[type=color].small,.llms-widget select.small,.llms-widget textarea.small{width:20%}.llms-widget input[type=text].tiny,.llms-widget input[type=password].tiny,.llms-widget input[type=datetime].tiny,.llms-widget input[type=datetime-local].tiny,.llms-widget input[type=date].tiny,.llms-widget input[type=month].tiny,.llms-widget input[type=time].tiny,.llms-widget input[type=week].tiny,.llms-widget input[type=number].tiny,.llms-widget input[type=email].tiny,.llms-widget input[type=url].tiny,.llms-widget input[type=search].tiny,.llms-widget input[type=tel].tiny,.llms-widget input[type=color].tiny,.llms-widget select.tiny,.llms-widget textarea.tiny{width:10%}}@media only screen and (min-width: 1030px){.llms-nav-tab{display:inline-block;width:33.333%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{display:inline-block;width:47.5%}#llms-form-wrapper .llms-select:first-child{margin-left:5%}#llms-form-wrapper .llms-filter-options{display:inline-block;width:47.5%}#llms-form-wrapper .llms-filter-options.date-filter{margin-left:5%}#llms-form-wrapper .llms-filter-options .llms-date-select{margin-bottom:0}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-left:5%}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .llms-widget-1-5{vertical-align:top;width:20%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-4{vertical-align:top;width:25%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-3{width:33.3%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-2{width:50%;float:right;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px;vertical-align:top}}@media only screen and (min-width: 1240px){.llms-nav-tab-filters,.llms-nav-tab-settings{float:right;width:12.5%}}.wrap.lifterlms{margin-top:0}.llms-header{background-color:#fff;margin:0 -20px 0 0;padding:20px 10px;position:relative;z-index:1}.llms-header .llms-inside-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 10px}.llms-header .lifterlms-logo{-webkit-box-flex:0;-ms-flex:0 0 190px;flex:0 0 190px;max-height:52px;margin-left:10px}.llms-header .llms-meta{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:1.5}.llms-header .llms-meta .llms-version{background-color:#1d2327;color:#fff;border-radius:999px;font-size:13px;font-weight:700;padding:6px 12px}.llms-header .llms-meta a{display:inline-block}.llms-header .llms-meta .llms-license{border-left:1px solid #ccc;font-weight:700;margin-left:12px;padding-left:12px}.llms-header .llms-meta .llms-license a{text-decoration:none}.llms-header .llms-meta .llms-license a:before{content:"";display:inline-block;font:400 16px/1 dashicons;right:0;padding-left:3px;position:relative;text-decoration:none;vertical-align:text-bottom}.llms-header .llms-meta .llms-license a.llms-license-none{color:#888}.llms-header .llms-meta .llms-license a.llms-license-none:before{content:""}.llms-header .llms-meta .llms-license a.llms-license-active{color:#008a20}.llms-header .llms-meta .llms-license a.llms-license-active:before{content:""}.llms-header .llms-meta .llms-support{font-weight:700}.llms-header .llms-meta .llms-support a{color:#1d2327;text-decoration:none}.llms-subheader{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-right:-20px;padding:10px 20px;width:100%;z-index:1}.llms-subheader h1{font-weight:700;padding:0}.llms-subheader h1 a{color:inherit;text-decoration:none}#post_course_difficulty{min-width:200px}#_video-embed,#_audio-embed{width:100%}.clear{clear:both;width:100%}hr{background-color:#ccc;border:none;height:1px;margin:30px 0;padding:0}.llms_certificate_default_image,.llms_certificate_image{width:300px}.llms_achievement_default_image,.llms_achievement_image{width:120px}div[id^=lifterlms-] .inside{overflow:visible}.notice.llms-admin-notice{background-color:#fff;border:1px solid #ccd0d4;-webkit-box-shadow:0 1px 4px rgba(0,0,0,.15);box-shadow:0 1px 4px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 !important;position:relative}.notice.llms-admin-notice .notice-dismiss{text-decoration:none}.notice.llms-admin-notice.notice-warning{border-right:4px solid #f8954f}.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon{background-color:#fef4ed}.notice.llms-admin-notice.notice-info{border-right:4px solid #466dd8}.notice.llms-admin-notice.notice-info h3{color:#466dd8}.notice.llms-admin-notice.notice-info .llms-admin-notice-icon{background-color:#edf0fb}.notice.llms-admin-notice.notice-success{border-right:4px solid #18a957}.notice.llms-admin-notice.notice-success h3{color:#18a957}.notice.llms-admin-notice.notice-success .llms-admin-notice-icon{background-color:#e8f6ee}.notice.llms-admin-notice.notice-error{border-right:4px solid #df1642}.notice.llms-admin-notice.notice-error h3{color:#9c0f2e}.notice.llms-admin-notice.notice-error .llms-admin-notice-icon{background-color:#fce8ec}.notice.llms-admin-notice .llms-admin-notice-icon{background-image:url(../../assets/images/lifterlms-icon-color.png);background-position:center center;background-repeat:no-repeat;background-size:30px;min-width:70px}.notice.llms-admin-notice .llms-admin-notice-content{color:#111;padding:20px}.notice.llms-admin-notice h3{font-size:18px;font-weight:700;line-height:25px;margin:0 0 15px 0}.notice.llms-admin-notice button,.notice.llms-admin-notice .llms-button-primary{display:inline-block}.notice.llms-admin-notice p{font-size:14px;line-height:22px;margin:0 0 15px 0;max-width:65em;padding:0}.notice.llms-admin-notice p:last-of-type{margin-bottom:0}.llms-button-action.small .dashicons,.llms-button-danger.small .dashicons,.llms-button-primary.small .dashicons,.llms-button-secondary.small .dashicons{font-size:13px;height:13px;width:13px}.llms-button-action:hover,.llms-button-danger:hover,.llms-button-primary:hover,.llms-button-secondary:hover{-webkit-box-shadow:none;box-shadow:none}a.llms-view-as{line-height:2;margin-left:8px}.llms-image-field-preview{max-height:80px;vertical-align:middle;width:auto}.llms-image-field-remove.hidden{display:none}.llms-log-viewer{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);margin:20px 0;padding:25px}.llms-log-viewer pre{font-family:monospace;margin:0;padding:0;white-space:pre-wrap}.llms-status--tools .llms-table{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.llms-status--tools .llms-table td,.llms-status--tools .llms-table th{padding:10px;vertical-align:top}.llms-status--tools .llms-table th{width:28%}.llms-status--tools .llms-table p{margin:0 0 10px}.llms-error{color:#e5554e;font-style:italic}.llms-rating-stars{color:#ffb900;text-decoration:none}@media screen and (max-width: 782px){.llms-header{top:46px}.llms-header .llms-inside-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px}.llms-header .llms-inside-wrap .lifterlms-logo{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:inherit;-ms-flex:inherit;flex:inherit;max-height:initial;max-width:200px}.llms-header .llms-inside-wrap .llms-meta{-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px}}.llms-table-wrap{position:relative}.llms-table-header{padding:0}.llms-table-header:before,.llms-table-header:after{content:" ";display:table}.llms-table-header:after{clear:both}.llms-table-header h2{font-size:20px;padding:0;display:inline-block;line-height:1.5;margin:0 0 20px 0;vertical-align:middle}.llms-table-header .llms-table-search,.llms-table-header .llms-table-filters{float:left;padding-right:10px}.llms-table-header .llms-table-search input{margin:0;padding:0 8px}.llms-table{border:1px solid #c3c4c7;border-collapse:collapse;width:100%}.llms-table a:not(.small){color:#466dd8}.llms-table a:not(.small):hover{color:#2b55cb}.llms-table td,.llms-table th{border-bottom:1px solid #c3c4c7;padding:10px 12px;text-align:center}.llms-table td.expandable.closed,.llms-table th.expandable.closed{display:none}.llms-table td .llms-button-primary,.llms-table td .llms-button-secondary,.llms-table td .llms-button-action,.llms-table td .llms-button-danger,.llms-table th .llms-button-primary,.llms-table th .llms-button-secondary,.llms-table th .llms-button-action,.llms-table th .llms-button-danger{display:inline-block}.llms-table tr.llms-quiz-pending td{font-weight:700}.llms-table thead th,.llms-table tfoot th{background-color:#fff;font-weight:700}.llms-table thead th a.llms-sortable,.llms-table tfoot th a.llms-sortable{padding-left:16px;position:relative;text-decoration:none;width:100%}.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc{opacity:1}.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc{opacity:0}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc{opacity:0}.llms-table thead th a.llms-sortable .dashicons,.llms-table tfoot th a.llms-sortable .dashicons{color:#444;font-size:16px;height:16px;opacity:0;position:absolute;width:16px}.llms-table tfoot th{border-bottom:none}.llms-table tfoot th .llms-table-export{float:right}.llms-table tfoot th .llms-table-export .llms-table-progress{background:#efefef;display:none;margin-right:8px;vertical-align:middle;width:100px}.llms-table tfoot th .llms-table-pagination{float:left}.llms-table.zebra tbody tr:nth-child(even) th,.llms-table.zebra tbody tr:nth-child(even) td{background-color:#fff}.llms-table.zebra tbody tr:nth-child(odd) th,.llms-table.zebra tbody tr:nth-child(odd) td{background-color:#f6f7f7}.llms-table.text-left td,.llms-table.text-left th{text-align:right}.llms-table.size-large td,.llms-table.size-large th{font-size:14px;padding:10px 12px}.llms-table .llms-drag-handle{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-table .llms-action-icon{color:#777;text-decoration:none}.llms-table .llms-action-icon .tooltip{cursor:pointer}.llms-table .llms-action-icon:hover{color:#466dd8}.llms-table .llms-action-icon.danger:hover{color:#e5554e}.llms-table .llms-table-page-count{font-size:12px;padding:0 5px}.llms-table-progress{text-align:center}.llms-table-progress .llms-table-progress-bar{background:#eee;border-radius:10px;height:16px;overflow:hidden;position:relative}.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner{background:#466dd8;height:100%;-webkit-transition:width .2s ease;transition:width .2s ease}.llms-table-progress .llms-table-progress-text{color:#466dd8;font-size:12px;font-weight:700;line-height:16px}.llms-table.llms-gateway-table .status .fa,.llms-table.llms-integrations-table .status .fa{color:#466dd8;font-size:22px}.llms-table.llms-gateway-table .sort,.llms-table.llms-integrations-table .sort{cursor:move;text-align:center;width:10px}.llms-gb-table-notifications th,.llms-gb-table-notifications td{text-align:right}.llms-order-note .llms-order-note-content{background:#efefef;margin-bottom:10px;padding:10px;position:relative}.llms-order-note .llms-order-note-content:after{border-style:solid;border-color:#efefef rgba(0,0,0,0);border-width:10px 0 0 10px;bottom:-10px;content:"";display:block;height:0;right:20px;position:absolute;width:0}.llms-order-note .llms-order-note-content p{font-size:13px;margin:0;line-height:1.5}.llms-order-note .llms-order-note-meta{color:#999;font-size:11px;margin-right:10px}.llms-mb-list label{font-size:15px;font-weight:700;line-height:1.5;display:block;width:100%}.llms-mb-list .description{margin-bottom:8px}.llms-mb-list .input-full{width:100%}#poststuff .llms-metabox h2,#poststuff .llms-metabox h3,#poststuff .llms-metabox h6{margin:0;padding:0}#poststuff .llms-metabox h2{font-size:18px;font-weight:700}#poststuff .llms-metabox h3{color:#777;font-size:16px}#poststuff .llms-metabox h4{border-bottom:1px solid #e5e5e5;padding:0;margin:0}#poststuff .llms-metabox .llms-transaction-test-mode{background:#ffffd7;font-style:italic;right:0;padding:2px;position:absolute;left:0;top:0;text-align:center}#poststuff .llms-metabox a.llms-editable,#poststuff .llms-metabox .llms-metabox-icon,#poststuff .llms-metabox button.llms-editable{color:#999;text-decoration:none}#poststuff .llms-metabox a.llms-editable:hover,#poststuff .llms-metabox .llms-metabox-icon:hover,#poststuff .llms-metabox button.llms-editable:hover{color:#466dd8}#poststuff .llms-metabox button.llms-editable{border:none;background:none;cursor:pointer;padding:0;vertical-align:top}#poststuff .llms-metabox h4 button.llms-editable{float:left}#poststuff .llms-metabox .llms-table{margin-top:10px}.llms-metabox-section{background:#fff;margin-top:25px;position:relative}.llms-metabox-section.no-top-margin{margin-top:0}.llms-metabox-section .llms-metabox-field{margin:15px 0;position:relative}.llms-metabox-section .llms-metabox-field label{color:#777;display:block;margin-bottom:5px;font-weight:500;vertical-align:baseline}.llms-metabox-section .llms-metabox-field select,.llms-metabox-section .llms-metabox-field textarea,.llms-metabox-section .llms-metabox-field input[type=text],.llms-metabox-section .llms-metabox-field input[type=number]{width:100%}.llms-metabox-section .llms-metabox-field input.md-text{width:105px}.llms-metabox-section .llms-metabox-field input.sm-text{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input{width:95px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field em{font-style:normal;padding:0 3px}.llms-collapsible{border:1px solid #e5e5e5;position:relative;margin-top:0;margin-bottom:-1px}.llms-collapsible:last-child{margin-bottom:0}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down{display:none}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header{padding:10px}.llms-collapsible .llms-collapsible-header h3{color:#777;margin:0;font-size:16px}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:none}.llms-collapsible .llms-collapsible-header a{text-decoration:none}.llms-collapsible .llms-collapsible-header .dashicons{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-collapsible .llms-collapsible-header .dashicons:hover{color:#466dd8}.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover{color:#e5554e}.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger:hover{color:#ff922b}.llms-collapsible .llms-collapsible-body{display:none;padding:10px}._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove{display:none}._llms_instructors_data.repeater .llms-mb-list{padding:0 5px !important}.post-type-llms_order #post-body-content{display:none}#lifterlms-order-details .handlediv,#lifterlms-order-details .handlediv.button-link,#lifterlms-order-details .postbox-header{display:none}#lifterlms-order-details .inside{padding:20px;margin-top:0}.llms-table tbody tr.llms-txn-failed td{background-color:rgba(229,85,78,.5);border-bottom-color:rgba(229,85,78,.5)}.llms-table tbody tr.llms-txn-refunded td{background-color:rgba(255,165,0,.5);border-bottom-color:rgba(255,165,0,.5)}.llms-txn-refund-form .llms-metabox-section,.llms-manual-txn-form .llms-metabox-section{margin-top:0}.llms-txn-refund-form .llms-metabox-field,.llms-manual-txn-form .llms-metabox-field{text-align:left}.llms-txn-refund-form .llms-metabox-field input[type=number],.llms-manual-txn-form .llms-metabox-field input[type=number]{max-width:100px}.llms-txn-refund-form .llms-metabox-field input[type=text],.llms-manual-txn-form .llms-metabox-field input[type=text]{max-width:340px}.llms-manual-txn-form{background-color:#eaeaea}.llms-manual-txn-form .llms-metabox-section{background-color:#eaeaea}#llms-remaining-edit{display:none}.llms-remaining-edit--content label,.llms-remaining-edit--content span,.llms-remaining-edit--content textarea{display:block}.llms-remaining-edit--content label{margin-bottom:20px}.llms-remaining-edit--content textarea,.llms-remaining-edit--content input{width:100%}.submitbox .llms-mb-section,.llms-award-engagement-submitbox .llms-mb-list{margin-bottom:12px}.submitbox .llms-mb-section:last-of-type,.llms-award-engagement-submitbox .llms-mb-list:last-of-type{margin-bottom:0}.sync-action:before,.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{font:normal 20px/1 dashicons;speak:never;display:inline-block;margin-right:-1px;padding-left:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px;color:#8c8f94}body:not(.admin-color-fresh) .sync-action:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{color:currentColor}.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{content:""}.sync-action:before{content:"";color:#fff}.submitbox .llms-mb-section.post_author_override label,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label{display:inline-block;width:auto}.llms-metabox #llms-new-access-plan-model{display:none}.llms-metabox .llms-access-plans{margin-top:10px}.llms-metabox .llms-access-plans>.llms-no-plans-msg{display:none}.llms-metabox .llms-access-plans>.llms-no-plans-msg:last-child{-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5;display:block;text-align:center;padding:10px}.llms-metabox .llms-access-plans.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-metabox .llms-access-plans .llms-spinning{z-index:1}.llms-metabox .llms-access-plans .llms-invalid{border-color:#e5554e}.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning{display:inline}.llms-metabox .llms-access-plans .llms-needs-attention .dashicons-warning.medium-danger{display:inline}.llms-metabox .llms-access-plans .dashicons-warning{display:none}.llms-metabox .llms-access-plan{text-align:right}.llms-metabox .llms-access-plan [data-tip]:before{text-align:center}.llms-metabox .llms-access-plan .llms-plan-link,.llms-metabox .llms-access-plan [data-controller]{display:none}.llms-metabox .llms-access-plan:hover .llms-plan-link,.llms-metabox .llms-access-plan.opened .llms-plan-link{display:inline-block}.llms-metabox .llms-access-plan .llms-metabox-field{margin:5px 0}.llms-metabox .llms-access-plan .llms-required{color:#e5554e;margin-right:3px}.llms-metabox .llms-access-plan .notice{margin-right:0}.llms-metabox-students .llms-table tr .name{text-align:right}.llms-metabox-students .llms-add-student:hover{color:#83c373}.llms-metabox-students .llms-remove-student:hover{color:#e5554e}.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields>li.llms-mb-list{border-bottom:none;padding:0 0 10px}.llms-mb-list.repeater .llms-repeater-rows{position:relative;margin-top:10px;min-height:10px}.llms-mb-list.repeater .llms-repeater-rows.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-mb-list.repeater .llms-repeater-row{background:#fff}.llms-mb-list.repeater .llms-mb-repeater-footer{text-align:left;margin-top:20px}.llms-mb-list.repeater .tmce-active .wp-editor-area{color:#32373c}.llms-builder-launcher p{margin-top:0}.llms-builder-launcher ol{margin-top:-6px}.llms-builder-launcher .llms-button-primary{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-list-table .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.wp-list-table .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.wp-list-table .llms-status.llms-active,.wp-list-table .llms-status.llms-completed,.wp-list-table .llms-status.llms-pass,.wp-list-table .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.wp-list-table .llms-status.llms-fail,.wp-list-table .llms-status.llms-failed,.wp-list-table .llms-status.llms-expired,.wp-list-table .llms-status.llms-cancelled,.wp-list-table .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.wp-list-table .llms-status.llms-incomplete,.wp-list-table .llms-status.llms-on-hold,.wp-list-table .llms-status.llms-pending,.wp-list-table .llms-status.llms-pending-cancel,.wp-list-table .llms-status.llms-refunded,.wp-list-table .llms-status.llms-txn-pending,.wp-list-table .llms-status.llms-txn-refunded{color:#664200;background-color:orange}#lifterlms-order-transactions .llms-table tfoot th{text-align:left}.llms-post-table-post-filter{display:inline-block;margin-left:6px;max-width:100%;width:220px}.llms-nav-tab-wrapper{background:#466dd8;margin:20px 0}.llms-nav-tab-wrapper.llms-nav-secondary{background:#e1e1e1}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item{margin:0}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#cdcdcd}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{color:#414141;font-size:15px;padding:8px 14px}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons{font-size:15px;height:15px;width:15px}.llms-nav-tab-wrapper.llms-nav-text{background:inherit}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items{padding-right:0}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item{background:inherit;color:#646970}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after{display:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after{content:"|";display:inline-block;margin:0 6px 0 8px}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover{background:inherit;color:#466dd8}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link{background:inherit;color:#000;font-weight:600;text-decoration:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link{color:#466dd8;display:inline-block;letter-spacing:0;margin:0;padding:0;text-decoration:underline;text-transform:none}.llms-nav-tab-wrapper.llms-nav-style-tabs{background-color:#1c3987;margin:0;padding-top:8px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item{margin:0 3px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link{border-top-right-radius:4px;border-top-left-radius:4px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link{background-color:#fff;color:#466dd8;font-weight:700}.llms-nav-tab-wrapper.llms-nav-style-filters{background-color:#466dd8;border-radius:12px;margin:20px 0;overflow:hidden;padding:0}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:0}@media only screen and (min-width: 782px){.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item{float:none}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link{padding:14px}.llms-nav-tab-wrapper .llms-nav-items{margin:0;padding-right:10px}.llms-nav-tab-wrapper .llms-nav-items:before,.llms-nav-tab-wrapper .llms-nav-items:after{content:" ";display:table}.llms-nav-tab-wrapper .llms-nav-items:after{clear:both}.llms-nav-tab-wrapper .llms-nav-item{margin:0}.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover{background:#466dd8}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{background:#1c3987}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{font-weight:400}@media only screen and (min-width: 768px){.llms-nav-tab-wrapper .llms-nav-item{float:right}.llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right{float:left}}.llms-nav-tab-wrapper .llms-nav-link{color:#fff;cursor:pointer;display:block;font-weight:400;font-size:15px;padding:9px 18px;text-align:center;text-decoration:none;-webkit-transition:all .3s ease;transition:all .3s ease}#llms-options-page-contents h2{color:#999;font-weight:500;letter-spacing:2px;border-bottom:1px solid #999}.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0;padding:0}.llms-reporting.wrap .llms-stab-title{color:#1c3987;font-size:36px;font-weight:300;margin-bottom:20px}.llms-reporting.wrap td.id a{text-decoration:none}.llms-reporting.wrap th.id,.llms-reporting.wrap td.id,.llms-reporting.wrap th.name,.llms-reporting.wrap td.name,.llms-reporting.wrap th.registered,.llms-reporting.wrap td.registered,.llms-reporting.wrap th.last_seen,.llms-reporting.wrap td.last_seen,.llms-reporting.wrap th.overall_progress,.llms-reporting.wrap td.overall_progress,.llms-reporting.wrap th.title,.llms-reporting.wrap td.title,.llms-reporting.wrap th.course,.llms-reporting.wrap td.course,.llms-reporting.wrap th.lesson,.llms-reporting.wrap td.lesson{text-align:right}.llms-reporting.wrap td.section-title{background:#eaeaea;text-align:right;font-weight:700;padding:16px 4px}.llms-reporting.wrap td.questions-table{text-align:right}.llms-reporting.wrap td.questions-table .correct,.llms-reporting.wrap td.questions-table .question,.llms-reporting.wrap td.questions-table .selected{text-align:right;max-width:300px}.llms-reporting.wrap td.questions-table .correct img,.llms-reporting.wrap td.questions-table .question img,.llms-reporting.wrap td.questions-table .selected img{height:auto;max-width:64px}.llms-reporting.wrap table.quiz-attempts{margin-bottom:40px}.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary{background:#e1e1e1;border-radius:8px;-webkit-box-shadow:none;box-shadow:none;color:#414141;font-size:13px;font-weight:700;height:auto;padding:8px 14px}.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary,.llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary{margin-bottom:0}.llms-reporting.wrap.tab--enrollments .llms-options-page-contents,.llms-reporting.wrap.tab--sales .llms-options-page-contents{-webkit-box-shadow:none;box-shadow:none;background:none;margin-top:20px;padding:0}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;gap:5px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label{font-weight:700}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input{border:0;font-size:13px;margin:0;padding:0 4px;vertical-align:middle;width:110px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input{width:100% !important}.llms-reporting.wrap.tab--enrollments .button.small,.llms-reporting.wrap.tab--sales .button.small{height:23px;line-height:23px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters,.llms-reporting.wrap.tab--sales .llms-analytics-filters{display:none}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap{background-color:#fff;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:-20px 10px 20px 10px;padding:20px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}@media only screen and (min-width: 782px){.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label{display:block;font-weight:700;margin:0 0 5px 0}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered{word-wrap:break-word;text-overflow:inherit;white-space:normal}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p,.llms-reporting.wrap.tab--sales .llms-analytics-filters p{margin:0;text-align:left}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary,.llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary{display:inline-block}.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap{width:160px}.llms-charts-wrapper{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);padding:20px}.llms-reporting-tab h1,.llms-reporting-tab h2,.llms-reporting-tab h3,.llms-reporting-tab h4,.llms-reporting-tab h5,.llms-reporting-tab h6{margin:0}.llms-reporting-tab h1 a,.llms-reporting-tab h2 a,.llms-reporting-tab h3 a,.llms-reporting-tab h4 a,.llms-reporting-tab h5 a,.llms-reporting-tab h6 a{color:#466dd8;text-decoration:none}.llms-reporting-tab h1 a:hover,.llms-reporting-tab h2 a:hover,.llms-reporting-tab h3 a:hover,.llms-reporting-tab h4 a:hover,.llms-reporting-tab h5 a:hover,.llms-reporting-tab h6 a:hover{color:#466dd8}.llms-reporting-tab h2{font-size:22px;line-height:1.5}.llms-reporting-tab h2.llms-table-title{margin-bottom:20px}.llms-reporting-tab h5{font-size:15px;line-height:1.5}.llms-reporting-tab .llms-reporting-body{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header{margin:0}.llms-reporting-tab .llms-reporting-body .llms-gb-tab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-header{padding:30px;margin:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img{border-radius:50%;display:inline-block;margin-left:10px;overflow:hidden;vertical-align:middle}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img{display:block;max-height:64px;width:auto}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info{display:inline-block;vertical-align:middle}.llms-reporting-breadcrumbs{margin:0;padding:0}.llms-reporting-breadcrumbs a{color:#466dd8;font-size:15px;text-decoration:none}.llms-reporting-breadcrumbs a:hover{color:#2b55cb}.llms-reporting-breadcrumbs a:after{content:" > ";color:#646970}.llms-reporting-breadcrumbs a:last-child{color:#000;font-weight:700}.llms-reporting-breadcrumbs a:last-child:after{display:none}#llms-students-table .name{text-align:right}.llms-reporting-tab-content{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-reporting-tab-content>header:before,.llms-reporting-tab-content>header:after{content:" ";display:table}.llms-reporting-tab-content>header:after{clear:both}.llms-reporting-tab-content h3{margin-bottom:20px}.llms-reporting-tab-content .llms-reporting-tab-filter{float:left;position:relative;margin-left:.75em;width:180px;top:-3px}.llms-reporting-tab-content .llms-reporting-tab-main{-webkit-box-flex:3;-ms-flex:3;flex:3;max-width:75%}.llms-reporting-tab-content .llms-reporting-tab-side{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:20px}.llms-reporting-tab-content>.llms-table-wrap{-webkit-box-flex:1;-ms-flex:1;flex:1}.llms-reporting-widgets:before,.llms-reporting-widgets:after{content:" ";display:table}.llms-reporting-widgets:after{clear:both}.llms-reporting-widget{border-top:4px solid #466dd8;background:#fafafa;margin-bottom:10px;padding:30px}.llms-reporting-widget:before,.llms-reporting-widget:after{content:" ";display:table}.llms-reporting-widget:after{clear:both}.llms-reporting-widget .fa{color:#999;float:right;font-size:32px;margin-left:10px}.llms-reporting-widget strong{color:#333;font-size:20px;line-height:1.2}.llms-reporting-widget.llms-reporting-student-address strong{line-height:1.1}.llms-reporting-widget sup,.llms-reporting-widget .llms-price-currency-symbol{font-size:75%;position:relative;top:-4px;vertical-align:baseline}.llms-reporting-widget small{font-size:13px}.llms-reporting-widget small.compare{margin-right:5px}.llms-reporting-widget small.compare.positive{color:#83c373}.llms-reporting-widget small.compare.negative{color:#e5554e}.llms-reporting-event{border-right:4px solid #555;background:#fafafa;font-size:11px;line-height:1.2;margin-bottom:.75em;padding:10px}.llms-reporting-event:before,.llms-reporting-event:after{content:" ";display:table}.llms-reporting-event:after{clear:both}.llms-reporting-event.color--blue{border-right-color:#466dd8}.llms-reporting-event.color--green,.llms-reporting-event._enrollment_trigger,.llms-reporting-event._is_complete.yes{border-right-color:#83c373}.llms-reporting-event.color--purple,.llms-reporting-event._status.enrolled{border-right-color:#845ef7}.llms-reporting-event.color--red,.llms-reporting-event._status.expired,.llms-reporting-event._status.cancelled{border-right-color:#e5554e}.llms-reporting-event.color--orange,.llms-reporting-event._achievement_earned,.llms-reporting-event._certificate_earned,.llms-reporting-event._email_sent{border-right-color:#ff922b}.llms-reporting-event time{color:#888}.llms-reporting-event .llms-student-avatar{margin-right:10px;float:left}.llms-reporting-event a{text-decoration:none;color:inherit}@media only screen and (min-width: 782px){.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{margin-right:0;margin-left:0}}.llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative;list-style-type:none}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 10px 10px 35px;text-decoration:none}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:right;margin:0;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:left;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;left:-12px;top:-2px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 30px 0 0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-right:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.wrap.llms-reporting .llms-inside-wrap,.wrap.lifterlms-settings .llms-inside-wrap,.wrap.llms-status .llms-inside-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 auto}.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,.wrap.llms-status .llms-inside-wrap .llms-nav-text{margin:0 auto}.wrap.llms-reporting .llms-subheader .llms-save,.wrap.lifterlms-settings .llms-subheader .llms-save,.wrap.llms-status .llms-subheader .llms-save{-webkit-box-flex:1;-ms-flex:auto;flex:auto;text-align:left}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0 -10px 20px -20px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:0}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover{background:#f0f0f1;color:#222}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fafafa;color:#466dd8;border-top-color:#466dd8}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{font-weight:700}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{border-top:2px solid rgba(0,0,0,0);padding:14px}.wrap.llms-reporting .llms-setting-group,.wrap.lifterlms-settings .llms-setting-group,.wrap.llms-status .llms-setting-group{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:20px}.wrap.llms-reporting .llms-setting-group .llms-label,.wrap.lifterlms-settings .llms-setting-group .llms-label,.wrap.llms-status .llms-setting-group .llms-label{border-bottom:1px solid #efefef;font-weight:700;font-size:20px;padding:20px;margin:-20px -20px 20px}.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary{margin-right:10px}.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons{color:#444;cursor:help}.wrap.llms-reporting .llms-setting-group .form-table,.wrap.lifterlms-settings .llms-setting-group .form-table,.wrap.llms-status .llms-setting-group .form-table{margin:0}.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle{margin-top:0}.wrap.llms-reporting .llms-setting-group td[colspan="2"],.wrap.lifterlms-settings .llms-setting-group td[colspan="2"],.wrap.llms-status .llms-setting-group td[colspan="2"]{padding-top:0;padding-right:0}.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,.wrap.llms-status .llms-setting-group tr.llms-disabled-field{opacity:.5;pointer-events:none}.wrap.llms-reporting .llms-setting-group p,.wrap.lifterlms-settings .llms-setting-group p,.wrap.llms-status .llms-setting-group p{font-size:14px}.wrap.llms-reporting .llms-setting-group input[type=text],.wrap.llms-reporting .llms-setting-group input[type=password],.wrap.llms-reporting .llms-setting-group input[type=datetime],.wrap.llms-reporting .llms-setting-group input[type=datetime-local],.wrap.llms-reporting .llms-setting-group input[type=date],.wrap.llms-reporting .llms-setting-group input[type=month],.wrap.llms-reporting .llms-setting-group input[type=time],.wrap.llms-reporting .llms-setting-group input[type=week],.wrap.llms-reporting .llms-setting-group input[type=number],.wrap.llms-reporting .llms-setting-group input[type=email],.wrap.llms-reporting .llms-setting-group input[type=url],.wrap.llms-reporting .llms-setting-group input[type=search],.wrap.llms-reporting .llms-setting-group input[type=tel],.wrap.llms-reporting .llms-setting-group input[type=color],.wrap.llms-reporting .llms-setting-group select,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),.wrap.lifterlms-settings .llms-setting-group input[type=text],.wrap.lifterlms-settings .llms-setting-group input[type=password],.wrap.lifterlms-settings .llms-setting-group input[type=datetime],.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],.wrap.lifterlms-settings .llms-setting-group input[type=date],.wrap.lifterlms-settings .llms-setting-group input[type=month],.wrap.lifterlms-settings .llms-setting-group input[type=time],.wrap.lifterlms-settings .llms-setting-group input[type=week],.wrap.lifterlms-settings .llms-setting-group input[type=number],.wrap.lifterlms-settings .llms-setting-group input[type=email],.wrap.lifterlms-settings .llms-setting-group input[type=url],.wrap.lifterlms-settings .llms-setting-group input[type=search],.wrap.lifterlms-settings .llms-setting-group input[type=tel],.wrap.lifterlms-settings .llms-setting-group input[type=color],.wrap.lifterlms-settings .llms-setting-group select,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),.wrap.llms-status .llms-setting-group input[type=text],.wrap.llms-status .llms-setting-group input[type=password],.wrap.llms-status .llms-setting-group input[type=datetime],.wrap.llms-status .llms-setting-group input[type=datetime-local],.wrap.llms-status .llms-setting-group input[type=date],.wrap.llms-status .llms-setting-group input[type=month],.wrap.llms-status .llms-setting-group input[type=time],.wrap.llms-status .llms-setting-group input[type=week],.wrap.llms-status .llms-setting-group input[type=number],.wrap.llms-status .llms-setting-group input[type=email],.wrap.llms-status .llms-setting-group input[type=url],.wrap.llms-status .llms-setting-group input[type=search],.wrap.llms-status .llms-setting-group input[type=tel],.wrap.llms-status .llms-setting-group input[type=color],.wrap.llms-status .llms-setting-group select,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area){width:50%}.wrap.llms-reporting .llms-setting-group input[type=text].medium,.wrap.llms-reporting .llms-setting-group input[type=password].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,.wrap.llms-reporting .llms-setting-group input[type=date].medium,.wrap.llms-reporting .llms-setting-group input[type=month].medium,.wrap.llms-reporting .llms-setting-group input[type=time].medium,.wrap.llms-reporting .llms-setting-group input[type=week].medium,.wrap.llms-reporting .llms-setting-group input[type=number].medium,.wrap.llms-reporting .llms-setting-group input[type=email].medium,.wrap.llms-reporting .llms-setting-group input[type=url].medium,.wrap.llms-reporting .llms-setting-group input[type=search].medium,.wrap.llms-reporting .llms-setting-group input[type=tel].medium,.wrap.llms-reporting .llms-setting-group input[type=color].medium,.wrap.llms-reporting .llms-setting-group select.medium,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,.wrap.lifterlms-settings .llms-setting-group select.medium,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.llms-status .llms-setting-group input[type=text].medium,.wrap.llms-status .llms-setting-group input[type=password].medium,.wrap.llms-status .llms-setting-group input[type=datetime].medium,.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,.wrap.llms-status .llms-setting-group input[type=date].medium,.wrap.llms-status .llms-setting-group input[type=month].medium,.wrap.llms-status .llms-setting-group input[type=time].medium,.wrap.llms-status .llms-setting-group input[type=week].medium,.wrap.llms-status .llms-setting-group input[type=number].medium,.wrap.llms-status .llms-setting-group input[type=email].medium,.wrap.llms-status .llms-setting-group input[type=url].medium,.wrap.llms-status .llms-setting-group input[type=search].medium,.wrap.llms-status .llms-setting-group input[type=tel].medium,.wrap.llms-status .llms-setting-group input[type=color].medium,.wrap.llms-status .llms-setting-group select.medium,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium{width:30%}.wrap.llms-reporting .llms-setting-group input[type=text].small,.wrap.llms-reporting .llms-setting-group input[type=password].small,.wrap.llms-reporting .llms-setting-group input[type=datetime].small,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,.wrap.llms-reporting .llms-setting-group input[type=date].small,.wrap.llms-reporting .llms-setting-group input[type=month].small,.wrap.llms-reporting .llms-setting-group input[type=time].small,.wrap.llms-reporting .llms-setting-group input[type=week].small,.wrap.llms-reporting .llms-setting-group input[type=number].small,.wrap.llms-reporting .llms-setting-group input[type=email].small,.wrap.llms-reporting .llms-setting-group input[type=url].small,.wrap.llms-reporting .llms-setting-group input[type=search].small,.wrap.llms-reporting .llms-setting-group input[type=tel].small,.wrap.llms-reporting .llms-setting-group input[type=color].small,.wrap.llms-reporting .llms-setting-group select.small,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.lifterlms-settings .llms-setting-group input[type=text].small,.wrap.lifterlms-settings .llms-setting-group input[type=password].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,.wrap.lifterlms-settings .llms-setting-group input[type=date].small,.wrap.lifterlms-settings .llms-setting-group input[type=month].small,.wrap.lifterlms-settings .llms-setting-group input[type=time].small,.wrap.lifterlms-settings .llms-setting-group input[type=week].small,.wrap.lifterlms-settings .llms-setting-group input[type=number].small,.wrap.lifterlms-settings .llms-setting-group input[type=email].small,.wrap.lifterlms-settings .llms-setting-group input[type=url].small,.wrap.lifterlms-settings .llms-setting-group input[type=search].small,.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,.wrap.lifterlms-settings .llms-setting-group input[type=color].small,.wrap.lifterlms-settings .llms-setting-group select.small,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.llms-status .llms-setting-group input[type=text].small,.wrap.llms-status .llms-setting-group input[type=password].small,.wrap.llms-status .llms-setting-group input[type=datetime].small,.wrap.llms-status .llms-setting-group input[type=datetime-local].small,.wrap.llms-status .llms-setting-group input[type=date].small,.wrap.llms-status .llms-setting-group input[type=month].small,.wrap.llms-status .llms-setting-group input[type=time].small,.wrap.llms-status .llms-setting-group input[type=week].small,.wrap.llms-status .llms-setting-group input[type=number].small,.wrap.llms-status .llms-setting-group input[type=email].small,.wrap.llms-status .llms-setting-group input[type=url].small,.wrap.llms-status .llms-setting-group input[type=search].small,.wrap.llms-status .llms-setting-group input[type=tel].small,.wrap.llms-status .llms-setting-group input[type=color].small,.wrap.llms-status .llms-setting-group select.small,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small{width:20%}.wrap.llms-reporting .llms-setting-group input[type=text].tiny,.wrap.llms-reporting .llms-setting-group input[type=password].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-reporting .llms-setting-group input[type=date].tiny,.wrap.llms-reporting .llms-setting-group input[type=month].tiny,.wrap.llms-reporting .llms-setting-group input[type=time].tiny,.wrap.llms-reporting .llms-setting-group input[type=week].tiny,.wrap.llms-reporting .llms-setting-group input[type=number].tiny,.wrap.llms-reporting .llms-setting-group input[type=email].tiny,.wrap.llms-reporting .llms-setting-group input[type=url].tiny,.wrap.llms-reporting .llms-setting-group input[type=search].tiny,.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,.wrap.llms-reporting .llms-setting-group input[type=color].tiny,.wrap.llms-reporting .llms-setting-group select.tiny,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,.wrap.lifterlms-settings .llms-setting-group select.tiny,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.llms-status .llms-setting-group input[type=text].tiny,.wrap.llms-status .llms-setting-group input[type=password].tiny,.wrap.llms-status .llms-setting-group input[type=datetime].tiny,.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-status .llms-setting-group input[type=date].tiny,.wrap.llms-status .llms-setting-group input[type=month].tiny,.wrap.llms-status .llms-setting-group input[type=time].tiny,.wrap.llms-status .llms-setting-group input[type=week].tiny,.wrap.llms-status .llms-setting-group input[type=number].tiny,.wrap.llms-status .llms-setting-group input[type=email].tiny,.wrap.llms-status .llms-setting-group input[type=url].tiny,.wrap.llms-status .llms-setting-group input[type=search].tiny,.wrap.llms-status .llms-setting-group input[type=tel].tiny,.wrap.llms-status .llms-setting-group input[type=color].tiny,.wrap.llms-status .llms-setting-group select.tiny,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny{width:10%}@media only screen and (min-width: 782px){.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fff}}.wrap.llms-reporting #llms-mailhawk-connect,.wrap.lifterlms-settings #llms-mailhawk-connect,.wrap.llms-status #llms-mailhawk-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-mailhawk-connect .dashicons,.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,.wrap.llms-status #llms-mailhawk-connect .dashicons{margin:-4px 0 0 4px;vertical-align:middle}.wrap.llms-reporting #llms-sendwp-connect,.wrap.lifterlms-settings #llms-sendwp-connect,.wrap.llms-status #llms-sendwp-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-sendwp-connect .fa,.wrap.lifterlms-settings #llms-sendwp-connect .fa,.wrap.llms-status #llms-sendwp-connect .fa{margin-left:4px}@media only screen and (min-width: 782px){.wrap.lifterlms-settings .llms-subheader{height:40px;position:sticky;top:32px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -22px 20px -20px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:10px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -22px 20px -20px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:10px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -22px 20px -20px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-right:10px}}.wrap.llms-dashboard .llms-inside-wrap{padding-top:30px}.wrap.llms-dashboard #poststuff h2{padding:12px 20px}.wrap.llms-dashboard .llms-dashboard-activity h2{font-size:20px;font-weight:700;line-height:1.5;margin-top:0;text-align:center}.wrap.llms-dashboard .postbox{background-color:#fff;border:none;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}.wrap.llms-dashboard .postbox .postbox-header{border-bottom-color:#efefef}.wrap.llms-dashboard .postbox .inside{padding:20px}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p{text-align:right}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions{padding-top:0}.wrap.llms-dashboard #llms_dashboard_addons p{text-align:center}.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary{display:inline-block;margin-top:15px}.wrap.llms-dashboard #llms_dashboard_quick_links ul{list-style:disc;margin:5px 20px 0 0}.wrap.llms-dashboard #llms_dashboard_quick_links ul li{font-size:15px;line-height:1.5}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{display:grid;grid-template-columns:1fr;grid-gap:30px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a{display:inline-block}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3{margin:0 0 10px 0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul{margin-bottom:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist{list-style:none;margin-right:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa{text-align:center;width:16px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check{color:#008a20}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times{color:#d63638}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action{display:block;text-align:center}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{grid-template-columns:1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3{margin:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons{color:#aaa}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{grid-template-columns:1fr 1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_blog ul,.wrap.llms-dashboard #llms_dashboard_podcast ul{margin:0}.wrap.llms-dashboard #llms_dashboard_blog ul li,.wrap.llms-dashboard #llms_dashboard_podcast ul li{margin:0 0 15px 0}.wrap.llms-dashboard #llms_dashboard_blog ul li a,.wrap.llms-dashboard #llms_dashboard_podcast ul li a{display:block}.wrap.llms-dashboard #llms_dashboard_blog p,.wrap.llms-dashboard #llms_dashboard_podcast p{margin:15px 0;text-align:center}.wrap.llms-dashboard #llms_dashboard_blog p a,.wrap.llms-dashboard #llms_dashboard_podcast p a{display:inline-block}#llms_dashboard_widget .inside{margin:0;padding-bottom:8px}#llms_dashboard_widget .llms-dashboard-widget-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:12px}#llms_dashboard_widget .activity-block{padding-bottom:8px;border-color:#e8e8e8}#llms_dashboard_widget h3{margin-bottom:0}#llms_dashboard_widget .llms-charts-wrapper{display:none}#llms_dashboard_widget .llms-widget-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:8px;width:100%;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding:4px 0}#llms_dashboard_widget .llms-widget-row:before,#llms_dashboard_widget .llms-widget-row:after{display:none}#llms_dashboard_widget .llms-widget-1-4{padding:0;-webkit-box-flex:1;-ms-flex:1;flex:1}#llms_dashboard_widget .llms-widget{padding:8px 8px 12px;margin:0;border-radius:6px;border:1px solid #e8e8e8;-webkit-box-shadow:0px 2px 4px #f6f7f7;box-shadow:0px 2px 4px #f6f7f7;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}#llms_dashboard_widget .llms-label{font-size:14px;width:100%;-ms-flex-item-align:start;align-self:flex-start;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#llms_dashboard_widget .llms-widget-content{font-size:20px;margin:0}#llms_dashboard_widget .llms-widget-info-toggle{display:none}#llms_dashboard_widget a{border:0}#llms_dashboard_widget .subsubsub{color:#dcdcde}.llms-dashboard-widget-feed{margin:0 -12px;padding:0;background-color:#f6f7f7}.llms-dashboard-widget-feed li{margin:0;padding:8px 12px;border-bottom:1px solid #e8e8e8}.llms-dashboard-widget-feed span{display:block}.llms-remarks .llms-remarks-field{height:120px;width:100%}.llms-remarks input[type=number]{width:60px}button[name=llms_quiz_attempt_action] .save{display:none}button[name=llms_quiz_attempt_action].grading .default{display:none}button[name=llms_quiz_attempt_action].grading .save{display:inline}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:right;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:left}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-left:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-left:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:100% 0;background-image:radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 5px 5px 0}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-right:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";right:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */@font-face{font-family:"FontAwesome";src:url("../fonts/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-right:0;margin-right:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;right:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{right:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:right}.fa-pull-right{float:left}.fa.fa-pull-left{margin-left:.3em}.fa.fa-pull-right{margin-right:.3em}.pull-right{float:left}.pull-left{float:right}.fa.pull-left{margin-left:.3em}.fa.pull-right{margin-right:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(-270deg);transform:rotate(-270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;right:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/assets/css/admin.css b/assets/css/admin.css index 7261a855f0..bac008d491 100644 --- a/assets/css/admin.css +++ b/assets/css/admin.css @@ -2669,6 +2669,9 @@ a.llms-view-as { .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover { color: #e5554e; } +.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger:hover { + color: #ff922b; +} .llms-collapsible .llms-collapsible-body { display: none; padding: 10px; @@ -2818,6 +2821,9 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post .llms-metabox .llms-access-plans .llms-invalid .dashicons-warning { display: inline; } +.llms-metabox .llms-access-plans .llms-needs-attention .dashicons-warning.medium-danger { + display: inline; +} .llms-metabox .llms-access-plans .dashicons-warning { display: none; } @@ -2841,6 +2847,9 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post color: #e5554e; margin-left: 3px; } +.llms-metabox .llms-access-plan .notice { + margin-left: 0; +} .llms-metabox-students .llms-table tr .name { text-align: left; @@ -3494,6 +3503,7 @@ body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post background: #efefef; margin: 0 0 10px; position: relative; + list-style-type: none; } .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer { color: inherit; diff --git a/assets/css/admin.min.css b/assets/css/admin.min.css index 3105c06299..10f2abbe96 100644 --- a/assets/css/admin.min.css +++ b/assets/css/admin.min.css @@ -1,4 +1,4 @@ -#poststuff .llms-metabox:before,#poststuff .llms-metabox:after,.llms-form-fields:before,.llms-metabox .llms-access-plans:before,.llms-collapsible .llms-collapsible-body:before,.llms-collapsible .llms-collapsible-header:before,.llms-collapsible:before,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{content:" ";display:table}#poststuff .llms-metabox:after,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{clear:both}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{left:-7px;position:relative}.llms-button-primary{background:#466dd8}.llms-button-primary:hover,.llms-button-primary.clicked{background:#2b55cb}.llms-button-primary:focus,.llms-button-primary:active{background:#6888df}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}#adminmenu .toplevel_page_lifterlms .wp-menu-image img{padding-top:6px;width:20px}#adminmenu .toplevel_page_lifterlms a[href*="page=llms-add-ons"],#adminmenu .opensub .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a[href*="page=llms-add-ons"]{color:#ff922b}.last-col{float:right;padding-right:0 !important}.last-col:after{clear:both}@media(max-width: 767px){.m-all{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-right:0}.m-1of2{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.m-1of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.m-2of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.m-1of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.m-3of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.m-right{text-align:center}.m-center{text-align:center}.m-left{text-align:center}.d-right{text-align:right}.d-center{text-align:center}.d-left{text-align:left}}@media(min-width: 768px)and (max-width: 1029px){.t-all{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-right:0}.t-1of2{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.t-1of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.t-2of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.t-1of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.t-3of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.t-1of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.t-2of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.t-3of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.t-4of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-right{text-align:right}.d-center{text-align:center}.d-left{text-align:left}}@media(min-width: 1030px){.d-all{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-right:0}.d-1of2{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.d-1of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.d-2of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.d-1of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.d-3of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.d-1of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.d-2of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.d-3of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.d-4of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-1of6{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:16.6666666667%}.d-1of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:14.2857142857%}.d-2of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:28.5714286%}.d-3of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:42.8571429%}.d-4of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:57.1428572%}.d-5of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:71.4285715%}.d-6of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:85.7142857%}.d-1of8{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:12.5%}.d-1of9{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:11.1111111111%}.d-1of10{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:10%}.d-1of11{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:9.0909090909%}.d-1of12{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:8.33%}.d-right{text-align:right}.d-center{text-align:center}.d-left{text-align:left}}#llms-form-wrapper .llms-search-form-wrapper{border-bottom:1px solid #999;margin:20px 0}#llms-form-wrapper #llms_analytics_search{border:none !important;text-shadow:none !important;border:none !important;outline:none !important;-webkit-box-shadow:none !important;box-shadow:none !important;margin:0 !important;color:#fefefe !important;background:#466dd8 !important;border-radius:0;-webkit-transition:.5s;transition:.5s}#llms-form-wrapper #llms_analytics_search:hover{background:#0185a3 !important}#llms-form-wrapper #llms_analytics_search:active{background:#33b1cb !important}#llms-skip-setup-form .llms-admin-link{background:none !important;border:none;padding:0 !important;color:#0074a2;cursor:pointer}#llms-skip-setup-form .llms-admin-link:hover{color:#2ea2cc}#llms-skip-setup-form .llms-admin-link:focus{color:#124964}.llms-switch{position:relative}.llms-switch .llms-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.llms-switch .llms-toggle+label{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;position:relative;cursor:pointer;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.llms-switch input.llms-toggle-round+label{border:2px solid #6c7781;border-radius:10px;height:20px;width:36px}.llms-switch input.llms-toggle-round+label:before,.llms-switch input.llms-toggle-round+label:after{-webkit-box-sizing:border-box;box-sizing:border-box;content:"";display:block;position:absolute;-webkit-transition:background .4s;transition:background .4s}.llms-switch input.llms-toggle-round:checked+label{border-color:#11a0d2;background-color:#11a0d2}.llms-switch input.llms-toggle-round+label:after{height:12px;left:2px;top:2px;background-color:#6c7781;border-radius:50%;-webkit-transition:margin .4s;transition:margin .4s;width:12px;z-index:3}.llms-switch input.llms-toggle-round:checked+label:after{background-color:#fefefe;margin-left:16px}.llms-switch input.llms-toggle-round+label:before{height:8px;top:4px;border:1px solid #6c7781;border-radius:50%;right:4px;width:8px;z-index:2}.llms-switch input.llms-toggle-round:checked+label:before{border-color:#fefefe;border-radius:0;left:6px;right:auto;width:2px}#llms-profile-fields{margin:50px 0}#llms-profile-fields .llms-form-field{padding-left:0}#llms-profile-fields label{display:block;font-weight:bold;padding:8px 0 2px}#llms-profile-fields .type-checkbox .type-checkbox label{display:initial;font-weight:initial;padding:0}#llms-profile-fields .type-checkbox .type-checkbox input{display:inline-block;margin-bottom:0;width:1rem}#llms-profile-fields select{max-width:100%}a.llms-voucher-delete{background:#e5554e;color:#fefefe;display:block;padding:4px 2px;text-decoration:none;-webkit-transition:ease .3s all;transition:ease .3s all}a.llms-voucher-delete:hover{background:#af3a26}.llms-voucher-codes-wrapper table,.llms-voucher-redemption-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td,.llms-voucher-redemption-wrapper table th,.llms-voucher-redemption-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead,.llms-voucher-redemption-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table thead th,.llms-voucher-redemption-wrapper table thead th{padding:10px 10px}.llms-voucher-codes-wrapper table tr,.llms-voucher-redemption-wrapper table tr{counter-increment:row-counter}.llms-voucher-codes-wrapper table tr:nth-child(even),.llms-voucher-redemption-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td,.llms-voucher-redemption-wrapper table tr td{padding:5px}.llms-voucher-codes-wrapper table tr td:first-child:before,.llms-voucher-redemption-wrapper table tr td:first-child:before{content:counter(row-counter)}.llms-voucher-codes-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td span{display:inline-block;min-width:30px}.llms-voucher-codes-wrapper button{cursor:pointer}.llms-voucher-codes-wrapper .llms-voucher-delete{float:right;margin-right:15px}.llms-voucher-codes-wrapper .llms-voucher-uses{width:50px}.llms-voucher-codes-wrapper .llms-voucher-add-codes{float:right}.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text]{width:30px}.llms-voucher-export-wrapper .llms-voucher-export-type{width:100%}.llms-voucher-export-wrapper .llms-voucher-export-type p{margin:0 0 0 15px}.llms-voucher-export-wrapper .llms-voucher-email-wrapper{width:100%;margin:25px 0}.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text]{width:100%}.llms-voucher-export-wrapper .llms-voucher-email-wrapper p{margin:0}.llms-voucher-export-wrapper>button{float:right}.postbox .inside{overflow:auto}.llms-widget{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:20px;padding:20px;position:relative;width:100%}.llms-widget.alt{border:1px solid #ccc;background-color:#efefef;margin-bottom:10px}.llms-widget.alt .llms-label{color:#777;font-size:14px;margin-bottom:10px;padding-bottom:5px}.llms-widget.alt h2{color:#444;font-weight:300}.llms-widget a{border-bottom:1px dotted #466dd8;display:inline-block;text-decoration:none}.llms-widget a:hover{border-bottom:1px dotted #2b55cb}.llms-widget .llms-widget-content{margin:.67em 0;color:#466dd8;font-size:2.4em;font-weight:700;line-height:1;word-break:break-all}.llms-widget h2{font-size:1.8em}.llms-widget .llms-label{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:18px;font-weight:400;margin:0 0 10px 0;text-align:center}.llms-widget .llms-chart{width:100%;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-widget mark.yes{background-color:#7ad03a}.llms-widget .llms-subtitle{margin-bottom:0}.llms-widget .spinner{float:none;left:50%;margin:-10px 0 0 -10px;position:absolute;top:50%;z-index:2}.llms-widget.is-loading:before{background:#fefefe;bottom:0;content:"";left:0;opacity:.9;position:absolute;right:0;top:0;z-index:1}.llms-widget.is-loading .spinner{visibility:visible}.llms-widget td[colspan="2"]{padding-left:0}.llms-widget tr.llms-disabled-field{opacity:.5;pointer-events:none}.llms-widget-1-3,.llms-widget-1-4,.llms-widget-1-5{text-align:center}.llms-widget .llms-widget-info-toggle{color:#aaa;cursor:pointer;font-size:16px;position:absolute;right:20px;top:20px}.llms-widget.info-showing .llms-widget-info{display:block}.llms-widget-info{background:#444;color:#fefefe;bottom:-50px;display:none;padding:15px;position:absolute;text-align:center;left:10px;right:15px;z-index:3}.llms-widget-info:before{content:"";border:12px solid rgba(0,0,0,0);border-bottom-color:#444;left:50%;margin-left:-12px;position:absolute;top:-24px}.llms-widget-info p{margin:0}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .no-padding{padding:0 !important}svg.icon{height:24px;width:24px;display:inline-block;fill:currentColor;vertical-align:baseline}button svg.icon{height:18px;width:18px;margin:4px -4px 0 4px;-webkit-filter:drop-shadow(0 1px #eee);filter:drop-shadow(0 1px #eee);float:right}svg.icon.menu-icon{height:20px;width:20px;display:inline-block;fill:currentColor;vertical-align:text-bottom;margin-right:10px}svg.icon.tree-icon{height:13px;width:13px;vertical-align:middle}svg.icon.section-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon-attr{height:10px;width:10px;vertical-align:middle}svg.icon.list-icon{height:12px;width:12px;vertical-align:middle}svg.icon.list-icon.on{color:#466dd8}svg.icon.list-icon.off{color:#444}svg.icon.detail-icon{height:16px;width:16px;vertical-align:text-bottom;cursor:default}svg.icon.detail-icon.on{color:#466dd8}svg.icon.detail-icon.off{color:#ccc}svg.icon-ion-arrow-up{-webkit-transform:rotate(90deg);transform:rotate(90deg)}svg use{pointer-events:none}#side-sortables .tab-content{padding:0}.llms-mb-container .tab-content{display:none;background-color:#fff;padding:0 20px}.llms-mb-container .tab-content ul:not(.select2-selection__rendered){margin:0 0 15px 0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li{padding:20px 0;margin:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.select:not([class*=d-]){width:100%}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li:last-child{border:0;padding-bottom:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.top{border-bottom:0;padding-bottom:0}.llms-mb-container .tab-content .full-width{width:100%}.llms-mb-container .tab-content #wp-content-editor-tools{background:none}.llms-mb-container .tab-content.llms-active{display:inherit}.llms-mb-container .tab-content .no-border{border-bottom:0px}.topModal{display:none;position:relative;border:4px solid gray;background:#fff;z-index:1000001;padding:2px;max-width:500px;margin:34px auto 0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-color:#fff;border-radius:2px;border:1px solid #ddd}.topModalClose{float:right;cursor:pointer;margin-right:10px;margin-top:10px}.topModalContainer{display:none;overflow:auto;overflow-y:hidden;position:fixed;top:0 !important;right:0;bottom:0;left:0;-webkit-overflow-scrolling:touch;width:auto !important;margin-left:0 !important;background-color:rgba(0,0,0,0) !important;z-index:100002 !important}.topModalBackground{display:none;background:#000;position:fixed;height:100%;width:100%;top:0 !important;left:0;margin-left:0 !important;z-index:100002 !important;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:auto;overflow-y:hidden}body.modal-open{overflow:hidden}.llms-modal-header{border-top-right-radius:1px;border-top-left-radius:1px;background:#466dd8;color:#eee;padding:10px 15px;font-size:18px}#llms-icon-modal-close{width:16px;height:16px;fill:#fefefe}.llms-modal-content{padding:20px}.llms-modal-content h3{margin-top:0}.llms-modal-form h1{margin-top:0}.llms-modal-form input[type=text]{width:100%}.llms-modal-form textarea,.llms-modal-form input[type=text],.llms-modal-form input[type=password],.llms-modal-form input[type=file],.llms-modal-form input[type=datetime],.llms-modal-form input[type=datetime-local],.llms-modal-form input[type=date],.llms-modal-form input[type=month],.llms-modal-form input[type=time],.llms-modal-form input[type=week],.llms-modal-form input[type=number],.llms-modal-form input[type=email],.llms-modal-form input[type=url],.llms-modal-form input[type=search],.llms-modal-form input[type=tel],.llms-modal-form input[type=color]{padding:0 .4em 0 .4em;margin-bottom:2em;vertical-align:middle;border-radius:3px;min-width:50px;max-width:635px;width:100%;min-height:32px;background-color:#fff;border:1px solid #ccc;margin:0 0 24px 0;outline:none;-webkit-transition:border .3s ease-in-out 0s;transition:border .3s ease-in-out 0s}.llms-modal-form textarea:focus,.llms-modal-form input[type=text]:focus,.llms-modal-form input[type=password]:focus,.llms-modal-form input[type=file]:focus,.llms-modal-form input[type=datetime]:focus,.llms-modal-form input[type=datetime-local]:focus,.llms-modal-form input[type=date]:focus,.llms-modal-form input[type=month]:focus,.llms-modal-form input[type=time]:focus,.llms-modal-form input[type=week]:focus,.llms-modal-form input[type=number]:focus,.llms-modal-form input[type=email]:focus,.llms-modal-form input[type=url]:focus,.llms-modal-form input[type=search]:focus,.llms-modal-form input[type=tel]:focus,.llms-modal-form input[type=color]:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form textarea{padding:.4em !important;height:100px !important;border-radius:3px;vertical-align:middle;min-height:32px;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-modal-form textarea:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single{border-radius:3px;vertical-align:middle;min-height:32px;border:1px solid #ccc;width:100%;background:#fefefe !important;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff;line-height:32px;margin:0 0 24px 0}.llms-modal-form .chosen-container-single .chosen-single:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single div b{margin-top:4px}.llms-modal-form .chosen-search input[type=text]{border:1px solid #ccc}.llms-modal-form .chosen-search input[type=text]:focus{background-color:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-drop{margin-top:-28px}.llms-modal-form .llms-button-primary,.llms-modal-form .llms-button-secondary{padding:10px 10px;border-radius:0;-webkit-transition:.5s;transition:.5s;-webkit-box-shadow:0 1px 1px #ccc;box-shadow:0 1px 1px #ccc}.llms-modal-form .llms-button-primary.full,.llms-modal-form .llms-button-secondary.full{width:100%}.modal-open .select2-dropdown{z-index:1000005}.button.llms-merge-code-button{vertical-align:middle}.button.llms-merge-code-button svg{margin-right:2px;position:relative;top:4px;width:16px}.button.llms-merge-code-button svg g{fill:currentColor}.llms-mb-container .llms-merge-code-wrapper{float:right;top:-5px}.llms-merge-code-wrapper{display:inline;position:relative}.llms-merge-codes{background:#f7f7f7;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;display:none;left:1px;overflow:hidden;position:absolute;top:30px;width:200px}.llms-merge-codes ul{margin:0;padding:0}.llms-merge-codes li{cursor:pointer;margin:0;padding:4px 8px !important;border-bottom:1px solid #ccc}.llms-merge-codes li:hover{color:#23282d;background:#fefefe}.llms-merge-codes.active{display:block;z-index:777}.llms-nav-tab,.llms-nav-tab-filters{display:block;width:100%}form.llms-nav-tab-filters.full-width{width:100%}form.llms-nav-tab-filters.full-width label{display:inline-block;width:10%;text-align:left}form.llms-nav-tab-filters.full-width .select2-container{width:85% !important}.llms-nav-tab-settings{display:block;width:100%}#llms-form-wrapper .llms-select{width:100%;margin-bottom:20px}#llms-form-wrapper .llms-checkbox{display:inline-block;width:100%;text-align:left}#llms-form-wrapper .llms-filter-options{width:100%}#llms-form-wrapper .llms-date-select{width:100%;display:inline-block;margin-bottom:20px}#llms-form-wrapper .llms-date-select input[type=text]{width:100%}ul.tabs li{display:block}@media only screen and (min-width: 481px){#llms-form-wrapper .llms-checkbox{width:33%}}@media only screen and (min-width: 768px){ul.tabs li{display:inline-block}.llms-nav-tab{display:inline-block;width:33%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{width:50%;max-width:500px}#llms-form-wrapper .llms-filter-options{width:50%;max-width:500px}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-right:5%}.llms-widget input[type=text],.llms-widget input[type=password],.llms-widget input[type=datetime],.llms-widget input[type=datetime-local],.llms-widget input[type=date],.llms-widget input[type=month],.llms-widget input[type=time],.llms-widget input[type=week],.llms-widget input[type=number],.llms-widget input[type=email],.llms-widget input[type=url],.llms-widget input[type=search],.llms-widget input[type=tel],.llms-widget input[type=color],.llms-widget select,.llms-widget textarea{width:50%}.llms-widget input[type=text].medium,.llms-widget input[type=password].medium,.llms-widget input[type=datetime].medium,.llms-widget input[type=datetime-local].medium,.llms-widget input[type=date].medium,.llms-widget input[type=month].medium,.llms-widget input[type=time].medium,.llms-widget input[type=week].medium,.llms-widget input[type=number].medium,.llms-widget input[type=email].medium,.llms-widget input[type=url].medium,.llms-widget input[type=search].medium,.llms-widget input[type=tel].medium,.llms-widget input[type=color].medium,.llms-widget select.medium,.llms-widget textarea.medium{width:30%}.llms-widget input[type=text].small,.llms-widget input[type=password].small,.llms-widget input[type=datetime].small,.llms-widget input[type=datetime-local].small,.llms-widget input[type=date].small,.llms-widget input[type=month].small,.llms-widget input[type=time].small,.llms-widget input[type=week].small,.llms-widget input[type=number].small,.llms-widget input[type=email].small,.llms-widget input[type=url].small,.llms-widget input[type=search].small,.llms-widget input[type=tel].small,.llms-widget input[type=color].small,.llms-widget select.small,.llms-widget textarea.small{width:20%}.llms-widget input[type=text].tiny,.llms-widget input[type=password].tiny,.llms-widget input[type=datetime].tiny,.llms-widget input[type=datetime-local].tiny,.llms-widget input[type=date].tiny,.llms-widget input[type=month].tiny,.llms-widget input[type=time].tiny,.llms-widget input[type=week].tiny,.llms-widget input[type=number].tiny,.llms-widget input[type=email].tiny,.llms-widget input[type=url].tiny,.llms-widget input[type=search].tiny,.llms-widget input[type=tel].tiny,.llms-widget input[type=color].tiny,.llms-widget select.tiny,.llms-widget textarea.tiny{width:10%}}@media only screen and (min-width: 1030px){.llms-nav-tab{display:inline-block;width:33.333%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{display:inline-block;width:47.5%}#llms-form-wrapper .llms-select:first-child{margin-right:5%}#llms-form-wrapper .llms-filter-options{display:inline-block;width:47.5%}#llms-form-wrapper .llms-filter-options.date-filter{margin-right:5%}#llms-form-wrapper .llms-filter-options .llms-date-select{margin-bottom:0}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-right:5%}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .llms-widget-1-5{vertical-align:top;width:20%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-4{vertical-align:top;width:25%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-3{width:33.3%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-2{width:50%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px;vertical-align:top}}@media only screen and (min-width: 1240px){.llms-nav-tab-filters,.llms-nav-tab-settings{float:left;width:12.5%}}.wrap.lifterlms{margin-top:0}.llms-header{background-color:#fff;margin:0 0 0 -20px;padding:20px 10px;position:relative;z-index:1}.llms-header .llms-inside-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 10px}.llms-header .lifterlms-logo{-webkit-box-flex:0;-ms-flex:0 0 190px;flex:0 0 190px;max-height:52px;margin-right:10px}.llms-header .llms-meta{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:1.5}.llms-header .llms-meta .llms-version{background-color:#1d2327;color:#fff;border-radius:999px;font-size:13px;font-weight:700;padding:6px 12px}.llms-header .llms-meta a{display:inline-block}.llms-header .llms-meta .llms-license{border-right:1px solid #ccc;font-weight:700;margin-right:12px;padding-right:12px}.llms-header .llms-meta .llms-license a{text-decoration:none}.llms-header .llms-meta .llms-license a:before{content:"";display:inline-block;font:400 16px/1 dashicons;left:0;padding-right:3px;position:relative;text-decoration:none;vertical-align:text-bottom}.llms-header .llms-meta .llms-license a.llms-license-none{color:#888}.llms-header .llms-meta .llms-license a.llms-license-none:before{content:""}.llms-header .llms-meta .llms-license a.llms-license-active{color:#008a20}.llms-header .llms-meta .llms-license a.llms-license-active:before{content:""}.llms-header .llms-meta .llms-support{font-weight:700}.llms-header .llms-meta .llms-support a{color:#1d2327;text-decoration:none}.llms-subheader{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-left:-20px;padding:10px 20px;width:100%;z-index:1}.llms-subheader h1{font-weight:700;padding:0}.llms-subheader h1 a{color:inherit;text-decoration:none}#post_course_difficulty{min-width:200px}#_video-embed,#_audio-embed{width:100%}.clear{clear:both;width:100%}hr{background-color:#ccc;border:none;height:1px;margin:30px 0;padding:0}.llms_certificate_default_image,.llms_certificate_image{width:300px}.llms_achievement_default_image,.llms_achievement_image{width:120px}div[id^=lifterlms-] .inside{overflow:visible}.notice.llms-admin-notice{background-color:#fff;border:1px solid #ccd0d4;-webkit-box-shadow:0 1px 4px rgba(0,0,0,.15);box-shadow:0 1px 4px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 !important;position:relative}.notice.llms-admin-notice .notice-dismiss{text-decoration:none}.notice.llms-admin-notice.notice-warning{border-left:4px solid #f8954f}.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon{background-color:#fef4ed}.notice.llms-admin-notice.notice-info{border-left:4px solid #466dd8}.notice.llms-admin-notice.notice-info h3{color:#466dd8}.notice.llms-admin-notice.notice-info .llms-admin-notice-icon{background-color:#edf0fb}.notice.llms-admin-notice.notice-success{border-left:4px solid #18a957}.notice.llms-admin-notice.notice-success h3{color:#18a957}.notice.llms-admin-notice.notice-success .llms-admin-notice-icon{background-color:#e8f6ee}.notice.llms-admin-notice.notice-error{border-left:4px solid #df1642}.notice.llms-admin-notice.notice-error h3{color:#9c0f2e}.notice.llms-admin-notice.notice-error .llms-admin-notice-icon{background-color:#fce8ec}.notice.llms-admin-notice .llms-admin-notice-icon{background-image:url(../../assets/images/lifterlms-icon-color.png);background-position:center center;background-repeat:no-repeat;background-size:30px;min-width:70px}.notice.llms-admin-notice .llms-admin-notice-content{color:#111;padding:20px}.notice.llms-admin-notice h3{font-size:18px;font-weight:700;line-height:25px;margin:0 0 15px 0}.notice.llms-admin-notice button,.notice.llms-admin-notice .llms-button-primary{display:inline-block}.notice.llms-admin-notice p{font-size:14px;line-height:22px;margin:0 0 15px 0;max-width:65em;padding:0}.notice.llms-admin-notice p:last-of-type{margin-bottom:0}.llms-button-action.small .dashicons,.llms-button-danger.small .dashicons,.llms-button-primary.small .dashicons,.llms-button-secondary.small .dashicons{font-size:13px;height:13px;width:13px}.llms-button-action:hover,.llms-button-danger:hover,.llms-button-primary:hover,.llms-button-secondary:hover{-webkit-box-shadow:none;box-shadow:none}a.llms-view-as{line-height:2;margin-right:8px}.llms-image-field-preview{max-height:80px;vertical-align:middle;width:auto}.llms-image-field-remove.hidden{display:none}.llms-log-viewer{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);margin:20px 0;padding:25px}.llms-log-viewer pre{font-family:monospace;margin:0;padding:0;white-space:pre-wrap}.llms-status--tools .llms-table{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.llms-status--tools .llms-table td,.llms-status--tools .llms-table th{padding:10px;vertical-align:top}.llms-status--tools .llms-table th{width:28%}.llms-status--tools .llms-table p{margin:0 0 10px}.llms-error{color:#e5554e;font-style:italic}.llms-rating-stars{color:#ffb900;text-decoration:none}@media screen and (max-width: 782px){.llms-header{top:46px}.llms-header .llms-inside-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px}.llms-header .llms-inside-wrap .lifterlms-logo{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:inherit;-ms-flex:inherit;flex:inherit;max-height:initial;max-width:200px}.llms-header .llms-inside-wrap .llms-meta{-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px}}.llms-table-wrap{position:relative}.llms-table-header{padding:0}.llms-table-header:before,.llms-table-header:after{content:" ";display:table}.llms-table-header:after{clear:both}.llms-table-header h2{font-size:20px;padding:0;display:inline-block;line-height:1.5;margin:0 0 20px 0;vertical-align:middle}.llms-table-header .llms-table-search,.llms-table-header .llms-table-filters{float:right;padding-left:10px}.llms-table-header .llms-table-search input{margin:0;padding:0 8px}.llms-table{border:1px solid #c3c4c7;border-collapse:collapse;width:100%}.llms-table a:not(.small){color:#466dd8}.llms-table a:not(.small):hover{color:#2b55cb}.llms-table td,.llms-table th{border-bottom:1px solid #c3c4c7;padding:10px 12px;text-align:center}.llms-table td.expandable.closed,.llms-table th.expandable.closed{display:none}.llms-table td .llms-button-primary,.llms-table td .llms-button-secondary,.llms-table td .llms-button-action,.llms-table td .llms-button-danger,.llms-table th .llms-button-primary,.llms-table th .llms-button-secondary,.llms-table th .llms-button-action,.llms-table th .llms-button-danger{display:inline-block}.llms-table tr.llms-quiz-pending td{font-weight:700}.llms-table thead th,.llms-table tfoot th{background-color:#fff;font-weight:700}.llms-table thead th a.llms-sortable,.llms-table tfoot th a.llms-sortable{padding-right:16px;position:relative;text-decoration:none;width:100%}.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc{opacity:1}.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc{opacity:0}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc{opacity:0}.llms-table thead th a.llms-sortable .dashicons,.llms-table tfoot th a.llms-sortable .dashicons{color:#444;font-size:16px;height:16px;opacity:0;position:absolute;width:16px}.llms-table tfoot th{border-bottom:none}.llms-table tfoot th .llms-table-export{float:left}.llms-table tfoot th .llms-table-export .llms-table-progress{background:#efefef;display:none;margin-left:8px;vertical-align:middle;width:100px}.llms-table tfoot th .llms-table-pagination{float:right}.llms-table.zebra tbody tr:nth-child(even) th,.llms-table.zebra tbody tr:nth-child(even) td{background-color:#fff}.llms-table.zebra tbody tr:nth-child(odd) th,.llms-table.zebra tbody tr:nth-child(odd) td{background-color:#f6f7f7}.llms-table.text-left td,.llms-table.text-left th{text-align:left}.llms-table.size-large td,.llms-table.size-large th{font-size:14px;padding:10px 12px}.llms-table .llms-drag-handle{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-table .llms-action-icon{color:#777;text-decoration:none}.llms-table .llms-action-icon .tooltip{cursor:pointer}.llms-table .llms-action-icon:hover{color:#466dd8}.llms-table .llms-action-icon.danger:hover{color:#e5554e}.llms-table .llms-table-page-count{font-size:12px;padding:0 5px}.llms-table-progress{text-align:center}.llms-table-progress .llms-table-progress-bar{background:#eee;border-radius:10px;height:16px;overflow:hidden;position:relative}.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner{background:#466dd8;height:100%;-webkit-transition:width .2s ease;transition:width .2s ease}.llms-table-progress .llms-table-progress-text{color:#466dd8;font-size:12px;font-weight:700;line-height:16px}.llms-table.llms-gateway-table .status .fa,.llms-table.llms-integrations-table .status .fa{color:#466dd8;font-size:22px}.llms-table.llms-gateway-table .sort,.llms-table.llms-integrations-table .sort{cursor:move;text-align:center;width:10px}.llms-gb-table-notifications th,.llms-gb-table-notifications td{text-align:left}.llms-order-note .llms-order-note-content{background:#efefef;margin-bottom:10px;padding:10px;position:relative}.llms-order-note .llms-order-note-content:after{border-style:solid;border-color:#efefef rgba(0,0,0,0);border-width:10px 10px 0 0;bottom:-10px;content:"";display:block;height:0;left:20px;position:absolute;width:0}.llms-order-note .llms-order-note-content p{font-size:13px;margin:0;line-height:1.5}.llms-order-note .llms-order-note-meta{color:#999;font-size:11px;margin-left:10px}.llms-mb-list label{font-size:15px;font-weight:700;line-height:1.5;display:block;width:100%}.llms-mb-list .description{margin-bottom:8px}.llms-mb-list .input-full{width:100%}#poststuff .llms-metabox h2,#poststuff .llms-metabox h3,#poststuff .llms-metabox h6{margin:0;padding:0}#poststuff .llms-metabox h2{font-size:18px;font-weight:700}#poststuff .llms-metabox h3{color:#777;font-size:16px}#poststuff .llms-metabox h4{border-bottom:1px solid #e5e5e5;padding:0;margin:0}#poststuff .llms-metabox .llms-transaction-test-mode{background:#ffffd7;font-style:italic;left:0;padding:2px;position:absolute;right:0;top:0;text-align:center}#poststuff .llms-metabox a.llms-editable,#poststuff .llms-metabox .llms-metabox-icon,#poststuff .llms-metabox button.llms-editable{color:#999;text-decoration:none}#poststuff .llms-metabox a.llms-editable:hover,#poststuff .llms-metabox .llms-metabox-icon:hover,#poststuff .llms-metabox button.llms-editable:hover{color:#466dd8}#poststuff .llms-metabox button.llms-editable{border:none;background:none;cursor:pointer;padding:0;vertical-align:top}#poststuff .llms-metabox h4 button.llms-editable{float:right}#poststuff .llms-metabox .llms-table{margin-top:10px}.llms-metabox-section{background:#fff;margin-top:25px;position:relative}.llms-metabox-section.no-top-margin{margin-top:0}.llms-metabox-section .llms-metabox-field{margin:15px 0;position:relative}.llms-metabox-section .llms-metabox-field label{color:#777;display:block;margin-bottom:5px;font-weight:500;vertical-align:baseline}.llms-metabox-section .llms-metabox-field select,.llms-metabox-section .llms-metabox-field textarea,.llms-metabox-section .llms-metabox-field input[type=text],.llms-metabox-section .llms-metabox-field input[type=number]{width:100%}.llms-metabox-section .llms-metabox-field input.md-text{width:105px}.llms-metabox-section .llms-metabox-field input.sm-text{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input{width:95px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field em{font-style:normal;padding:0 3px}.llms-collapsible{border:1px solid #e5e5e5;position:relative;margin-top:0;margin-bottom:-1px}.llms-collapsible:last-child{margin-bottom:0}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down{display:none}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header{padding:10px}.llms-collapsible .llms-collapsible-header h3{color:#777;margin:0;font-size:16px}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:none}.llms-collapsible .llms-collapsible-header a{text-decoration:none}.llms-collapsible .llms-collapsible-header .dashicons{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-collapsible .llms-collapsible-header .dashicons:hover{color:#466dd8}.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover{color:#e5554e}.llms-collapsible .llms-collapsible-body{display:none;padding:10px}._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove{display:none}._llms_instructors_data.repeater .llms-mb-list{padding:0 5px !important}.post-type-llms_order #post-body-content{display:none}#lifterlms-order-details .handlediv,#lifterlms-order-details .handlediv.button-link,#lifterlms-order-details .postbox-header{display:none}#lifterlms-order-details .inside{padding:20px;margin-top:0}.llms-table tbody tr.llms-txn-failed td{background-color:rgba(229,85,78,.5);border-bottom-color:rgba(229,85,78,.5)}.llms-table tbody tr.llms-txn-refunded td{background-color:rgba(255,165,0,.5);border-bottom-color:rgba(255,165,0,.5)}.llms-txn-refund-form .llms-metabox-section,.llms-manual-txn-form .llms-metabox-section{margin-top:0}.llms-txn-refund-form .llms-metabox-field,.llms-manual-txn-form .llms-metabox-field{text-align:right}.llms-txn-refund-form .llms-metabox-field input[type=number],.llms-manual-txn-form .llms-metabox-field input[type=number]{max-width:100px}.llms-txn-refund-form .llms-metabox-field input[type=text],.llms-manual-txn-form .llms-metabox-field input[type=text]{max-width:340px}.llms-manual-txn-form{background-color:#eaeaea}.llms-manual-txn-form .llms-metabox-section{background-color:#eaeaea}#llms-remaining-edit{display:none}.llms-remaining-edit--content label,.llms-remaining-edit--content span,.llms-remaining-edit--content textarea{display:block}.llms-remaining-edit--content label{margin-bottom:20px}.llms-remaining-edit--content textarea,.llms-remaining-edit--content input{width:100%}.submitbox .llms-mb-section,.llms-award-engagement-submitbox .llms-mb-list{margin-bottom:12px}.submitbox .llms-mb-section:last-of-type,.llms-award-engagement-submitbox .llms-mb-list:last-of-type{margin-bottom:0}.sync-action:before,.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{font:normal 20px/1 dashicons;speak:never;display:inline-block;margin-left:-1px;padding-right:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px;color:#8c8f94}body:not(.admin-color-fresh) .sync-action:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{color:currentColor}.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{content:""}.sync-action:before{content:"";color:#fff}.submitbox .llms-mb-section.post_author_override label,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label{display:inline-block;width:auto}.llms-metabox #llms-new-access-plan-model{display:none}.llms-metabox .llms-access-plans{margin-top:10px}.llms-metabox .llms-access-plans>.llms-no-plans-msg{display:none}.llms-metabox .llms-access-plans>.llms-no-plans-msg:last-child{-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5;display:block;text-align:center;padding:10px}.llms-metabox .llms-access-plans.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-metabox .llms-access-plans .llms-spinning{z-index:1}.llms-metabox .llms-access-plans .llms-invalid{border-color:#e5554e}.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning{display:inline}.llms-metabox .llms-access-plans .dashicons-warning{display:none}.llms-metabox .llms-access-plan{text-align:left}.llms-metabox .llms-access-plan [data-tip]:before{text-align:center}.llms-metabox .llms-access-plan .llms-plan-link,.llms-metabox .llms-access-plan [data-controller]{display:none}.llms-metabox .llms-access-plan:hover .llms-plan-link,.llms-metabox .llms-access-plan.opened .llms-plan-link{display:inline-block}.llms-metabox .llms-access-plan .llms-metabox-field{margin:5px 0}.llms-metabox .llms-access-plan .llms-required{color:#e5554e;margin-left:3px}.llms-metabox-students .llms-table tr .name{text-align:left}.llms-metabox-students .llms-add-student:hover{color:#83c373}.llms-metabox-students .llms-remove-student:hover{color:#e5554e}.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields>li.llms-mb-list{border-bottom:none;padding:0 0 10px}.llms-mb-list.repeater .llms-repeater-rows{position:relative;margin-top:10px;min-height:10px}.llms-mb-list.repeater .llms-repeater-rows.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-mb-list.repeater .llms-repeater-row{background:#fff}.llms-mb-list.repeater .llms-mb-repeater-footer{text-align:right;margin-top:20px}.llms-mb-list.repeater .tmce-active .wp-editor-area{color:#32373c}.llms-builder-launcher p{margin-top:0}.llms-builder-launcher ol{margin-top:-6px}.llms-builder-launcher .llms-button-primary{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-list-table .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.wp-list-table .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.wp-list-table .llms-status.llms-active,.wp-list-table .llms-status.llms-completed,.wp-list-table .llms-status.llms-pass,.wp-list-table .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.wp-list-table .llms-status.llms-fail,.wp-list-table .llms-status.llms-failed,.wp-list-table .llms-status.llms-expired,.wp-list-table .llms-status.llms-cancelled,.wp-list-table .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.wp-list-table .llms-status.llms-incomplete,.wp-list-table .llms-status.llms-on-hold,.wp-list-table .llms-status.llms-pending,.wp-list-table .llms-status.llms-pending-cancel,.wp-list-table .llms-status.llms-refunded,.wp-list-table .llms-status.llms-txn-pending,.wp-list-table .llms-status.llms-txn-refunded{color:#664200;background-color:orange}#lifterlms-order-transactions .llms-table tfoot th{text-align:right}.llms-post-table-post-filter{display:inline-block;margin-right:6px;max-width:100%;width:220px}.llms-nav-tab-wrapper{background:#466dd8;margin:20px 0}.llms-nav-tab-wrapper.llms-nav-secondary{background:#e1e1e1}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item{margin:0}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#cdcdcd}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{color:#414141;font-size:15px;padding:8px 14px}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons{font-size:15px;height:15px;width:15px}.llms-nav-tab-wrapper.llms-nav-text{background:inherit}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items{padding-left:0}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item{background:inherit;color:#646970}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after{display:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after{content:"|";display:inline-block;margin:0 8px 0 6px}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover{background:inherit;color:#466dd8}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link{background:inherit;color:#000;font-weight:600;text-decoration:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link{color:#466dd8;display:inline-block;letter-spacing:0;margin:0;padding:0;text-decoration:underline;text-transform:none}.llms-nav-tab-wrapper.llms-nav-style-tabs{background-color:#1c3987;margin:0;padding-top:8px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item{margin:0 3px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link{border-top-left-radius:4px;border-top-right-radius:4px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link{background-color:#fff;color:#466dd8;font-weight:700}.llms-nav-tab-wrapper.llms-nav-style-filters{background-color:#466dd8;border-radius:12px;margin:20px 0;overflow:hidden;padding:0}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-left:0}@media only screen and (min-width: 782px){.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item{float:none}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link{padding:14px}.llms-nav-tab-wrapper .llms-nav-items{margin:0;padding-left:10px}.llms-nav-tab-wrapper .llms-nav-items:before,.llms-nav-tab-wrapper .llms-nav-items:after{content:" ";display:table}.llms-nav-tab-wrapper .llms-nav-items:after{clear:both}.llms-nav-tab-wrapper .llms-nav-item{margin:0}.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover{background:#466dd8}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{background:#1c3987}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{font-weight:400}@media only screen and (min-width: 768px){.llms-nav-tab-wrapper .llms-nav-item{float:left}.llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right{float:right}}.llms-nav-tab-wrapper .llms-nav-link{color:#fff;cursor:pointer;display:block;font-weight:400;font-size:15px;padding:9px 18px;text-align:center;text-decoration:none;-webkit-transition:all .3s ease;transition:all .3s ease}#llms-options-page-contents h2{color:#999;font-weight:500;letter-spacing:2px;border-bottom:1px solid #999}.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0;padding:0}.llms-reporting.wrap .llms-stab-title{color:#1c3987;font-size:36px;font-weight:300;margin-bottom:20px}.llms-reporting.wrap td.id a{text-decoration:none}.llms-reporting.wrap th.id,.llms-reporting.wrap td.id,.llms-reporting.wrap th.name,.llms-reporting.wrap td.name,.llms-reporting.wrap th.registered,.llms-reporting.wrap td.registered,.llms-reporting.wrap th.last_seen,.llms-reporting.wrap td.last_seen,.llms-reporting.wrap th.overall_progress,.llms-reporting.wrap td.overall_progress,.llms-reporting.wrap th.title,.llms-reporting.wrap td.title,.llms-reporting.wrap th.course,.llms-reporting.wrap td.course,.llms-reporting.wrap th.lesson,.llms-reporting.wrap td.lesson{text-align:left}.llms-reporting.wrap td.section-title{background:#eaeaea;text-align:left;font-weight:700;padding:16px 4px}.llms-reporting.wrap td.questions-table{text-align:left}.llms-reporting.wrap td.questions-table .correct,.llms-reporting.wrap td.questions-table .question,.llms-reporting.wrap td.questions-table .selected{text-align:left;max-width:300px}.llms-reporting.wrap td.questions-table .correct img,.llms-reporting.wrap td.questions-table .question img,.llms-reporting.wrap td.questions-table .selected img{height:auto;max-width:64px}.llms-reporting.wrap table.quiz-attempts{margin-bottom:40px}.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary{background:#e1e1e1;border-radius:8px;-webkit-box-shadow:none;box-shadow:none;color:#414141;font-size:13px;font-weight:700;height:auto;padding:8px 14px}.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary,.llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary{margin-bottom:0}.llms-reporting.wrap.tab--enrollments .llms-options-page-contents,.llms-reporting.wrap.tab--sales .llms-options-page-contents{-webkit-box-shadow:none;box-shadow:none;background:none;margin-top:20px;padding:0}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;gap:5px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label{font-weight:700}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input{border:0;font-size:13px;margin:0;padding:0 4px;vertical-align:middle;width:110px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input{width:100% !important}.llms-reporting.wrap.tab--enrollments .button.small,.llms-reporting.wrap.tab--sales .button.small{height:23px;line-height:23px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters,.llms-reporting.wrap.tab--sales .llms-analytics-filters{display:none}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap{background-color:#fff;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:-20px 10px 20px 10px;padding:20px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}@media only screen and (min-width: 782px){.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label{display:block;font-weight:700;margin:0 0 5px 0}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered{word-wrap:break-word;text-overflow:inherit;white-space:normal}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p,.llms-reporting.wrap.tab--sales .llms-analytics-filters p{margin:0;text-align:right}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary,.llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary{display:inline-block}.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap{width:160px}.llms-charts-wrapper{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);padding:20px}.llms-reporting-tab h1,.llms-reporting-tab h2,.llms-reporting-tab h3,.llms-reporting-tab h4,.llms-reporting-tab h5,.llms-reporting-tab h6{margin:0}.llms-reporting-tab h1 a,.llms-reporting-tab h2 a,.llms-reporting-tab h3 a,.llms-reporting-tab h4 a,.llms-reporting-tab h5 a,.llms-reporting-tab h6 a{color:#466dd8;text-decoration:none}.llms-reporting-tab h1 a:hover,.llms-reporting-tab h2 a:hover,.llms-reporting-tab h3 a:hover,.llms-reporting-tab h4 a:hover,.llms-reporting-tab h5 a:hover,.llms-reporting-tab h6 a:hover{color:#466dd8}.llms-reporting-tab h2{font-size:22px;line-height:1.5}.llms-reporting-tab h2.llms-table-title{margin-bottom:20px}.llms-reporting-tab h5{font-size:15px;line-height:1.5}.llms-reporting-tab .llms-reporting-body{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header{margin:0}.llms-reporting-tab .llms-reporting-body .llms-gb-tab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-header{padding:30px;margin:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img{border-radius:50%;display:inline-block;margin-right:10px;overflow:hidden;vertical-align:middle}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img{display:block;max-height:64px;width:auto}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info{display:inline-block;vertical-align:middle}.llms-reporting-breadcrumbs{margin:0;padding:0}.llms-reporting-breadcrumbs a{color:#466dd8;font-size:15px;text-decoration:none}.llms-reporting-breadcrumbs a:hover{color:#2b55cb}.llms-reporting-breadcrumbs a:after{content:" > ";color:#646970}.llms-reporting-breadcrumbs a:last-child{color:#000;font-weight:700}.llms-reporting-breadcrumbs a:last-child:after{display:none}#llms-students-table .name{text-align:left}.llms-reporting-tab-content{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-reporting-tab-content>header:before,.llms-reporting-tab-content>header:after{content:" ";display:table}.llms-reporting-tab-content>header:after{clear:both}.llms-reporting-tab-content h3{margin-bottom:20px}.llms-reporting-tab-content .llms-reporting-tab-filter{float:right;position:relative;margin-right:.75em;width:180px;top:-3px}.llms-reporting-tab-content .llms-reporting-tab-main{-webkit-box-flex:3;-ms-flex:3;flex:3;max-width:75%}.llms-reporting-tab-content .llms-reporting-tab-side{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:20px}.llms-reporting-tab-content>.llms-table-wrap{-webkit-box-flex:1;-ms-flex:1;flex:1}.llms-reporting-widgets:before,.llms-reporting-widgets:after{content:" ";display:table}.llms-reporting-widgets:after{clear:both}.llms-reporting-widget{border-top:4px solid #466dd8;background:#fafafa;margin-bottom:10px;padding:30px}.llms-reporting-widget:before,.llms-reporting-widget:after{content:" ";display:table}.llms-reporting-widget:after{clear:both}.llms-reporting-widget .fa{color:#999;float:left;font-size:32px;margin-right:10px}.llms-reporting-widget strong{color:#333;font-size:20px;line-height:1.2}.llms-reporting-widget.llms-reporting-student-address strong{line-height:1.1}.llms-reporting-widget sup,.llms-reporting-widget .llms-price-currency-symbol{font-size:75%;position:relative;top:-4px;vertical-align:baseline}.llms-reporting-widget small{font-size:13px}.llms-reporting-widget small.compare{margin-left:5px}.llms-reporting-widget small.compare.positive{color:#83c373}.llms-reporting-widget small.compare.negative{color:#e5554e}.llms-reporting-event{border-left:4px solid #555;background:#fafafa;font-size:11px;line-height:1.2;margin-bottom:.75em;padding:10px}.llms-reporting-event:before,.llms-reporting-event:after{content:" ";display:table}.llms-reporting-event:after{clear:both}.llms-reporting-event.color--blue{border-left-color:#466dd8}.llms-reporting-event.color--green,.llms-reporting-event._enrollment_trigger,.llms-reporting-event._is_complete.yes{border-left-color:#83c373}.llms-reporting-event.color--purple,.llms-reporting-event._status.enrolled{border-left-color:#845ef7}.llms-reporting-event.color--red,.llms-reporting-event._status.expired,.llms-reporting-event._status.cancelled{border-left-color:#e5554e}.llms-reporting-event.color--orange,.llms-reporting-event._achievement_earned,.llms-reporting-event._certificate_earned,.llms-reporting-event._email_sent{border-left-color:#ff922b}.llms-reporting-event time{color:#888}.llms-reporting-event .llms-student-avatar{margin-left:10px;float:right}.llms-reporting-event a{text-decoration:none;color:inherit}@media only screen and (min-width: 782px){.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{margin-left:0;margin-right:0}}.llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 35px 10px 10px;text-decoration:none}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:left;margin:0;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:right;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;right:-12px;top:-2px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 0 0 30px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-left:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.wrap.llms-reporting .llms-inside-wrap,.wrap.lifterlms-settings .llms-inside-wrap,.wrap.llms-status .llms-inside-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 auto}.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,.wrap.llms-status .llms-inside-wrap .llms-nav-text{margin:0 auto}.wrap.llms-reporting .llms-subheader .llms-save,.wrap.lifterlms-settings .llms-subheader .llms-save,.wrap.llms-status .llms-subheader .llms-save{-webkit-box-flex:1;-ms-flex:auto;flex:auto;text-align:right}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0 -20px 20px -10px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:0}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover{background:#f0f0f1;color:#222}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fafafa;color:#466dd8;border-top-color:#466dd8}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{font-weight:700}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{border-top:2px solid rgba(0,0,0,0);padding:14px}.wrap.llms-reporting .llms-setting-group,.wrap.lifterlms-settings .llms-setting-group,.wrap.llms-status .llms-setting-group{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:20px}.wrap.llms-reporting .llms-setting-group .llms-label,.wrap.lifterlms-settings .llms-setting-group .llms-label,.wrap.llms-status .llms-setting-group .llms-label{border-bottom:1px solid #efefef;font-weight:700;font-size:20px;padding:20px;margin:-20px -20px 20px}.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary{margin-left:10px}.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons{color:#444;cursor:help}.wrap.llms-reporting .llms-setting-group .form-table,.wrap.lifterlms-settings .llms-setting-group .form-table,.wrap.llms-status .llms-setting-group .form-table{margin:0}.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle{margin-top:0}.wrap.llms-reporting .llms-setting-group td[colspan="2"],.wrap.lifterlms-settings .llms-setting-group td[colspan="2"],.wrap.llms-status .llms-setting-group td[colspan="2"]{padding-top:0;padding-left:0}.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,.wrap.llms-status .llms-setting-group tr.llms-disabled-field{opacity:.5;pointer-events:none}.wrap.llms-reporting .llms-setting-group p,.wrap.lifterlms-settings .llms-setting-group p,.wrap.llms-status .llms-setting-group p{font-size:14px}.wrap.llms-reporting .llms-setting-group input[type=text],.wrap.llms-reporting .llms-setting-group input[type=password],.wrap.llms-reporting .llms-setting-group input[type=datetime],.wrap.llms-reporting .llms-setting-group input[type=datetime-local],.wrap.llms-reporting .llms-setting-group input[type=date],.wrap.llms-reporting .llms-setting-group input[type=month],.wrap.llms-reporting .llms-setting-group input[type=time],.wrap.llms-reporting .llms-setting-group input[type=week],.wrap.llms-reporting .llms-setting-group input[type=number],.wrap.llms-reporting .llms-setting-group input[type=email],.wrap.llms-reporting .llms-setting-group input[type=url],.wrap.llms-reporting .llms-setting-group input[type=search],.wrap.llms-reporting .llms-setting-group input[type=tel],.wrap.llms-reporting .llms-setting-group input[type=color],.wrap.llms-reporting .llms-setting-group select,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),.wrap.lifterlms-settings .llms-setting-group input[type=text],.wrap.lifterlms-settings .llms-setting-group input[type=password],.wrap.lifterlms-settings .llms-setting-group input[type=datetime],.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],.wrap.lifterlms-settings .llms-setting-group input[type=date],.wrap.lifterlms-settings .llms-setting-group input[type=month],.wrap.lifterlms-settings .llms-setting-group input[type=time],.wrap.lifterlms-settings .llms-setting-group input[type=week],.wrap.lifterlms-settings .llms-setting-group input[type=number],.wrap.lifterlms-settings .llms-setting-group input[type=email],.wrap.lifterlms-settings .llms-setting-group input[type=url],.wrap.lifterlms-settings .llms-setting-group input[type=search],.wrap.lifterlms-settings .llms-setting-group input[type=tel],.wrap.lifterlms-settings .llms-setting-group input[type=color],.wrap.lifterlms-settings .llms-setting-group select,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),.wrap.llms-status .llms-setting-group input[type=text],.wrap.llms-status .llms-setting-group input[type=password],.wrap.llms-status .llms-setting-group input[type=datetime],.wrap.llms-status .llms-setting-group input[type=datetime-local],.wrap.llms-status .llms-setting-group input[type=date],.wrap.llms-status .llms-setting-group input[type=month],.wrap.llms-status .llms-setting-group input[type=time],.wrap.llms-status .llms-setting-group input[type=week],.wrap.llms-status .llms-setting-group input[type=number],.wrap.llms-status .llms-setting-group input[type=email],.wrap.llms-status .llms-setting-group input[type=url],.wrap.llms-status .llms-setting-group input[type=search],.wrap.llms-status .llms-setting-group input[type=tel],.wrap.llms-status .llms-setting-group input[type=color],.wrap.llms-status .llms-setting-group select,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area){width:50%}.wrap.llms-reporting .llms-setting-group input[type=text].medium,.wrap.llms-reporting .llms-setting-group input[type=password].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,.wrap.llms-reporting .llms-setting-group input[type=date].medium,.wrap.llms-reporting .llms-setting-group input[type=month].medium,.wrap.llms-reporting .llms-setting-group input[type=time].medium,.wrap.llms-reporting .llms-setting-group input[type=week].medium,.wrap.llms-reporting .llms-setting-group input[type=number].medium,.wrap.llms-reporting .llms-setting-group input[type=email].medium,.wrap.llms-reporting .llms-setting-group input[type=url].medium,.wrap.llms-reporting .llms-setting-group input[type=search].medium,.wrap.llms-reporting .llms-setting-group input[type=tel].medium,.wrap.llms-reporting .llms-setting-group input[type=color].medium,.wrap.llms-reporting .llms-setting-group select.medium,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,.wrap.lifterlms-settings .llms-setting-group select.medium,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.llms-status .llms-setting-group input[type=text].medium,.wrap.llms-status .llms-setting-group input[type=password].medium,.wrap.llms-status .llms-setting-group input[type=datetime].medium,.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,.wrap.llms-status .llms-setting-group input[type=date].medium,.wrap.llms-status .llms-setting-group input[type=month].medium,.wrap.llms-status .llms-setting-group input[type=time].medium,.wrap.llms-status .llms-setting-group input[type=week].medium,.wrap.llms-status .llms-setting-group input[type=number].medium,.wrap.llms-status .llms-setting-group input[type=email].medium,.wrap.llms-status .llms-setting-group input[type=url].medium,.wrap.llms-status .llms-setting-group input[type=search].medium,.wrap.llms-status .llms-setting-group input[type=tel].medium,.wrap.llms-status .llms-setting-group input[type=color].medium,.wrap.llms-status .llms-setting-group select.medium,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium{width:30%}.wrap.llms-reporting .llms-setting-group input[type=text].small,.wrap.llms-reporting .llms-setting-group input[type=password].small,.wrap.llms-reporting .llms-setting-group input[type=datetime].small,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,.wrap.llms-reporting .llms-setting-group input[type=date].small,.wrap.llms-reporting .llms-setting-group input[type=month].small,.wrap.llms-reporting .llms-setting-group input[type=time].small,.wrap.llms-reporting .llms-setting-group input[type=week].small,.wrap.llms-reporting .llms-setting-group input[type=number].small,.wrap.llms-reporting .llms-setting-group input[type=email].small,.wrap.llms-reporting .llms-setting-group input[type=url].small,.wrap.llms-reporting .llms-setting-group input[type=search].small,.wrap.llms-reporting .llms-setting-group input[type=tel].small,.wrap.llms-reporting .llms-setting-group input[type=color].small,.wrap.llms-reporting .llms-setting-group select.small,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.lifterlms-settings .llms-setting-group input[type=text].small,.wrap.lifterlms-settings .llms-setting-group input[type=password].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,.wrap.lifterlms-settings .llms-setting-group input[type=date].small,.wrap.lifterlms-settings .llms-setting-group input[type=month].small,.wrap.lifterlms-settings .llms-setting-group input[type=time].small,.wrap.lifterlms-settings .llms-setting-group input[type=week].small,.wrap.lifterlms-settings .llms-setting-group input[type=number].small,.wrap.lifterlms-settings .llms-setting-group input[type=email].small,.wrap.lifterlms-settings .llms-setting-group input[type=url].small,.wrap.lifterlms-settings .llms-setting-group input[type=search].small,.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,.wrap.lifterlms-settings .llms-setting-group input[type=color].small,.wrap.lifterlms-settings .llms-setting-group select.small,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.llms-status .llms-setting-group input[type=text].small,.wrap.llms-status .llms-setting-group input[type=password].small,.wrap.llms-status .llms-setting-group input[type=datetime].small,.wrap.llms-status .llms-setting-group input[type=datetime-local].small,.wrap.llms-status .llms-setting-group input[type=date].small,.wrap.llms-status .llms-setting-group input[type=month].small,.wrap.llms-status .llms-setting-group input[type=time].small,.wrap.llms-status .llms-setting-group input[type=week].small,.wrap.llms-status .llms-setting-group input[type=number].small,.wrap.llms-status .llms-setting-group input[type=email].small,.wrap.llms-status .llms-setting-group input[type=url].small,.wrap.llms-status .llms-setting-group input[type=search].small,.wrap.llms-status .llms-setting-group input[type=tel].small,.wrap.llms-status .llms-setting-group input[type=color].small,.wrap.llms-status .llms-setting-group select.small,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small{width:20%}.wrap.llms-reporting .llms-setting-group input[type=text].tiny,.wrap.llms-reporting .llms-setting-group input[type=password].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-reporting .llms-setting-group input[type=date].tiny,.wrap.llms-reporting .llms-setting-group input[type=month].tiny,.wrap.llms-reporting .llms-setting-group input[type=time].tiny,.wrap.llms-reporting .llms-setting-group input[type=week].tiny,.wrap.llms-reporting .llms-setting-group input[type=number].tiny,.wrap.llms-reporting .llms-setting-group input[type=email].tiny,.wrap.llms-reporting .llms-setting-group input[type=url].tiny,.wrap.llms-reporting .llms-setting-group input[type=search].tiny,.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,.wrap.llms-reporting .llms-setting-group input[type=color].tiny,.wrap.llms-reporting .llms-setting-group select.tiny,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,.wrap.lifterlms-settings .llms-setting-group select.tiny,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.llms-status .llms-setting-group input[type=text].tiny,.wrap.llms-status .llms-setting-group input[type=password].tiny,.wrap.llms-status .llms-setting-group input[type=datetime].tiny,.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-status .llms-setting-group input[type=date].tiny,.wrap.llms-status .llms-setting-group input[type=month].tiny,.wrap.llms-status .llms-setting-group input[type=time].tiny,.wrap.llms-status .llms-setting-group input[type=week].tiny,.wrap.llms-status .llms-setting-group input[type=number].tiny,.wrap.llms-status .llms-setting-group input[type=email].tiny,.wrap.llms-status .llms-setting-group input[type=url].tiny,.wrap.llms-status .llms-setting-group input[type=search].tiny,.wrap.llms-status .llms-setting-group input[type=tel].tiny,.wrap.llms-status .llms-setting-group input[type=color].tiny,.wrap.llms-status .llms-setting-group select.tiny,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny{width:10%}@media only screen and (min-width: 782px){.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fff}}.wrap.llms-reporting #llms-mailhawk-connect,.wrap.lifterlms-settings #llms-mailhawk-connect,.wrap.llms-status #llms-mailhawk-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-mailhawk-connect .dashicons,.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,.wrap.llms-status #llms-mailhawk-connect .dashicons{margin:-4px 4px 0 0;vertical-align:middle}.wrap.llms-reporting #llms-sendwp-connect,.wrap.lifterlms-settings #llms-sendwp-connect,.wrap.llms-status #llms-sendwp-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-sendwp-connect .fa,.wrap.lifterlms-settings #llms-sendwp-connect .fa,.wrap.llms-status #llms-sendwp-connect .fa{margin-right:4px}@media only screen and (min-width: 782px){.wrap.lifterlms-settings .llms-subheader{height:40px;position:sticky;top:32px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -20px 20px -22px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:10px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -20px 20px -22px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:10px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -20px 20px -22px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:10px}}.wrap.llms-dashboard .llms-inside-wrap{padding-top:30px}.wrap.llms-dashboard #poststuff h2{padding:12px 20px}.wrap.llms-dashboard .llms-dashboard-activity h2{font-size:20px;font-weight:700;line-height:1.5;margin-top:0;text-align:center}.wrap.llms-dashboard .postbox{background-color:#fff;border:none;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}.wrap.llms-dashboard .postbox .postbox-header{border-bottom-color:#efefef}.wrap.llms-dashboard .postbox .inside{padding:20px}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p{text-align:left}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions{padding-top:0}.wrap.llms-dashboard #llms_dashboard_addons p{text-align:center}.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary{display:inline-block;margin-top:15px}.wrap.llms-dashboard #llms_dashboard_quick_links ul{list-style:disc;margin:5px 0 0 20px}.wrap.llms-dashboard #llms_dashboard_quick_links ul li{font-size:15px;line-height:1.5}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{display:grid;grid-template-columns:1fr;grid-gap:30px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a{display:inline-block}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3{margin:0 0 10px 0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul{margin-bottom:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist{list-style:none;margin-left:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa{text-align:center;width:16px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check{color:#008a20}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times{color:#d63638}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action{display:block;text-align:center}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{grid-template-columns:1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3{margin:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons{color:#aaa}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{grid-template-columns:1fr 1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_blog ul,.wrap.llms-dashboard #llms_dashboard_podcast ul{margin:0}.wrap.llms-dashboard #llms_dashboard_blog ul li,.wrap.llms-dashboard #llms_dashboard_podcast ul li{margin:0 0 15px 0}.wrap.llms-dashboard #llms_dashboard_blog ul li a,.wrap.llms-dashboard #llms_dashboard_podcast ul li a{display:block}.wrap.llms-dashboard #llms_dashboard_blog p,.wrap.llms-dashboard #llms_dashboard_podcast p{margin:15px 0;text-align:center}.wrap.llms-dashboard #llms_dashboard_blog p a,.wrap.llms-dashboard #llms_dashboard_podcast p a{display:inline-block}#llms_dashboard_widget .inside{margin:0;padding-bottom:8px}#llms_dashboard_widget .llms-dashboard-widget-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:12px}#llms_dashboard_widget .activity-block{padding-bottom:8px;border-color:#e8e8e8}#llms_dashboard_widget h3{margin-bottom:0}#llms_dashboard_widget .llms-charts-wrapper{display:none}#llms_dashboard_widget .llms-widget-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:8px;width:100%;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding:4px 0}#llms_dashboard_widget .llms-widget-row:before,#llms_dashboard_widget .llms-widget-row:after{display:none}#llms_dashboard_widget .llms-widget-1-4{padding:0;-webkit-box-flex:1;-ms-flex:1;flex:1}#llms_dashboard_widget .llms-widget{padding:8px 8px 12px;margin:0;border-radius:6px;border:1px solid #e8e8e8;-webkit-box-shadow:0px 2px 4px #f6f7f7;box-shadow:0px 2px 4px #f6f7f7;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}#llms_dashboard_widget .llms-label{font-size:14px;width:100%;-ms-flex-item-align:start;align-self:flex-start;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#llms_dashboard_widget .llms-widget-content{font-size:20px;margin:0}#llms_dashboard_widget .llms-widget-info-toggle{display:none}#llms_dashboard_widget a{border:0}#llms_dashboard_widget .subsubsub{color:#dcdcde}.llms-dashboard-widget-feed{margin:0 -12px;padding:0;background-color:#f6f7f7}.llms-dashboard-widget-feed li{margin:0;padding:8px 12px;border-bottom:1px solid #e8e8e8}.llms-dashboard-widget-feed span{display:block}.llms-remarks .llms-remarks-field{height:120px;width:100%}.llms-remarks input[type=number]{width:60px}button[name=llms_quiz_attempt_action] .save{display:none}button[name=llms_quiz_attempt_action].grading .default{display:none}button[name=llms_quiz_attempt_action].grading .save{display:inline}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:left;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:right}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-right:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-right:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:0 0;background-image:radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 0 5px 5px}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-left:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";left:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}/*! +#poststuff .llms-metabox:before,#poststuff .llms-metabox:after,.llms-form-fields:before,.llms-metabox .llms-access-plans:before,.llms-collapsible .llms-collapsible-body:before,.llms-collapsible .llms-collapsible-header:before,.llms-collapsible:before,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{content:" ";display:table}#poststuff .llms-metabox:after,.llms-form-fields:after,.llms-metabox .llms-access-plans:after,.llms-collapsible .llms-collapsible-body:after,.llms-collapsible .llms-collapsible-header:after,.llms-collapsible:after{clear:both}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{left:-7px;position:relative}.llms-button-primary{background:#466dd8}.llms-button-primary:hover,.llms-button-primary.clicked{background:#2b55cb}.llms-button-primary:focus,.llms-button-primary:active{background:#6888df}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}#adminmenu .toplevel_page_lifterlms .wp-menu-image img{padding-top:6px;width:20px}#adminmenu .toplevel_page_lifterlms a[href*="page=llms-add-ons"],#adminmenu .opensub .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu .wp-submenu li.current a[href*="page=llms-add-ons"],#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a[href*="page=llms-add-ons"]{color:#ff922b}.last-col{float:right;padding-right:0 !important}.last-col:after{clear:both}@media(max-width: 767px){.m-all{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-right:0}.m-1of2{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.m-1of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.m-2of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.m-1of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.m-3of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.m-right{text-align:center}.m-center{text-align:center}.m-left{text-align:center}.d-right{text-align:right}.d-center{text-align:center}.d-left{text-align:left}}@media(min-width: 768px)and (max-width: 1029px){.t-all{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-right:0}.t-1of2{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.t-1of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.t-2of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.t-1of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.t-3of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.t-1of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.t-2of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.t-3of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.t-4of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-right{text-align:right}.d-center{text-align:center}.d-left{text-align:left}}@media(min-width: 1030px){.d-all{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding-right:0}.d-1of2{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.d-1of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:33.33%}.d-2of3{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:66.66%}.d-1of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:25%}.d-3of4{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:75%}.d-1of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:20%}.d-2of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:40%}.d-3of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:60%}.d-4of5{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:80%}.d-1of6{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:16.6666666667%}.d-1of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:14.2857142857%}.d-2of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:28.5714286%}.d-3of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:42.8571429%}.d-4of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:57.1428572%}.d-5of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:71.4285715%}.d-6of7{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:85.7142857%}.d-1of8{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:12.5%}.d-1of9{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:11.1111111111%}.d-1of10{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:10%}.d-1of11{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:9.0909090909%}.d-1of12{float:left;padding-right:.75em;-webkit-box-sizing:border-box;box-sizing:border-box;width:8.33%}.d-right{text-align:right}.d-center{text-align:center}.d-left{text-align:left}}#llms-form-wrapper .llms-search-form-wrapper{border-bottom:1px solid #999;margin:20px 0}#llms-form-wrapper #llms_analytics_search{border:none !important;text-shadow:none !important;border:none !important;outline:none !important;-webkit-box-shadow:none !important;box-shadow:none !important;margin:0 !important;color:#fefefe !important;background:#466dd8 !important;border-radius:0;-webkit-transition:.5s;transition:.5s}#llms-form-wrapper #llms_analytics_search:hover{background:#0185a3 !important}#llms-form-wrapper #llms_analytics_search:active{background:#33b1cb !important}#llms-skip-setup-form .llms-admin-link{background:none !important;border:none;padding:0 !important;color:#0074a2;cursor:pointer}#llms-skip-setup-form .llms-admin-link:hover{color:#2ea2cc}#llms-skip-setup-form .llms-admin-link:focus{color:#124964}.llms-switch{position:relative}.llms-switch .llms-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.llms-switch .llms-toggle+label{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;position:relative;cursor:pointer;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.llms-switch input.llms-toggle-round+label{border:2px solid #6c7781;border-radius:10px;height:20px;width:36px}.llms-switch input.llms-toggle-round+label:before,.llms-switch input.llms-toggle-round+label:after{-webkit-box-sizing:border-box;box-sizing:border-box;content:"";display:block;position:absolute;-webkit-transition:background .4s;transition:background .4s}.llms-switch input.llms-toggle-round:checked+label{border-color:#11a0d2;background-color:#11a0d2}.llms-switch input.llms-toggle-round+label:after{height:12px;left:2px;top:2px;background-color:#6c7781;border-radius:50%;-webkit-transition:margin .4s;transition:margin .4s;width:12px;z-index:3}.llms-switch input.llms-toggle-round:checked+label:after{background-color:#fefefe;margin-left:16px}.llms-switch input.llms-toggle-round+label:before{height:8px;top:4px;border:1px solid #6c7781;border-radius:50%;right:4px;width:8px;z-index:2}.llms-switch input.llms-toggle-round:checked+label:before{border-color:#fefefe;border-radius:0;left:6px;right:auto;width:2px}#llms-profile-fields{margin:50px 0}#llms-profile-fields .llms-form-field{padding-left:0}#llms-profile-fields label{display:block;font-weight:bold;padding:8px 0 2px}#llms-profile-fields .type-checkbox .type-checkbox label{display:initial;font-weight:initial;padding:0}#llms-profile-fields .type-checkbox .type-checkbox input{display:inline-block;margin-bottom:0;width:1rem}#llms-profile-fields select{max-width:100%}a.llms-voucher-delete{background:#e5554e;color:#fefefe;display:block;padding:4px 2px;text-decoration:none;-webkit-transition:ease .3s all;transition:ease .3s all}a.llms-voucher-delete:hover{background:#af3a26}.llms-voucher-codes-wrapper table,.llms-voucher-redemption-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td,.llms-voucher-redemption-wrapper table th,.llms-voucher-redemption-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead,.llms-voucher-redemption-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table thead th,.llms-voucher-redemption-wrapper table thead th{padding:10px 10px}.llms-voucher-codes-wrapper table tr,.llms-voucher-redemption-wrapper table tr{counter-increment:row-counter}.llms-voucher-codes-wrapper table tr:nth-child(even),.llms-voucher-redemption-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td,.llms-voucher-redemption-wrapper table tr td{padding:5px}.llms-voucher-codes-wrapper table tr td:first-child:before,.llms-voucher-redemption-wrapper table tr td:first-child:before{content:counter(row-counter)}.llms-voucher-codes-wrapper table{width:100%;border-collapse:collapse}.llms-voucher-codes-wrapper table th,.llms-voucher-codes-wrapper table td{border:none}.llms-voucher-codes-wrapper table thead{background-color:#466dd8;color:#fff}.llms-voucher-codes-wrapper table tr:nth-child(even){background-color:#f1f1f1}.llms-voucher-codes-wrapper table tr td span{display:inline-block;min-width:30px}.llms-voucher-codes-wrapper button{cursor:pointer}.llms-voucher-codes-wrapper .llms-voucher-delete{float:right;margin-right:15px}.llms-voucher-codes-wrapper .llms-voucher-uses{width:50px}.llms-voucher-codes-wrapper .llms-voucher-add-codes{float:right}.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text]{width:30px}.llms-voucher-export-wrapper .llms-voucher-export-type{width:100%}.llms-voucher-export-wrapper .llms-voucher-export-type p{margin:0 0 0 15px}.llms-voucher-export-wrapper .llms-voucher-email-wrapper{width:100%;margin:25px 0}.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text]{width:100%}.llms-voucher-export-wrapper .llms-voucher-email-wrapper p{margin:0}.llms-voucher-export-wrapper>button{float:right}.postbox .inside{overflow:auto}.llms-widget{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:20px;padding:20px;position:relative;width:100%}.llms-widget.alt{border:1px solid #ccc;background-color:#efefef;margin-bottom:10px}.llms-widget.alt .llms-label{color:#777;font-size:14px;margin-bottom:10px;padding-bottom:5px}.llms-widget.alt h2{color:#444;font-weight:300}.llms-widget a{border-bottom:1px dotted #466dd8;display:inline-block;text-decoration:none}.llms-widget a:hover{border-bottom:1px dotted #2b55cb}.llms-widget .llms-widget-content{margin:.67em 0;color:#466dd8;font-size:2.4em;font-weight:700;line-height:1;word-break:break-all}.llms-widget h2{font-size:1.8em}.llms-widget .llms-label{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:18px;font-weight:400;margin:0 0 10px 0;text-align:center}.llms-widget .llms-chart{width:100%;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-widget mark.yes{background-color:#7ad03a}.llms-widget .llms-subtitle{margin-bottom:0}.llms-widget .spinner{float:none;left:50%;margin:-10px 0 0 -10px;position:absolute;top:50%;z-index:2}.llms-widget.is-loading:before{background:#fefefe;bottom:0;content:"";left:0;opacity:.9;position:absolute;right:0;top:0;z-index:1}.llms-widget.is-loading .spinner{visibility:visible}.llms-widget td[colspan="2"]{padding-left:0}.llms-widget tr.llms-disabled-field{opacity:.5;pointer-events:none}.llms-widget-1-3,.llms-widget-1-4,.llms-widget-1-5{text-align:center}.llms-widget .llms-widget-info-toggle{color:#aaa;cursor:pointer;font-size:16px;position:absolute;right:20px;top:20px}.llms-widget.info-showing .llms-widget-info{display:block}.llms-widget-info{background:#444;color:#fefefe;bottom:-50px;display:none;padding:15px;position:absolute;text-align:center;left:10px;right:15px;z-index:3}.llms-widget-info:before{content:"";border:12px solid rgba(0,0,0,0);border-bottom-color:#444;left:50%;margin-left:-12px;position:absolute;top:-24px}.llms-widget-info p{margin:0}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .no-padding{padding:0 !important}svg.icon{height:24px;width:24px;display:inline-block;fill:currentColor;vertical-align:baseline}button svg.icon{height:18px;width:18px;margin:4px -4px 0 4px;-webkit-filter:drop-shadow(0 1px #eee);filter:drop-shadow(0 1px #eee);float:right}svg.icon.menu-icon{height:20px;width:20px;display:inline-block;fill:currentColor;vertical-align:text-bottom;margin-right:10px}svg.icon.tree-icon{height:13px;width:13px;vertical-align:middle}svg.icon.section-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon{height:16px;width:16px;vertical-align:text-bottom}svg.icon.button-icon-attr{height:10px;width:10px;vertical-align:middle}svg.icon.list-icon{height:12px;width:12px;vertical-align:middle}svg.icon.list-icon.on{color:#466dd8}svg.icon.list-icon.off{color:#444}svg.icon.detail-icon{height:16px;width:16px;vertical-align:text-bottom;cursor:default}svg.icon.detail-icon.on{color:#466dd8}svg.icon.detail-icon.off{color:#ccc}svg.icon-ion-arrow-up{-webkit-transform:rotate(90deg);transform:rotate(90deg)}svg use{pointer-events:none}#side-sortables .tab-content{padding:0}.llms-mb-container .tab-content{display:none;background-color:#fff;padding:0 20px}.llms-mb-container .tab-content ul:not(.select2-selection__rendered){margin:0 0 15px 0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li{padding:20px 0;margin:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.select:not([class*=d-]){width:100%}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li:last-child{border:0;padding-bottom:0}.llms-mb-container .tab-content ul:not(.select2-selection__rendered)>li.top{border-bottom:0;padding-bottom:0}.llms-mb-container .tab-content .full-width{width:100%}.llms-mb-container .tab-content #wp-content-editor-tools{background:none}.llms-mb-container .tab-content.llms-active{display:inherit}.llms-mb-container .tab-content .no-border{border-bottom:0px}.topModal{display:none;position:relative;border:4px solid gray;background:#fff;z-index:1000001;padding:2px;max-width:500px;margin:34px auto 0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-color:#fff;border-radius:2px;border:1px solid #ddd}.topModalClose{float:right;cursor:pointer;margin-right:10px;margin-top:10px}.topModalContainer{display:none;overflow:auto;overflow-y:hidden;position:fixed;top:0 !important;right:0;bottom:0;left:0;-webkit-overflow-scrolling:touch;width:auto !important;margin-left:0 !important;background-color:rgba(0,0,0,0) !important;z-index:100002 !important}.topModalBackground{display:none;background:#000;position:fixed;height:100%;width:100%;top:0 !important;left:0;margin-left:0 !important;z-index:100002 !important;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:auto;overflow-y:hidden}body.modal-open{overflow:hidden}.llms-modal-header{border-top-right-radius:1px;border-top-left-radius:1px;background:#466dd8;color:#eee;padding:10px 15px;font-size:18px}#llms-icon-modal-close{width:16px;height:16px;fill:#fefefe}.llms-modal-content{padding:20px}.llms-modal-content h3{margin-top:0}.llms-modal-form h1{margin-top:0}.llms-modal-form input[type=text]{width:100%}.llms-modal-form textarea,.llms-modal-form input[type=text],.llms-modal-form input[type=password],.llms-modal-form input[type=file],.llms-modal-form input[type=datetime],.llms-modal-form input[type=datetime-local],.llms-modal-form input[type=date],.llms-modal-form input[type=month],.llms-modal-form input[type=time],.llms-modal-form input[type=week],.llms-modal-form input[type=number],.llms-modal-form input[type=email],.llms-modal-form input[type=url],.llms-modal-form input[type=search],.llms-modal-form input[type=tel],.llms-modal-form input[type=color]{padding:0 .4em 0 .4em;margin-bottom:2em;vertical-align:middle;border-radius:3px;min-width:50px;max-width:635px;width:100%;min-height:32px;background-color:#fff;border:1px solid #ccc;margin:0 0 24px 0;outline:none;-webkit-transition:border .3s ease-in-out 0s;transition:border .3s ease-in-out 0s}.llms-modal-form textarea:focus,.llms-modal-form input[type=text]:focus,.llms-modal-form input[type=password]:focus,.llms-modal-form input[type=file]:focus,.llms-modal-form input[type=datetime]:focus,.llms-modal-form input[type=datetime-local]:focus,.llms-modal-form input[type=date]:focus,.llms-modal-form input[type=month]:focus,.llms-modal-form input[type=time]:focus,.llms-modal-form input[type=week]:focus,.llms-modal-form input[type=number]:focus,.llms-modal-form input[type=email]:focus,.llms-modal-form input[type=url]:focus,.llms-modal-form input[type=search]:focus,.llms-modal-form input[type=tel]:focus,.llms-modal-form input[type=color]:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form textarea{padding:.4em !important;height:100px !important;border-radius:3px;vertical-align:middle;min-height:32px;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box}.llms-modal-form textarea:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single{border-radius:3px;vertical-align:middle;min-height:32px;border:1px solid #ccc;width:100%;background:#fefefe !important;outline:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff;line-height:32px;margin:0 0 24px 0}.llms-modal-form .chosen-container-single .chosen-single:focus{background:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-single div b{margin-top:4px}.llms-modal-form .chosen-search input[type=text]{border:1px solid #ccc}.llms-modal-form .chosen-search input[type=text]:focus{background-color:#fefefe;border:1px solid #466dd8}.llms-modal-form .chosen-container-single .chosen-drop{margin-top:-28px}.llms-modal-form .llms-button-primary,.llms-modal-form .llms-button-secondary{padding:10px 10px;border-radius:0;-webkit-transition:.5s;transition:.5s;-webkit-box-shadow:0 1px 1px #ccc;box-shadow:0 1px 1px #ccc}.llms-modal-form .llms-button-primary.full,.llms-modal-form .llms-button-secondary.full{width:100%}.modal-open .select2-dropdown{z-index:1000005}.button.llms-merge-code-button{vertical-align:middle}.button.llms-merge-code-button svg{margin-right:2px;position:relative;top:4px;width:16px}.button.llms-merge-code-button svg g{fill:currentColor}.llms-mb-container .llms-merge-code-wrapper{float:right;top:-5px}.llms-merge-code-wrapper{display:inline;position:relative}.llms-merge-codes{background:#f7f7f7;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;display:none;left:1px;overflow:hidden;position:absolute;top:30px;width:200px}.llms-merge-codes ul{margin:0;padding:0}.llms-merge-codes li{cursor:pointer;margin:0;padding:4px 8px !important;border-bottom:1px solid #ccc}.llms-merge-codes li:hover{color:#23282d;background:#fefefe}.llms-merge-codes.active{display:block;z-index:777}.llms-nav-tab,.llms-nav-tab-filters{display:block;width:100%}form.llms-nav-tab-filters.full-width{width:100%}form.llms-nav-tab-filters.full-width label{display:inline-block;width:10%;text-align:left}form.llms-nav-tab-filters.full-width .select2-container{width:85% !important}.llms-nav-tab-settings{display:block;width:100%}#llms-form-wrapper .llms-select{width:100%;margin-bottom:20px}#llms-form-wrapper .llms-checkbox{display:inline-block;width:100%;text-align:left}#llms-form-wrapper .llms-filter-options{width:100%}#llms-form-wrapper .llms-date-select{width:100%;display:inline-block;margin-bottom:20px}#llms-form-wrapper .llms-date-select input[type=text]{width:100%}ul.tabs li{display:block}@media only screen and (min-width: 481px){#llms-form-wrapper .llms-checkbox{width:33%}}@media only screen and (min-width: 768px){ul.tabs li{display:inline-block}.llms-nav-tab{display:inline-block;width:33%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{width:50%;max-width:500px}#llms-form-wrapper .llms-filter-options{width:50%;max-width:500px}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-right:5%}.llms-widget input[type=text],.llms-widget input[type=password],.llms-widget input[type=datetime],.llms-widget input[type=datetime-local],.llms-widget input[type=date],.llms-widget input[type=month],.llms-widget input[type=time],.llms-widget input[type=week],.llms-widget input[type=number],.llms-widget input[type=email],.llms-widget input[type=url],.llms-widget input[type=search],.llms-widget input[type=tel],.llms-widget input[type=color],.llms-widget select,.llms-widget textarea{width:50%}.llms-widget input[type=text].medium,.llms-widget input[type=password].medium,.llms-widget input[type=datetime].medium,.llms-widget input[type=datetime-local].medium,.llms-widget input[type=date].medium,.llms-widget input[type=month].medium,.llms-widget input[type=time].medium,.llms-widget input[type=week].medium,.llms-widget input[type=number].medium,.llms-widget input[type=email].medium,.llms-widget input[type=url].medium,.llms-widget input[type=search].medium,.llms-widget input[type=tel].medium,.llms-widget input[type=color].medium,.llms-widget select.medium,.llms-widget textarea.medium{width:30%}.llms-widget input[type=text].small,.llms-widget input[type=password].small,.llms-widget input[type=datetime].small,.llms-widget input[type=datetime-local].small,.llms-widget input[type=date].small,.llms-widget input[type=month].small,.llms-widget input[type=time].small,.llms-widget input[type=week].small,.llms-widget input[type=number].small,.llms-widget input[type=email].small,.llms-widget input[type=url].small,.llms-widget input[type=search].small,.llms-widget input[type=tel].small,.llms-widget input[type=color].small,.llms-widget select.small,.llms-widget textarea.small{width:20%}.llms-widget input[type=text].tiny,.llms-widget input[type=password].tiny,.llms-widget input[type=datetime].tiny,.llms-widget input[type=datetime-local].tiny,.llms-widget input[type=date].tiny,.llms-widget input[type=month].tiny,.llms-widget input[type=time].tiny,.llms-widget input[type=week].tiny,.llms-widget input[type=number].tiny,.llms-widget input[type=email].tiny,.llms-widget input[type=url].tiny,.llms-widget input[type=search].tiny,.llms-widget input[type=tel].tiny,.llms-widget input[type=color].tiny,.llms-widget select.tiny,.llms-widget textarea.tiny{width:10%}}@media only screen and (min-width: 1030px){.llms-nav-tab{display:inline-block;width:33.333%}.llms-nav-tab-settings{display:inline-block;width:25%}#llms-form-wrapper .llms-select{display:inline-block;width:47.5%}#llms-form-wrapper .llms-select:first-child{margin-right:5%}#llms-form-wrapper .llms-filter-options{display:inline-block;width:47.5%}#llms-form-wrapper .llms-filter-options.date-filter{margin-right:5%}#llms-form-wrapper .llms-filter-options .llms-date-select{margin-bottom:0}#llms-form-wrapper .llms-date-select{width:47.5%}#llms-form-wrapper .llms-date-select:first-child{margin-right:5%}.llms-widget-row:before,.llms-widget-row:after{content:" ";display:table}.llms-widget-row:after{clear:both}.llms-widget-row .llms-widget-1-5{vertical-align:top;width:20%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-4{vertical-align:top;width:25%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-3{width:33.3%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px}.llms-widget-row .llms-widget-1-2{width:50%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 5px;vertical-align:top}}@media only screen and (min-width: 1240px){.llms-nav-tab-filters,.llms-nav-tab-settings{float:left;width:12.5%}}.wrap.lifterlms{margin-top:0}.llms-header{background-color:#fff;margin:0 0 0 -20px;padding:20px 10px;position:relative;z-index:1}.llms-header .llms-inside-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 10px}.llms-header .lifterlms-logo{-webkit-box-flex:0;-ms-flex:0 0 190px;flex:0 0 190px;max-height:52px;margin-right:10px}.llms-header .llms-meta{-ms-flex-item-align:center;align-self:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:16px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:1.5}.llms-header .llms-meta .llms-version{background-color:#1d2327;color:#fff;border-radius:999px;font-size:13px;font-weight:700;padding:6px 12px}.llms-header .llms-meta a{display:inline-block}.llms-header .llms-meta .llms-license{border-right:1px solid #ccc;font-weight:700;margin-right:12px;padding-right:12px}.llms-header .llms-meta .llms-license a{text-decoration:none}.llms-header .llms-meta .llms-license a:before{content:"";display:inline-block;font:400 16px/1 dashicons;left:0;padding-right:3px;position:relative;text-decoration:none;vertical-align:text-bottom}.llms-header .llms-meta .llms-license a.llms-license-none{color:#888}.llms-header .llms-meta .llms-license a.llms-license-none:before{content:""}.llms-header .llms-meta .llms-license a.llms-license-active{color:#008a20}.llms-header .llms-meta .llms-license a.llms-license-active:before{content:""}.llms-header .llms-meta .llms-support{font-weight:700}.llms-header .llms-meta .llms-support a{color:#1d2327;text-decoration:none}.llms-subheader{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-left:-20px;padding:10px 20px;width:100%;z-index:1}.llms-subheader h1{font-weight:700;padding:0}.llms-subheader h1 a{color:inherit;text-decoration:none}#post_course_difficulty{min-width:200px}#_video-embed,#_audio-embed{width:100%}.clear{clear:both;width:100%}hr{background-color:#ccc;border:none;height:1px;margin:30px 0;padding:0}.llms_certificate_default_image,.llms_certificate_image{width:300px}.llms_achievement_default_image,.llms_achievement_image{width:120px}div[id^=lifterlms-] .inside{overflow:visible}.notice.llms-admin-notice{background-color:#fff;border:1px solid #ccd0d4;-webkit-box-shadow:0 1px 4px rgba(0,0,0,.15);box-shadow:0 1px 4px rgba(0,0,0,.15);display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 !important;position:relative}.notice.llms-admin-notice .notice-dismiss{text-decoration:none}.notice.llms-admin-notice.notice-warning{border-left:4px solid #f8954f}.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon{background-color:#fef4ed}.notice.llms-admin-notice.notice-info{border-left:4px solid #466dd8}.notice.llms-admin-notice.notice-info h3{color:#466dd8}.notice.llms-admin-notice.notice-info .llms-admin-notice-icon{background-color:#edf0fb}.notice.llms-admin-notice.notice-success{border-left:4px solid #18a957}.notice.llms-admin-notice.notice-success h3{color:#18a957}.notice.llms-admin-notice.notice-success .llms-admin-notice-icon{background-color:#e8f6ee}.notice.llms-admin-notice.notice-error{border-left:4px solid #df1642}.notice.llms-admin-notice.notice-error h3{color:#9c0f2e}.notice.llms-admin-notice.notice-error .llms-admin-notice-icon{background-color:#fce8ec}.notice.llms-admin-notice .llms-admin-notice-icon{background-image:url(../../assets/images/lifterlms-icon-color.png);background-position:center center;background-repeat:no-repeat;background-size:30px;min-width:70px}.notice.llms-admin-notice .llms-admin-notice-content{color:#111;padding:20px}.notice.llms-admin-notice h3{font-size:18px;font-weight:700;line-height:25px;margin:0 0 15px 0}.notice.llms-admin-notice button,.notice.llms-admin-notice .llms-button-primary{display:inline-block}.notice.llms-admin-notice p{font-size:14px;line-height:22px;margin:0 0 15px 0;max-width:65em;padding:0}.notice.llms-admin-notice p:last-of-type{margin-bottom:0}.llms-button-action.small .dashicons,.llms-button-danger.small .dashicons,.llms-button-primary.small .dashicons,.llms-button-secondary.small .dashicons{font-size:13px;height:13px;width:13px}.llms-button-action:hover,.llms-button-danger:hover,.llms-button-primary:hover,.llms-button-secondary:hover{-webkit-box-shadow:none;box-shadow:none}a.llms-view-as{line-height:2;margin-right:8px}.llms-image-field-preview{max-height:80px;vertical-align:middle;width:auto}.llms-image-field-remove.hidden{display:none}.llms-log-viewer{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);margin:20px 0;padding:25px}.llms-log-viewer pre{font-family:monospace;margin:0;padding:0;white-space:pre-wrap}.llms-status--tools .llms-table{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.llms-status--tools .llms-table td,.llms-status--tools .llms-table th{padding:10px;vertical-align:top}.llms-status--tools .llms-table th{width:28%}.llms-status--tools .llms-table p{margin:0 0 10px}.llms-error{color:#e5554e;font-style:italic}.llms-rating-stars{color:#ffb900;text-decoration:none}@media screen and (max-width: 782px){.llms-header{top:46px}.llms-header .llms-inside-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px}.llms-header .llms-inside-wrap .lifterlms-logo{-ms-flex-item-align:center;align-self:center;-webkit-box-flex:inherit;-ms-flex:inherit;flex:inherit;max-height:initial;max-width:200px}.llms-header .llms-inside-wrap .llms-meta{-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px}}.llms-table-wrap{position:relative}.llms-table-header{padding:0}.llms-table-header:before,.llms-table-header:after{content:" ";display:table}.llms-table-header:after{clear:both}.llms-table-header h2{font-size:20px;padding:0;display:inline-block;line-height:1.5;margin:0 0 20px 0;vertical-align:middle}.llms-table-header .llms-table-search,.llms-table-header .llms-table-filters{float:right;padding-left:10px}.llms-table-header .llms-table-search input{margin:0;padding:0 8px}.llms-table{border:1px solid #c3c4c7;border-collapse:collapse;width:100%}.llms-table a:not(.small){color:#466dd8}.llms-table a:not(.small):hover{color:#2b55cb}.llms-table td,.llms-table th{border-bottom:1px solid #c3c4c7;padding:10px 12px;text-align:center}.llms-table td.expandable.closed,.llms-table th.expandable.closed{display:none}.llms-table td .llms-button-primary,.llms-table td .llms-button-secondary,.llms-table td .llms-button-action,.llms-table td .llms-button-danger,.llms-table th .llms-button-primary,.llms-table th .llms-button-secondary,.llms-table th .llms-button-action,.llms-table th .llms-button-danger{display:inline-block}.llms-table tr.llms-quiz-pending td{font-weight:700}.llms-table thead th,.llms-table tfoot th{background-color:#fff;font-weight:700}.llms-table thead th a.llms-sortable,.llms-table tfoot th a.llms-sortable{padding-right:16px;position:relative;text-decoration:none;width:100%}.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc{opacity:1}.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc{opacity:0}.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc{opacity:1}.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc{opacity:0}.llms-table thead th a.llms-sortable .dashicons,.llms-table tfoot th a.llms-sortable .dashicons{color:#444;font-size:16px;height:16px;opacity:0;position:absolute;width:16px}.llms-table tfoot th{border-bottom:none}.llms-table tfoot th .llms-table-export{float:left}.llms-table tfoot th .llms-table-export .llms-table-progress{background:#efefef;display:none;margin-left:8px;vertical-align:middle;width:100px}.llms-table tfoot th .llms-table-pagination{float:right}.llms-table.zebra tbody tr:nth-child(even) th,.llms-table.zebra tbody tr:nth-child(even) td{background-color:#fff}.llms-table.zebra tbody tr:nth-child(odd) th,.llms-table.zebra tbody tr:nth-child(odd) td{background-color:#f6f7f7}.llms-table.text-left td,.llms-table.text-left th{text-align:left}.llms-table.size-large td,.llms-table.size-large th{font-size:14px;padding:10px 12px}.llms-table .llms-drag-handle{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-table .llms-action-icon{color:#777;text-decoration:none}.llms-table .llms-action-icon .tooltip{cursor:pointer}.llms-table .llms-action-icon:hover{color:#466dd8}.llms-table .llms-action-icon.danger:hover{color:#e5554e}.llms-table .llms-table-page-count{font-size:12px;padding:0 5px}.llms-table-progress{text-align:center}.llms-table-progress .llms-table-progress-bar{background:#eee;border-radius:10px;height:16px;overflow:hidden;position:relative}.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner{background:#466dd8;height:100%;-webkit-transition:width .2s ease;transition:width .2s ease}.llms-table-progress .llms-table-progress-text{color:#466dd8;font-size:12px;font-weight:700;line-height:16px}.llms-table.llms-gateway-table .status .fa,.llms-table.llms-integrations-table .status .fa{color:#466dd8;font-size:22px}.llms-table.llms-gateway-table .sort,.llms-table.llms-integrations-table .sort{cursor:move;text-align:center;width:10px}.llms-gb-table-notifications th,.llms-gb-table-notifications td{text-align:left}.llms-order-note .llms-order-note-content{background:#efefef;margin-bottom:10px;padding:10px;position:relative}.llms-order-note .llms-order-note-content:after{border-style:solid;border-color:#efefef rgba(0,0,0,0);border-width:10px 10px 0 0;bottom:-10px;content:"";display:block;height:0;left:20px;position:absolute;width:0}.llms-order-note .llms-order-note-content p{font-size:13px;margin:0;line-height:1.5}.llms-order-note .llms-order-note-meta{color:#999;font-size:11px;margin-left:10px}.llms-mb-list label{font-size:15px;font-weight:700;line-height:1.5;display:block;width:100%}.llms-mb-list .description{margin-bottom:8px}.llms-mb-list .input-full{width:100%}#poststuff .llms-metabox h2,#poststuff .llms-metabox h3,#poststuff .llms-metabox h6{margin:0;padding:0}#poststuff .llms-metabox h2{font-size:18px;font-weight:700}#poststuff .llms-metabox h3{color:#777;font-size:16px}#poststuff .llms-metabox h4{border-bottom:1px solid #e5e5e5;padding:0;margin:0}#poststuff .llms-metabox .llms-transaction-test-mode{background:#ffffd7;font-style:italic;left:0;padding:2px;position:absolute;right:0;top:0;text-align:center}#poststuff .llms-metabox a.llms-editable,#poststuff .llms-metabox .llms-metabox-icon,#poststuff .llms-metabox button.llms-editable{color:#999;text-decoration:none}#poststuff .llms-metabox a.llms-editable:hover,#poststuff .llms-metabox .llms-metabox-icon:hover,#poststuff .llms-metabox button.llms-editable:hover{color:#466dd8}#poststuff .llms-metabox button.llms-editable{border:none;background:none;cursor:pointer;padding:0;vertical-align:top}#poststuff .llms-metabox h4 button.llms-editable{float:right}#poststuff .llms-metabox .llms-table{margin-top:10px}.llms-metabox-section{background:#fff;margin-top:25px;position:relative}.llms-metabox-section.no-top-margin{margin-top:0}.llms-metabox-section .llms-metabox-field{margin:15px 0;position:relative}.llms-metabox-section .llms-metabox-field label{color:#777;display:block;margin-bottom:5px;font-weight:500;vertical-align:baseline}.llms-metabox-section .llms-metabox-field select,.llms-metabox-section .llms-metabox-field textarea,.llms-metabox-section .llms-metabox-field input[type=text],.llms-metabox-section .llms-metabox-field input[type=number]{width:100%}.llms-metabox-section .llms-metabox-field input.md-text{width:105px}.llms-metabox-section .llms-metabox-field input.sm-text{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input{width:95px}.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input{width:45px}.llms-metabox-section .llms-metabox-field .llms-datetime-field em{font-style:normal;padding:0 3px}.llms-collapsible{border:1px solid #e5e5e5;position:relative;margin-top:0;margin-bottom:-1px}.llms-collapsible:last-child{margin-bottom:0}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down{display:none}.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header{padding:10px}.llms-collapsible .llms-collapsible-header h3{color:#777;margin:0;font-size:16px}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:inline}.llms-collapsible .llms-collapsible-header .dashicons-arrow-up{display:none}.llms-collapsible .llms-collapsible-header a{text-decoration:none}.llms-collapsible .llms-collapsible-header .dashicons{color:#777;cursor:pointer;-webkit-transition:color .4s ease;transition:color .4s ease}.llms-collapsible .llms-collapsible-header .dashicons:hover{color:#466dd8}.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover{color:#e5554e}.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger,.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger:hover{color:#ff922b}.llms-collapsible .llms-collapsible-body{display:none;padding:10px}._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove{display:none}._llms_instructors_data.repeater .llms-mb-list{padding:0 5px !important}.post-type-llms_order #post-body-content{display:none}#lifterlms-order-details .handlediv,#lifterlms-order-details .handlediv.button-link,#lifterlms-order-details .postbox-header{display:none}#lifterlms-order-details .inside{padding:20px;margin-top:0}.llms-table tbody tr.llms-txn-failed td{background-color:rgba(229,85,78,.5);border-bottom-color:rgba(229,85,78,.5)}.llms-table tbody tr.llms-txn-refunded td{background-color:rgba(255,165,0,.5);border-bottom-color:rgba(255,165,0,.5)}.llms-txn-refund-form .llms-metabox-section,.llms-manual-txn-form .llms-metabox-section{margin-top:0}.llms-txn-refund-form .llms-metabox-field,.llms-manual-txn-form .llms-metabox-field{text-align:right}.llms-txn-refund-form .llms-metabox-field input[type=number],.llms-manual-txn-form .llms-metabox-field input[type=number]{max-width:100px}.llms-txn-refund-form .llms-metabox-field input[type=text],.llms-manual-txn-form .llms-metabox-field input[type=text]{max-width:340px}.llms-manual-txn-form{background-color:#eaeaea}.llms-manual-txn-form .llms-metabox-section{background-color:#eaeaea}#llms-remaining-edit{display:none}.llms-remaining-edit--content label,.llms-remaining-edit--content span,.llms-remaining-edit--content textarea{display:block}.llms-remaining-edit--content label{margin-bottom:20px}.llms-remaining-edit--content textarea,.llms-remaining-edit--content input{width:100%}.submitbox .llms-mb-section,.llms-award-engagement-submitbox .llms-mb-list{margin-bottom:12px}.submitbox .llms-mb-section:last-of-type,.llms-award-engagement-submitbox .llms-mb-list:last-of-type{margin-bottom:0}.sync-action:before,.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{font:normal 20px/1 dashicons;speak:never;display:inline-block;margin-left:-1px;padding-right:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px;color:#8c8f94}body:not(.admin-color-fresh) .sync-action:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before,body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,body:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{color:currentColor}.submitbox .llms-mb-section.student-info:before,.submitbox .llms-mb-section.post_author_override label:before,.llms-award-engagement-submitbox .llms-mb-list.student-info:before,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before{content:""}.sync-action:before{content:"";color:#fff}.submitbox .llms-mb-section.post_author_override label,.llms-award-engagement-submitbox .llms-mb-list.post_author_override label{display:inline-block;width:auto}.llms-metabox #llms-new-access-plan-model{display:none}.llms-metabox .llms-access-plans{margin-top:10px}.llms-metabox .llms-access-plans>.llms-no-plans-msg{display:none}.llms-metabox .llms-access-plans>.llms-no-plans-msg:last-child{-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5;display:block;text-align:center;padding:10px}.llms-metabox .llms-access-plans.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-metabox .llms-access-plans .llms-spinning{z-index:1}.llms-metabox .llms-access-plans .llms-invalid{border-color:#e5554e}.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning{display:inline}.llms-metabox .llms-access-plans .llms-needs-attention .dashicons-warning.medium-danger{display:inline}.llms-metabox .llms-access-plans .dashicons-warning{display:none}.llms-metabox .llms-access-plan{text-align:left}.llms-metabox .llms-access-plan [data-tip]:before{text-align:center}.llms-metabox .llms-access-plan .llms-plan-link,.llms-metabox .llms-access-plan [data-controller]{display:none}.llms-metabox .llms-access-plan:hover .llms-plan-link,.llms-metabox .llms-access-plan.opened .llms-plan-link{display:inline-block}.llms-metabox .llms-access-plan .llms-metabox-field{margin:5px 0}.llms-metabox .llms-access-plan .llms-required{color:#e5554e;margin-left:3px}.llms-metabox .llms-access-plan .notice{margin-left:0}.llms-metabox-students .llms-table tr .name{text-align:left}.llms-metabox-students .llms-add-student:hover{color:#83c373}.llms-metabox-students .llms-remove-student:hover{color:#e5554e}.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields>li.llms-mb-list{border-bottom:none;padding:0 0 10px}.llms-mb-list.repeater .llms-repeater-rows{position:relative;margin-top:10px;min-height:10px}.llms-mb-list.repeater .llms-repeater-rows.dragging{background:#efefef;-webkit-box-shadow:inset 0 0 0 1px #e5e5e5;box-shadow:inset 0 0 0 1px #e5e5e5}.llms-mb-list.repeater .llms-repeater-row{background:#fff}.llms-mb-list.repeater .llms-mb-repeater-footer{text-align:right;margin-top:20px}.llms-mb-list.repeater .tmce-active .wp-editor-area{color:#32373c}.llms-builder-launcher p{margin-top:0}.llms-builder-launcher ol{margin-top:-6px}.llms-builder-launcher .llms-button-primary{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-list-table .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.wp-list-table .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.wp-list-table .llms-status.llms-active,.wp-list-table .llms-status.llms-completed,.wp-list-table .llms-status.llms-pass,.wp-list-table .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.wp-list-table .llms-status.llms-fail,.wp-list-table .llms-status.llms-failed,.wp-list-table .llms-status.llms-expired,.wp-list-table .llms-status.llms-cancelled,.wp-list-table .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.wp-list-table .llms-status.llms-incomplete,.wp-list-table .llms-status.llms-on-hold,.wp-list-table .llms-status.llms-pending,.wp-list-table .llms-status.llms-pending-cancel,.wp-list-table .llms-status.llms-refunded,.wp-list-table .llms-status.llms-txn-pending,.wp-list-table .llms-status.llms-txn-refunded{color:#664200;background-color:orange}#lifterlms-order-transactions .llms-table tfoot th{text-align:right}.llms-post-table-post-filter{display:inline-block;margin-right:6px;max-width:100%;width:220px}.llms-nav-tab-wrapper{background:#466dd8;margin:20px 0}.llms-nav-tab-wrapper.llms-nav-secondary{background:#e1e1e1}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item{margin:0}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#cdcdcd}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{color:#414141;font-size:15px;padding:8px 14px}.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons{font-size:15px;height:15px;width:15px}.llms-nav-tab-wrapper.llms-nav-text{background:inherit}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items{padding-left:0}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item{background:inherit;color:#646970}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after{display:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after{content:"|";display:inline-block;margin:0 8px 0 6px}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover{background:inherit;color:#466dd8}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link{background:inherit;color:#000;font-weight:600;text-decoration:none}.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link{color:#466dd8;display:inline-block;letter-spacing:0;margin:0;padding:0;text-decoration:underline;text-transform:none}.llms-nav-tab-wrapper.llms-nav-style-tabs{background-color:#1c3987;margin:0;padding-top:8px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item{margin:0 3px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link{border-top-left-radius:4px;border-top-right-radius:4px}.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link{background-color:#fff;color:#466dd8;font-weight:700}.llms-nav-tab-wrapper.llms-nav-style-filters{background-color:#466dd8;border-radius:12px;margin:20px 0;overflow:hidden;padding:0}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-left:0}@media only screen and (min-width: 782px){.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item{float:none}.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link{padding:14px}.llms-nav-tab-wrapper .llms-nav-items{margin:0;padding-left:10px}.llms-nav-tab-wrapper .llms-nav-items:before,.llms-nav-tab-wrapper .llms-nav-items:after{content:" ";display:table}.llms-nav-tab-wrapper .llms-nav-items:after{clear:both}.llms-nav-tab-wrapper .llms-nav-item{margin:0}.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover{background:#466dd8}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{background:#1c3987}.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link{font-weight:400}@media only screen and (min-width: 768px){.llms-nav-tab-wrapper .llms-nav-item{float:left}.llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right{float:right}}.llms-nav-tab-wrapper .llms-nav-link{color:#fff;cursor:pointer;display:block;font-weight:400;font-size:15px;padding:9px 18px;text-align:center;text-decoration:none;-webkit-transition:all .3s ease;transition:all .3s ease}#llms-options-page-contents h2{color:#999;font-weight:500;letter-spacing:2px;border-bottom:1px solid #999}.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0;padding:0}.llms-reporting.wrap .llms-stab-title{color:#1c3987;font-size:36px;font-weight:300;margin-bottom:20px}.llms-reporting.wrap td.id a{text-decoration:none}.llms-reporting.wrap th.id,.llms-reporting.wrap td.id,.llms-reporting.wrap th.name,.llms-reporting.wrap td.name,.llms-reporting.wrap th.registered,.llms-reporting.wrap td.registered,.llms-reporting.wrap th.last_seen,.llms-reporting.wrap td.last_seen,.llms-reporting.wrap th.overall_progress,.llms-reporting.wrap td.overall_progress,.llms-reporting.wrap th.title,.llms-reporting.wrap td.title,.llms-reporting.wrap th.course,.llms-reporting.wrap td.course,.llms-reporting.wrap th.lesson,.llms-reporting.wrap td.lesson{text-align:left}.llms-reporting.wrap td.section-title{background:#eaeaea;text-align:left;font-weight:700;padding:16px 4px}.llms-reporting.wrap td.questions-table{text-align:left}.llms-reporting.wrap td.questions-table .correct,.llms-reporting.wrap td.questions-table .question,.llms-reporting.wrap td.questions-table .selected{text-align:left;max-width:300px}.llms-reporting.wrap td.questions-table .correct img,.llms-reporting.wrap td.questions-table .question img,.llms-reporting.wrap td.questions-table .selected img{height:auto;max-width:64px}.llms-reporting.wrap table.quiz-attempts{margin-bottom:40px}.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary{background:#e1e1e1;border-radius:8px;-webkit-box-shadow:none;box-shadow:none;color:#414141;font-size:13px;font-weight:700;height:auto;padding:8px 14px}.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary,.llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary{margin-bottom:0}.llms-reporting.wrap.tab--enrollments .llms-options-page-contents,.llms-reporting.wrap.tab--sales .llms-options-page-contents{-webkit-box-shadow:none;box-shadow:none;background:none;margin-top:20px;padding:0}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;gap:5px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label{font-weight:700}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input{border:0;font-size:13px;margin:0;padding:0 4px;vertical-align:middle;width:110px}.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input,.llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input{width:100% !important}.llms-reporting.wrap.tab--enrollments .button.small,.llms-reporting.wrap.tab--sales .button.small{height:23px;line-height:23px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters,.llms-reporting.wrap.tab--sales .llms-analytics-filters{display:none}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap{background-color:#fff;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:-20px 10px 20px 10px;padding:20px}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}@media only screen and (min-width: 782px){.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label{display:block;font-weight:700;margin:0 0 5px 0}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered,.llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered{word-wrap:break-word;text-overflow:inherit;white-space:normal}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p,.llms-reporting.wrap.tab--sales .llms-analytics-filters p{margin:0;text-align:right}.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary,.llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary{display:inline-block}.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap{width:160px}.llms-charts-wrapper{background-color:#fff;border:1px solid #dedede;border-radius:12px;-webkit-box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);box-shadow:0px 0px 1px rgba(48,49,51,.05),0px 2px 4px rgba(48,49,51,.1);padding:20px}.llms-reporting-tab h1,.llms-reporting-tab h2,.llms-reporting-tab h3,.llms-reporting-tab h4,.llms-reporting-tab h5,.llms-reporting-tab h6{margin:0}.llms-reporting-tab h1 a,.llms-reporting-tab h2 a,.llms-reporting-tab h3 a,.llms-reporting-tab h4 a,.llms-reporting-tab h5 a,.llms-reporting-tab h6 a{color:#466dd8;text-decoration:none}.llms-reporting-tab h1 a:hover,.llms-reporting-tab h2 a:hover,.llms-reporting-tab h3 a:hover,.llms-reporting-tab h4 a:hover,.llms-reporting-tab h5 a:hover,.llms-reporting-tab h6 a:hover{color:#466dd8}.llms-reporting-tab h2{font-size:22px;line-height:1.5}.llms-reporting-tab h2.llms-table-title{margin-bottom:20px}.llms-reporting-tab h5{font-size:15px;line-height:1.5}.llms-reporting-tab .llms-reporting-body{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header{margin:0}.llms-reporting-tab .llms-reporting-body .llms-gb-tab{padding:30px}.llms-reporting-tab .llms-reporting-body .llms-reporting-header{padding:30px;margin:0}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img{border-radius:50%;display:inline-block;margin-right:10px;overflow:hidden;vertical-align:middle}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img{display:block;max-height:64px;width:auto}.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info{display:inline-block;vertical-align:middle}.llms-reporting-breadcrumbs{margin:0;padding:0}.llms-reporting-breadcrumbs a{color:#466dd8;font-size:15px;text-decoration:none}.llms-reporting-breadcrumbs a:hover{color:#2b55cb}.llms-reporting-breadcrumbs a:after{content:" > ";color:#646970}.llms-reporting-breadcrumbs a:last-child{color:#000;font-weight:700}.llms-reporting-breadcrumbs a:last-child:after{display:none}#llms-students-table .name{text-align:left}.llms-reporting-tab-content{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-reporting-tab-content>header:before,.llms-reporting-tab-content>header:after{content:" ";display:table}.llms-reporting-tab-content>header:after{clear:both}.llms-reporting-tab-content h3{margin-bottom:20px}.llms-reporting-tab-content .llms-reporting-tab-filter{float:right;position:relative;margin-right:.75em;width:180px;top:-3px}.llms-reporting-tab-content .llms-reporting-tab-main{-webkit-box-flex:3;-ms-flex:3;flex:3;max-width:75%}.llms-reporting-tab-content .llms-reporting-tab-side{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:20px}.llms-reporting-tab-content>.llms-table-wrap{-webkit-box-flex:1;-ms-flex:1;flex:1}.llms-reporting-widgets:before,.llms-reporting-widgets:after{content:" ";display:table}.llms-reporting-widgets:after{clear:both}.llms-reporting-widget{border-top:4px solid #466dd8;background:#fafafa;margin-bottom:10px;padding:30px}.llms-reporting-widget:before,.llms-reporting-widget:after{content:" ";display:table}.llms-reporting-widget:after{clear:both}.llms-reporting-widget .fa{color:#999;float:left;font-size:32px;margin-right:10px}.llms-reporting-widget strong{color:#333;font-size:20px;line-height:1.2}.llms-reporting-widget.llms-reporting-student-address strong{line-height:1.1}.llms-reporting-widget sup,.llms-reporting-widget .llms-price-currency-symbol{font-size:75%;position:relative;top:-4px;vertical-align:baseline}.llms-reporting-widget small{font-size:13px}.llms-reporting-widget small.compare{margin-left:5px}.llms-reporting-widget small.compare.positive{color:#83c373}.llms-reporting-widget small.compare.negative{color:#e5554e}.llms-reporting-event{border-left:4px solid #555;background:#fafafa;font-size:11px;line-height:1.2;margin-bottom:.75em;padding:10px}.llms-reporting-event:before,.llms-reporting-event:after{content:" ";display:table}.llms-reporting-event:after{clear:both}.llms-reporting-event.color--blue{border-left-color:#466dd8}.llms-reporting-event.color--green,.llms-reporting-event._enrollment_trigger,.llms-reporting-event._is_complete.yes{border-left-color:#83c373}.llms-reporting-event.color--purple,.llms-reporting-event._status.enrolled{border-left-color:#845ef7}.llms-reporting-event.color--red,.llms-reporting-event._status.expired,.llms-reporting-event._status.cancelled{border-left-color:#e5554e}.llms-reporting-event.color--orange,.llms-reporting-event._achievement_earned,.llms-reporting-event._certificate_earned,.llms-reporting-event._email_sent{border-left-color:#ff922b}.llms-reporting-event time{color:#888}.llms-reporting-event .llms-student-avatar{margin-left:10px;float:right}.llms-reporting-event a{text-decoration:none;color:inherit}@media only screen and (min-width: 782px){.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary{margin-left:0;margin-right:0}}.llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative;list-style-type:none}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 35px 10px 10px;text-decoration:none}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:left;margin:0;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:right;line-height:1}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;right:-12px;top:-2px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 0 0 30px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-left:0}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.wrap.llms-reporting .llms-inside-wrap,.wrap.lifterlms-settings .llms-inside-wrap,.wrap.llms-status .llms-inside-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 auto}.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,.wrap.llms-status .llms-inside-wrap .llms-nav-text{margin:0 auto}.wrap.llms-reporting .llms-subheader .llms-save,.wrap.lifterlms-settings .llms-subheader .llms-save,.wrap.llms-status .llms-subheader .llms-save{-webkit-box-flex:1;-ms-flex:auto;flex:auto;text-align:right}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.15);margin:0 -20px 20px -10px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:0}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover{background:#f0f0f1;color:#222}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fafafa;color:#466dd8;border-top-color:#466dd8}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{font-weight:700}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link{border-top:2px solid rgba(0,0,0,0);padding:14px}.wrap.llms-reporting .llms-setting-group,.wrap.lifterlms-settings .llms-setting-group,.wrap.llms-status .llms-setting-group{background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13);margin:20px auto;padding:20px}.wrap.llms-reporting .llms-setting-group .llms-label,.wrap.lifterlms-settings .llms-setting-group .llms-label,.wrap.llms-status .llms-setting-group .llms-label{border-bottom:1px solid #efefef;font-weight:700;font-size:20px;padding:20px;margin:-20px -20px 20px}.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary{margin-left:10px}.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons{color:#444;cursor:help}.wrap.llms-reporting .llms-setting-group .form-table,.wrap.lifterlms-settings .llms-setting-group .form-table,.wrap.llms-status .llms-setting-group .form-table{margin:0}.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle{margin-top:0}.wrap.llms-reporting .llms-setting-group td[colspan="2"],.wrap.lifterlms-settings .llms-setting-group td[colspan="2"],.wrap.llms-status .llms-setting-group td[colspan="2"]{padding-top:0;padding-left:0}.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,.wrap.llms-status .llms-setting-group tr.llms-disabled-field{opacity:.5;pointer-events:none}.wrap.llms-reporting .llms-setting-group p,.wrap.lifterlms-settings .llms-setting-group p,.wrap.llms-status .llms-setting-group p{font-size:14px}.wrap.llms-reporting .llms-setting-group input[type=text],.wrap.llms-reporting .llms-setting-group input[type=password],.wrap.llms-reporting .llms-setting-group input[type=datetime],.wrap.llms-reporting .llms-setting-group input[type=datetime-local],.wrap.llms-reporting .llms-setting-group input[type=date],.wrap.llms-reporting .llms-setting-group input[type=month],.wrap.llms-reporting .llms-setting-group input[type=time],.wrap.llms-reporting .llms-setting-group input[type=week],.wrap.llms-reporting .llms-setting-group input[type=number],.wrap.llms-reporting .llms-setting-group input[type=email],.wrap.llms-reporting .llms-setting-group input[type=url],.wrap.llms-reporting .llms-setting-group input[type=search],.wrap.llms-reporting .llms-setting-group input[type=tel],.wrap.llms-reporting .llms-setting-group input[type=color],.wrap.llms-reporting .llms-setting-group select,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),.wrap.lifterlms-settings .llms-setting-group input[type=text],.wrap.lifterlms-settings .llms-setting-group input[type=password],.wrap.lifterlms-settings .llms-setting-group input[type=datetime],.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],.wrap.lifterlms-settings .llms-setting-group input[type=date],.wrap.lifterlms-settings .llms-setting-group input[type=month],.wrap.lifterlms-settings .llms-setting-group input[type=time],.wrap.lifterlms-settings .llms-setting-group input[type=week],.wrap.lifterlms-settings .llms-setting-group input[type=number],.wrap.lifterlms-settings .llms-setting-group input[type=email],.wrap.lifterlms-settings .llms-setting-group input[type=url],.wrap.lifterlms-settings .llms-setting-group input[type=search],.wrap.lifterlms-settings .llms-setting-group input[type=tel],.wrap.lifterlms-settings .llms-setting-group input[type=color],.wrap.lifterlms-settings .llms-setting-group select,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),.wrap.llms-status .llms-setting-group input[type=text],.wrap.llms-status .llms-setting-group input[type=password],.wrap.llms-status .llms-setting-group input[type=datetime],.wrap.llms-status .llms-setting-group input[type=datetime-local],.wrap.llms-status .llms-setting-group input[type=date],.wrap.llms-status .llms-setting-group input[type=month],.wrap.llms-status .llms-setting-group input[type=time],.wrap.llms-status .llms-setting-group input[type=week],.wrap.llms-status .llms-setting-group input[type=number],.wrap.llms-status .llms-setting-group input[type=email],.wrap.llms-status .llms-setting-group input[type=url],.wrap.llms-status .llms-setting-group input[type=search],.wrap.llms-status .llms-setting-group input[type=tel],.wrap.llms-status .llms-setting-group input[type=color],.wrap.llms-status .llms-setting-group select,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area){width:50%}.wrap.llms-reporting .llms-setting-group input[type=text].medium,.wrap.llms-reporting .llms-setting-group input[type=password].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,.wrap.llms-reporting .llms-setting-group input[type=date].medium,.wrap.llms-reporting .llms-setting-group input[type=month].medium,.wrap.llms-reporting .llms-setting-group input[type=time].medium,.wrap.llms-reporting .llms-setting-group input[type=week].medium,.wrap.llms-reporting .llms-setting-group input[type=number].medium,.wrap.llms-reporting .llms-setting-group input[type=email].medium,.wrap.llms-reporting .llms-setting-group input[type=url].medium,.wrap.llms-reporting .llms-setting-group input[type=search].medium,.wrap.llms-reporting .llms-setting-group input[type=tel].medium,.wrap.llms-reporting .llms-setting-group input[type=color].medium,.wrap.llms-reporting .llms-setting-group select.medium,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,.wrap.lifterlms-settings .llms-setting-group select.medium,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,.wrap.llms-status .llms-setting-group input[type=text].medium,.wrap.llms-status .llms-setting-group input[type=password].medium,.wrap.llms-status .llms-setting-group input[type=datetime].medium,.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,.wrap.llms-status .llms-setting-group input[type=date].medium,.wrap.llms-status .llms-setting-group input[type=month].medium,.wrap.llms-status .llms-setting-group input[type=time].medium,.wrap.llms-status .llms-setting-group input[type=week].medium,.wrap.llms-status .llms-setting-group input[type=number].medium,.wrap.llms-status .llms-setting-group input[type=email].medium,.wrap.llms-status .llms-setting-group input[type=url].medium,.wrap.llms-status .llms-setting-group input[type=search].medium,.wrap.llms-status .llms-setting-group input[type=tel].medium,.wrap.llms-status .llms-setting-group input[type=color].medium,.wrap.llms-status .llms-setting-group select.medium,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium{width:30%}.wrap.llms-reporting .llms-setting-group input[type=text].small,.wrap.llms-reporting .llms-setting-group input[type=password].small,.wrap.llms-reporting .llms-setting-group input[type=datetime].small,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,.wrap.llms-reporting .llms-setting-group input[type=date].small,.wrap.llms-reporting .llms-setting-group input[type=month].small,.wrap.llms-reporting .llms-setting-group input[type=time].small,.wrap.llms-reporting .llms-setting-group input[type=week].small,.wrap.llms-reporting .llms-setting-group input[type=number].small,.wrap.llms-reporting .llms-setting-group input[type=email].small,.wrap.llms-reporting .llms-setting-group input[type=url].small,.wrap.llms-reporting .llms-setting-group input[type=search].small,.wrap.llms-reporting .llms-setting-group input[type=tel].small,.wrap.llms-reporting .llms-setting-group input[type=color].small,.wrap.llms-reporting .llms-setting-group select.small,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.lifterlms-settings .llms-setting-group input[type=text].small,.wrap.lifterlms-settings .llms-setting-group input[type=password].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,.wrap.lifterlms-settings .llms-setting-group input[type=date].small,.wrap.lifterlms-settings .llms-setting-group input[type=month].small,.wrap.lifterlms-settings .llms-setting-group input[type=time].small,.wrap.lifterlms-settings .llms-setting-group input[type=week].small,.wrap.lifterlms-settings .llms-setting-group input[type=number].small,.wrap.lifterlms-settings .llms-setting-group input[type=email].small,.wrap.lifterlms-settings .llms-setting-group input[type=url].small,.wrap.lifterlms-settings .llms-setting-group input[type=search].small,.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,.wrap.lifterlms-settings .llms-setting-group input[type=color].small,.wrap.lifterlms-settings .llms-setting-group select.small,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,.wrap.llms-status .llms-setting-group input[type=text].small,.wrap.llms-status .llms-setting-group input[type=password].small,.wrap.llms-status .llms-setting-group input[type=datetime].small,.wrap.llms-status .llms-setting-group input[type=datetime-local].small,.wrap.llms-status .llms-setting-group input[type=date].small,.wrap.llms-status .llms-setting-group input[type=month].small,.wrap.llms-status .llms-setting-group input[type=time].small,.wrap.llms-status .llms-setting-group input[type=week].small,.wrap.llms-status .llms-setting-group input[type=number].small,.wrap.llms-status .llms-setting-group input[type=email].small,.wrap.llms-status .llms-setting-group input[type=url].small,.wrap.llms-status .llms-setting-group input[type=search].small,.wrap.llms-status .llms-setting-group input[type=tel].small,.wrap.llms-status .llms-setting-group input[type=color].small,.wrap.llms-status .llms-setting-group select.small,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small{width:20%}.wrap.llms-reporting .llms-setting-group input[type=text].tiny,.wrap.llms-reporting .llms-setting-group input[type=password].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-reporting .llms-setting-group input[type=date].tiny,.wrap.llms-reporting .llms-setting-group input[type=month].tiny,.wrap.llms-reporting .llms-setting-group input[type=time].tiny,.wrap.llms-reporting .llms-setting-group input[type=week].tiny,.wrap.llms-reporting .llms-setting-group input[type=number].tiny,.wrap.llms-reporting .llms-setting-group input[type=email].tiny,.wrap.llms-reporting .llms-setting-group input[type=url].tiny,.wrap.llms-reporting .llms-setting-group input[type=search].tiny,.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,.wrap.llms-reporting .llms-setting-group input[type=color].tiny,.wrap.llms-reporting .llms-setting-group select.tiny,.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,.wrap.lifterlms-settings .llms-setting-group select.tiny,.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,.wrap.llms-status .llms-setting-group input[type=text].tiny,.wrap.llms-status .llms-setting-group input[type=password].tiny,.wrap.llms-status .llms-setting-group input[type=datetime].tiny,.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,.wrap.llms-status .llms-setting-group input[type=date].tiny,.wrap.llms-status .llms-setting-group input[type=month].tiny,.wrap.llms-status .llms-setting-group input[type=time].tiny,.wrap.llms-status .llms-setting-group input[type=week].tiny,.wrap.llms-status .llms-setting-group input[type=number].tiny,.wrap.llms-status .llms-setting-group input[type=email].tiny,.wrap.llms-status .llms-setting-group input[type=url].tiny,.wrap.llms-status .llms-setting-group input[type=search].tiny,.wrap.llms-status .llms-setting-group input[type=tel].tiny,.wrap.llms-status .llms-setting-group input[type=color].tiny,.wrap.llms-status .llms-setting-group select.tiny,.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny{width:10%}@media only screen and (min-width: 782px){.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link{background:#fff}}.wrap.llms-reporting #llms-mailhawk-connect,.wrap.lifterlms-settings #llms-mailhawk-connect,.wrap.llms-status #llms-mailhawk-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-mailhawk-connect .dashicons,.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,.wrap.llms-status #llms-mailhawk-connect .dashicons{margin:-4px 4px 0 0;vertical-align:middle}.wrap.llms-reporting #llms-sendwp-connect,.wrap.lifterlms-settings #llms-sendwp-connect,.wrap.llms-status #llms-sendwp-connect{height:auto;margin:0 0 6px;position:relative}.wrap.llms-reporting #llms-sendwp-connect .fa,.wrap.lifterlms-settings #llms-sendwp-connect .fa,.wrap.llms-status #llms-sendwp-connect .fa{margin-right:4px}@media only screen and (min-width: 782px){.wrap.lifterlms-settings .llms-subheader{height:40px;position:sticky;top:32px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -20px 20px -22px}.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:10px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -20px 20px -22px}.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:10px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary{margin:0 -20px 20px -22px}.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items{padding-left:10px}}.wrap.llms-dashboard .llms-inside-wrap{padding-top:30px}.wrap.llms-dashboard #poststuff h2{padding:12px 20px}.wrap.llms-dashboard .llms-dashboard-activity h2{font-size:20px;font-weight:700;line-height:1.5;margin-top:0;text-align:center}.wrap.llms-dashboard .postbox{background-color:#fff;border:none;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}.wrap.llms-dashboard .postbox .postbox-header{border-bottom-color:#efefef}.wrap.llms-dashboard .postbox .inside{padding:20px}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item{margin-top:0}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p{text-align:left}.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions{padding-top:0}.wrap.llms-dashboard #llms_dashboard_addons p{text-align:center}.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary{display:inline-block;margin-top:15px}.wrap.llms-dashboard #llms_dashboard_quick_links ul{list-style:disc;margin:5px 0 0 20px}.wrap.llms-dashboard #llms_dashboard_quick_links ul li{font-size:15px;line-height:1.5}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{display:grid;grid-template-columns:1fr;grid-gap:30px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a{display:inline-block}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3{margin:0 0 10px 0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul{margin-bottom:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist{list-style:none;margin-left:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa{text-align:center;width:16px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check{color:#008a20}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times{color:#d63638}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action{display:block;text-align:center}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links{grid-template-columns:1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3{margin:0}.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons{color:#aaa}@media only screen and (min-width: 782px){.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links{grid-template-columns:1fr 1fr 1fr 1fr}}.wrap.llms-dashboard #llms_dashboard_blog ul,.wrap.llms-dashboard #llms_dashboard_podcast ul{margin:0}.wrap.llms-dashboard #llms_dashboard_blog ul li,.wrap.llms-dashboard #llms_dashboard_podcast ul li{margin:0 0 15px 0}.wrap.llms-dashboard #llms_dashboard_blog ul li a,.wrap.llms-dashboard #llms_dashboard_podcast ul li a{display:block}.wrap.llms-dashboard #llms_dashboard_blog p,.wrap.llms-dashboard #llms_dashboard_podcast p{margin:15px 0;text-align:center}.wrap.llms-dashboard #llms_dashboard_blog p a,.wrap.llms-dashboard #llms_dashboard_podcast p a{display:inline-block}#llms_dashboard_widget .inside{margin:0;padding-bottom:8px}#llms_dashboard_widget .llms-dashboard-widget-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:12px}#llms_dashboard_widget .activity-block{padding-bottom:8px;border-color:#e8e8e8}#llms_dashboard_widget h3{margin-bottom:0}#llms_dashboard_widget .llms-charts-wrapper{display:none}#llms_dashboard_widget .llms-widget-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:8px;width:100%;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding:4px 0}#llms_dashboard_widget .llms-widget-row:before,#llms_dashboard_widget .llms-widget-row:after{display:none}#llms_dashboard_widget .llms-widget-1-4{padding:0;-webkit-box-flex:1;-ms-flex:1;flex:1}#llms_dashboard_widget .llms-widget{padding:8px 8px 12px;margin:0;border-radius:6px;border:1px solid #e8e8e8;-webkit-box-shadow:0px 2px 4px #f6f7f7;box-shadow:0px 2px 4px #f6f7f7;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}#llms_dashboard_widget .llms-label{font-size:14px;width:100%;-ms-flex-item-align:start;align-self:flex-start;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#llms_dashboard_widget .llms-widget-content{font-size:20px;margin:0}#llms_dashboard_widget .llms-widget-info-toggle{display:none}#llms_dashboard_widget a{border:0}#llms_dashboard_widget .subsubsub{color:#dcdcde}.llms-dashboard-widget-feed{margin:0 -12px;padding:0;background-color:#f6f7f7}.llms-dashboard-widget-feed li{margin:0;padding:8px 12px;border-bottom:1px solid #e8e8e8}.llms-dashboard-widget-feed span{display:block}.llms-remarks .llms-remarks-field{height:120px;width:100%}.llms-remarks input[type=number]{width:60px}button[name=llms_quiz_attempt_action] .save{display:none}button[name=llms_quiz_attempt_action].grading .default{display:none}button[name=llms_quiz_attempt_action].grading .save{display:inline}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:left;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:right}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-right:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-right:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:0 0;background-image:radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 0 5px 5px}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-left:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";left:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */@font-face{font-family:"FontAwesome";src:url("../fonts/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/assets/css/lifterlms-rtl.css b/assets/css/lifterlms-rtl.css index f336f58e29..0580c0054a 100644 --- a/assets/css/lifterlms-rtl.css +++ b/assets/css/lifterlms-rtl.css @@ -2024,65 +2024,66 @@ ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item, text-decoration: none; } -.single-llms_quiz .llms-quiz-attempt-results { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results { margin: 0; padding: 0; list-style-type: none; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question { background: #efefef; margin: 0 0 10px; position: relative; + list-style-type: none; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer { color: inherit; display: block; padding: 10px 10px 10px 35px; text-decoration: none; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { content: " "; display: table; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { clear: both; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect { background: rgba(255, 146, 43, 0.2); } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon { background-color: #ff922b; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct { background: rgba(131, 195, 115, 0.2); } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon { background-color: #83c373; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect { background: rgba(229, 85, 78, 0.2); } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon { background-color: #e5554e; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question pre { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question pre { overflow: auto; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title { float: right; margin: 0; line-height: 1; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points { float: left; line-height: 1; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip { position: absolute; left: -12px; top: -2px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon { color: rgba(255, 255, 255, 0.65); border-radius: 50%; font-size: 30px; @@ -2091,55 +2092,55 @@ ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item, text-align: center; width: 40px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main { display: none; padding: 0 10px 10px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label { font-weight: 700; margin-bottom: 10px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers { margin: 0; padding: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { padding: 0; margin: 0 30px 0 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child { list-style-type: none; margin-right: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img { height: auto; max-width: 200px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section { border-top: 2px solid rgba(255, 255, 255, 0.5); margin-top: 20px; padding-top: 20px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child { border-top: none; margin-top: 0; padding-top: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers { list-style-type: none; margin: 0; padding: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { display: inline-block; list-style-type: none; margin: 0; padding: 5px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed { opacity: 0.5; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title { font-style: italic; font-weight: normal; } @@ -2183,9 +2184,12 @@ ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item, } .single-llms_quiz .llms-quiz-results .llms-quiz-results-main, .single-llms_quiz .llms-quiz-results .llms-quiz-results-history { - float: right; + float: left; width: calc(100% - 300px); } + .single-llms_quiz .llms-quiz-results .llms-quiz-results-history { + clear: left; + } } .single-llms_quiz ul.llms-quiz-meta-info, .single-llms_quiz ul.llms-quiz-meta-info li { diff --git a/assets/css/lifterlms-rtl.min.css b/assets/css/lifterlms-rtl.min.css index 6e9f943234..e918331362 100644 --- a/assets/css/lifterlms-rtl.min.css +++ b/assets/css/lifterlms-rtl.min.css @@ -1,4 +1,4 @@ -.llms-pagination ul:before,.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:before,.llms-form-fields:before,.llms-checkout-cols-2:before,.llms-access-plans:before,.llms-course-navigation:before,.llms-loop-list:before,.llms-cols:before,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{content:" ";display:table}.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{clear:both}.llms-cols .llms-col{width:100%}@media all and (min-width: 600px){.llms-cols [class*=llms-col-]{float:right}}.llms-flex-cols{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.llms-flex-cols [class*=llms-col]{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:100%}@media all and (min-width: 600px){.llms-cols .llms-col-1,.llms-flex-cols .llms-col-1{width:100%}.llms-cols .llms-col-2,.llms-flex-cols .llms-col-2{width:50%}.llms-cols .llms-col-3,.llms-flex-cols .llms-col-3{width:33.3333333333%}.llms-cols .llms-col-4,.llms-flex-cols .llms-col-4{width:25%}.llms-cols .llms-col-5,.llms-flex-cols .llms-col-5{width:20%}.llms-cols .llms-col-6,.llms-flex-cols .llms-col-6{width:16.6666666667%}.llms-cols .llms-col-7,.llms-flex-cols .llms-col-7{width:14.2857142857%}.llms-cols .llms-col-8,.llms-flex-cols .llms-col-8{width:12.5%}.llms-cols .llms-col-9,.llms-flex-cols .llms-col-9{width:11.1111111111%}.llms-cols .llms-col-10,.llms-flex-cols .llms-col-10{width:10%}.llms-cols .llms-col-11,.llms-flex-cols .llms-col-11{width:9.0909090909%}.llms-cols .llms-col-12,.llms-flex-cols .llms-col-12{width:8.3333333333%}}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{right:-7px;position:relative}.llms-button-primary{background:#2295ff}.llms-button-primary:hover,.llms-button-primary.clicked{background:#0077e4}.llms-button-primary:focus,.llms-button-primary:active{background:#4ba9ff}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.llms-donut{background-color:#f1f1f1;background-image:none;border-radius:50%;color:#ef476f;height:200px;overflow:hidden;position:relative;width:200px}.llms-donut:before,.llms-donut:after{content:" ";display:table}.llms-donut:after{clear:both}.llms-donut svg{overflow:visible !important;pointer-events:none;width:100%}.llms-donut svg path{fill:none;stroke-width:35px;stroke:#ef476f}.llms-donut.mini{height:36px;width:36px}.llms-donut.mini .percentage{font-size:10px}.llms-donut.small{height:100px;width:100px}.llms-donut.small .percentage{font-size:18px}.llms-donut.medium{height:130px;width:130px}.llms-donut.medium .percentage{font-size:26px}.llms-donut.large{height:260px;width:260px}.llms-donut.large .percentage{font-size:48px}.llms-donut .inside{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:80%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;right:50%;position:absolute;text-align:center;-webkit-transform:translate(50%, -50%);transform:translate(50%, -50%);width:80%;top:50%;z-index:3}.llms-donut .percentage{line-height:1.2;font-size:34px}.llms-donut .caption{font-size:50%}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}.llms-membership-image{display:block;margin:0 auto}.llms-course-image{display:block;margin:0 auto;max-width:100%}.llms-featured-image{display:block;margin:0 auto}.llms-image-thumb{width:150px}.llms-video-wrapper .center-video{height:auto;max-width:100%;overflow:hidden;position:relative;padding-top:56.25%;text-align:center}.llms-video-wrapper .center-video>.wp-video,.llms-video-wrapper .center-video .fluid-width-video-wrapper,.llms-video-wrapper .center-video iframe,.llms-video-wrapper .center-video object,.llms-video-wrapper .center-video embed{height:100%;right:0;position:absolute;top:0;width:100%}.llms-video-wrapper .center-video>.wp-video{width:100% !important}.llms-video-wrapper .center-video .fluid-width-video-wrapper{padding-top:0 !important}.clear{clear:both;width:100%}.llms-featured-image{text-align:center}#main-content .llms-payment-options p{margin:0;font-size:16px}.llms-option{display:block;position:relative;margin:20px 0;padding-right:40px;font-size:16px}.llms-option label{cursor:pointer;position:static}.llms-option:first-child{margin-top:0}.llms-option:last-child{margin-bottom:0}#main-content .llms-option:last-child{margin-bottom:0}.llms-option input[type=radio]{display:block;position:absolute;top:3px;right:0;z-index:0}.llms-option input[type=radio]{display:inline-block}.llms-option input[type=radio]+label span.llms-radio{display:none}.llms-option input[type=radio]+label span.llms-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;z-index:20;position:absolute;top:0;right:-2px;display:inline-block;width:24px;height:24px;border-radius:50%;cursor:pointer;vertical-align:middle;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;background:#efefef;background-image:radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);background-repeat:no-repeat;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1)}.llms-option input[type=radio]:checked+label span.llms-radio{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1)}.llms-option input[type=radio]+label span.llms-radio{background-position:-24px 0}.llms-option input[type=radio]:checked+label span.llms-radio{background-position:100% 0}.llms-option input[type=submit]{border:none;background:#e5554e;color:#fff;font-size:20px;padding:10px 0;border-radius:3px;cursor:pointer;width:100%}.llms-styled-text{padding:14px 0}.llms-notice-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;border:1px solid #ccc;list-style-type:none;width:100%;overflow:auto}.llms-notice-box input[type=text]{height:auto}.llms-notice-box .col-1-1{width:100%}.llms-notice-box .col-1-1 input[type=text]{width:100%}.llms-notice-box .col-1-2{width:50%;float:right}@media screen and (max-width: 768px){.llms-notice-box .col-1-2{width:100%}}.llms-notice-box .col-1-3{width:33%;float:right;margin-left:10px}.llms-notice-box .col-1-4{width:25%;float:right;margin-left:10px}@media screen and (max-width: 768px){.llms-notice-box .col-1-4{width:100%}}.llms-notice-box .col-1-6{width:16.6%;float:right;margin-left:10px}.llms-notice-box .col-1-8{width:11%;float:left}.llms-notice-box .llms-pad-right{padding-left:10px}@media screen and (max-width: 768px){.llms-notice-box .llms-pad-right{padding-left:0}}input[type=text].cc_cvv,#cc_cvv{margin-left:0;width:23%;float:left}.llms-clear-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;list-style-type:none;width:100%;overflow:auto}.llms-price-label{font-weight:normal}.llms-final-price{font-weight:bold;float:left}.llms-center-content{text-align:center}.llms-input-text{background-color:#fff;border:1px solid #ddd;color:#333;font-size:18px;font-weight:300;padding:16px;width:100%}.llms-price{margin-bottom:0;font-weight:bold}.llms-price-loop{margin-bottom:0;font-weight:bold}.courses .entry{padding:0}.list-view .site-content .llms-course-list .hentry,.list-view .site-content .llms-membership-list .hentry{border-top:0;padding-top:0}.llms-content{width:100%}.llms-lesson-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-template-wrapper{width:100%;display:block;clear:both}.llms-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-styled-select{border:1px solid #ccc;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px;overflow:hidden;position:relative}.llms-styled-select,.llms-styled-select select{width:100%}select:focus{outline:none}.llms-styled-select select{height:34px;padding:5px 5px 5px 0;background:rgba(0,0,0,0);border:none;-webkit-appearance:none;font-size:16px;color:#444}@-moz-document url-prefix(){.--ms-styled-select select{width:110%}}.llms-styled-select .fa-sort-desc{position:absolute;top:0;left:12px;font-size:24px;color:#ccc}select::-ms-expand{display:none}_:-o-prefocus .llms-styled-select,.selector .llms-styled-select{background:none}.llms-form-item-wrapper{margin-bottom:1em}.llms-progress-circle{position:relative;width:200px;height:200px;float:right}.llms-progress-circle-count{top:27%;position:absolute;width:94%;text-align:center;color:#666;font-size:44px}.llms-progress-circle svg{position:absolute;width:200px;height:200px}.llms-progress-circle circle{fill:rgba(0,0,0,0)}svg .llms-background-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#f1f2f1;stroke-dasharray:430}svg .llms-animated-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#e5554e;stroke-dasharray:430;stroke-dashoffset:410}.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title{font-weight:700}.llms-widget-syllabus .llms-lesson-complete,.llms-widget-syllabus .lesson-complete-placeholder{font-size:1.2em;margin-left:6px;color:#ccc}.llms-widget-syllabus .llms-lesson-complete.done,.llms-widget-syllabus .lesson-complete-placeholder.done{color:#e5554e}.llms-widget-syllabus .section-title{font-weight:bold}.llms-widget-syllabus .lesson-title a{text-decoration:none}.llms-widget-syllabus .lesson-title a:hover{text-decoration:none !important}.llms-widget-syllabus .lesson-title.done a{color:#999;text-decoration:line-through}.llms-widget-syllabus ul{list-style-type:none}.llms-widget-syllabus ul li{list-style-type:none}.llms-widget-syllabus ul li ul li{margin:0 0 2px 0;padding:0}.llms-remove-coupon{float:left}.llms-lesson-link-locked,.llms-lesson-link-locked:hover{background:#f1f1f1;-webkit-box-shadow:0 1px 2px 0 rgba(1,1,1,.4);box-shadow:0 1px 2px 0 rgba(1,1,1,.4);display:block;color:#a6a6a6;min-height:85px;padding:15px;text-decoration:none;position:relative}.llms-lesson-preview.is-complete .llms-lesson-link-locked{padding-right:75px}.llms-lesson-tooltip{display:none;position:absolute;color:#000;background-color:silver;padding:.25em;border-radius:2px;z-index:100;top:0;right:50%;text-align:center;-webkit-transform:translateX(50%) translateY(-100%);transform:translateX(50%) translateY(-100%)}.llms-lesson-tooltip:after{content:"";width:0;height:0;border-top:8px solid silver;border-right:8px solid rgba(0,0,0,0);border-left:8px solid rgba(0,0,0,0);position:absolute;bottom:-8px;right:50%;-webkit-transform:translateX(50%);transform:translateX(50%)}.llms-lesson-tooltip.active{display:inline-block}.llms-loop-list{list-style:none;margin:0 -10px;padding:0}@media all and (min-width: 600px){.llms-loop-list.cols-1 .llms-loop-item{width:100%}.llms-loop-list.cols-2 .llms-loop-item{width:50%}.llms-loop-list.cols-3 .llms-loop-item{width:33.3333333333%}.llms-loop-list.cols-4 .llms-loop-item{width:25%}.llms-loop-list.cols-5 .llms-loop-item{width:20%}.llms-loop-list.cols-6 .llms-loop-item{width:16.6666666667%}}.llms-loop-item{float:right;list-style:none;margin:0;padding:0;width:100%}.llms-loop-item-content{background:#f1f1f1;padding-bottom:10px;margin:10px}.llms-loop-item-content:hover{background:#eaeaea}.llms-loop-item-content .llms-loop-link{color:#212121;display:block}.llms-loop-item-content .llms-loop-link:visited{color:#212121}.llms-loop-item-content .llms-featured-image{display:block;max-width:100%}.llms-loop-item-content .llms-loop-title{margin-top:5px}.llms-loop-item-content .llms-loop-title:hover{color:#2295ff}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author,.llms-loop-item-content .llms-loop-title{padding:0 10px}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author{color:#444;display:block;font-size:13px;margin-bottom:3px}.llms-loop-item-content .llms-meta:last-child,.llms-loop-item-content .llms-author:last-child{margin-bottom:0}.llms-loop-item-content .llms-featured-img-wrap{overflow:hidden}.llms-loop-item-content p{margin-bottom:0}.llms-loop-item-content .llms-progress{margin:0;height:.4em}.llms-loop-item-content .llms-progress .progress__indicator{display:none}.llms-loop-item-content .llms-progress .llms-progress-bar{background-color:#f6f6f6;left:0;top:0}.course .llms-meta-info{margin:20px 0}.course .llms-meta-info .llms-meta-title{margin-bottom:5px}.course .llms-meta-info .llms-meta p{margin-bottom:0}.course .llms-meta-info .llms-meta span{font-weight:700}.course .llms-course-progress{margin:40px auto;max-width:480px;text-align:center}.llms-syllabus-wrapper{margin:15px;text-align:center}.llms-syllabus-wrapper .llms-section-title{margin:25px 0 0}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-back-to-course{width:49%}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-back-to-course{float:right;margin-left:.5%}.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-prev-lesson+.llms-back-to-course{float:left;margin-right:.5%}.llms-lesson-preview{display:inline-block;margin-top:15px;max-width:100%;position:relative;width:480px}.llms-lesson-preview .llms-lesson-link{background:#f1f1f1;color:#212121;display:block;padding:15px;text-decoration:none}.llms-lesson-preview .llms-lesson-link:before,.llms-lesson-preview .llms-lesson-link:after{content:" ";display:table}.llms-lesson-preview .llms-lesson-link:after{clear:both}.llms-lesson-preview .llms-lesson-link:hover{background:#eaeaea}.llms-lesson-preview .llms-lesson-link:visited{color:#212121}.llms-lesson-preview .llms-lesson-thumbnail{margin-bottom:10px}.llms-lesson-preview .llms-lesson-thumbnail img{display:block;width:100%}.llms-lesson-preview .llms-pre-text{text-align:right}.llms-lesson-preview .llms-lesson-title{font-weight:700;margin:0 auto 10px;text-align:right}.llms-lesson-preview .llms-lesson-title:last-child{margin-bottom:0}.llms-lesson-preview .llms-lesson-excerpt{text-align:right}.llms-lesson-preview .llms-main{float:right;width:100%}.llms-lesson-preview .llms-extra{float:left;width:15%}.llms-lesson-preview .llms-extra+.llms-main{width:85%}.llms-lesson-preview .llms-lesson-counter,.llms-lesson-preview .llms-free-lesson-svg,.llms-lesson-preview .llms-lesson-complete,.llms-lesson-preview .llms-lesson-complete-placeholder{display:block;font-size:32px;margin-bottom:15px}.llms-lesson-preview.is-free .llms-lesson-complete,.llms-lesson-preview.is-complete .llms-lesson-complete{color:#2295ff}.llms-lesson-preview .llms-icon-free{background:#2295ff;border-radius:4px;color:#f1f1f1;display:inline-block;padding:5px 6px 4px;line-height:1;font-size:14px}.llms-lesson-preview.is-incomplete .llms-lesson-complete{color:#cacaca}.llms-lesson-preview .llms-lesson-counter{font-size:16px;line-height:1}.llms-lesson-preview .llms-free-lesson-svg{fill:currentColor;height:23px;width:50px}.llms-lesson-preview p{margin-bottom:0}.llms-progress{clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;position:relative;height:1em;width:100%;margin:15px 0}.llms-progress .llms-progress-bar{background-color:#f1f2f1;position:relative;height:.4em;top:.3em;width:100%}.llms-progress .progress-bar-complete{background-color:#ef476f;height:100%}.progress__indicator{float:left;text-align:left;height:1em;line-height:1em;margin-right:5px;white-space:nowrap}.llms-author .name{margin-right:5px}.llms-author .label{margin-right:5px}.llms-author .avatar{border-radius:50%}.llms-author .bio{margin-top:5px}.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author{margin-right:0}.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author{margin-left:0}.llms-instructor-info .llms-instructors .llms-author{background:#f5f5f5;border-top:4px solid #2295ff;text-align:center;margin:45px 5px 5px;padding:0 10px 10px}.llms-instructor-info .llms-instructors .llms-author .avatar{background:#2295ff;border:4px solid #2295ff;display:block;margin:-35px auto 10px}.llms-instructor-info .llms-instructors .llms-author .llms-author-info{display:block}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name{font-weight:700}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label{font-size:85%}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio{font-size:90%;margin-bottom:0}.llms_review{margin:20px 0px;padding:10px}.llms_review h5{font-size:17px;margin:3px 0px}.llms_review h6{font-size:13px}.llms_review p{font-size:15px}.review_box [type=text]{margin:10px 0px}.review_box h5{color:red;display:none}.review_box+.thank_you_box{display:none}.llms-notice{background:rgba(34,149,255,.3);border-color:#2295ff;border-style:solid;border-width:3px;padding:10px;margin-bottom:10px}.llms-notice p:last-child,.llms-notice ul:last-child{margin-bottom:0}.llms-notice li{list-style-type:none}.llms-notice.llms-debug{background:rgba(202,202,202,.3);border-color:#cacaca}.llms-notice.llms-error{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-notice.llms-success{background:rgba(131,195,115,.3);border-color:#83c373}.entry-content .llms-notice{margin:0 0 10px}.entry-content .llms-notice li{list-style-type:none}ul.llms-achievements-loop,.lifterlms ul.llms-achievements-loop,ul.llms-certificates-loop,.lifterlms ul.llms-certificates-loop{list-style-type:none;margin:0 -10px;padding:0}ul.llms-achievements-loop:before,ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:before,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:before,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:before,.lifterlms ul.llms-certificates-loop:after{content:" ";display:table}ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:after{clear:both}ul.llms-achievements-loop li.llms-achievement-loop-item,ul.llms-achievements-loop li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,ul.llms-certificates-loop li.llms-achievement-loop-item,ul.llms-certificates-loop li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:right;list-style-type:none;margin:0;padding:10px;width:100%}@media all and (min-width: 600px){ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item{width:100%}ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item{width:50%}ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item{width:33.3333333333%}ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item{width:25%}ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item{width:20%}}.llms-achievement,.llms-certificate{background:#f1f1f1;border:none;color:inherit;display:block;text-decoration:none;width:100%}.llms-achievement:hover,.llms-certificate:hover{background:#eaeaea}.llms-achievement .llms-achievement-img,.llms-certificate .llms-achievement-img{display:block;margin:0;width:100%}.llms-achievement .llms-achievement-title,.llms-certificate .llms-achievement-title{font-size:16px;margin:0;padding:10px;text-align:center}.llms-achievement .llms-certificate-title,.llms-certificate .llms-certificate-title{font-size:16px;margin:0;padding:0 0 10px}.llms-achievement .llms-achievement-info,.llms-achievement .llms-achievement-date,.llms-certificate .llms-achievement-info,.llms-certificate .llms-achievement-date{display:none}.llms-achievement .llms-achievement-content,.llms-certificate .llms-achievement-content{padding:20px}.llms-achievement .llms-achievement-content:empty,.llms-certificate .llms-achievement-content:empty{padding:0}.llms-achievement .llms-achievement-content *:last-child,.llms-certificate .llms-achievement-content *:last-child{margin-bottom:0}.llms-certificate{border:4px double #f1f1f1;padding:20px 10px;background:#fff;text-align:center}.llms-certificate:hover{background:#fff;border-color:#eaeaea}.llms-achievement-modal .llms-achievement{background:#fff}.llms-achievement-modal .llms-achievement-info{display:block}.llms-achievement-modal .llms-achievement-title{display:none}.llms-notification{background:#fff;-webkit-box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;border-top:4px solid #2295ff;opacity:0;padding:12px;position:fixed;left:-800px;top:24px;-webkit-transition:opacity .4s ease-in-out,left .4s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out;visibility:hidden;width:auto;z-index:9999999}.llms-notification:before,.llms-notification:after{content:" ";display:table}.llms-notification:after{clear:both}.llms-notification.visible{right:12px;opacity:1;left:12px;-webkit-transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;visibility:visible}.llms-notification.visible:hover .llms-notification-dismiss{opacity:1}.llms-notification .llms-notification-content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.llms-notification .llms-notification-main{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:4;-ms-flex:4;flex:4;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.llms-notification .llms-notification-title{font-size:18px;margin:0}.llms-notification .llms-notification-body{font-size:14px;line-height:1.4}.llms-notification .llms-notification-body p,.llms-notification .llms-notification-body li{font-size:inherit}.llms-notification .llms-notification-body p{margin-bottom:8px}.llms-notification .llms-notification-body .llms-mini-cert{background:#f6f6f6;border:1px solid #d0d0d0;-webkit-box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;padding:16px 16px 24px;margin-top:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title{font-size:16px;font-weight:700;margin:12px auto;text-align:center}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body{width:100%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(1){width:65%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(2){width:35%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(3){width:85%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(4){width:75%;margin-top:18px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(5){width:70%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(6){margin-right:12px;margin-bottom:-24px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(7){width:65%;margin-left:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line{border-radius:2px;height:8px;background:#b0b0b0;background-image:-webkit-gradient(linear, right top, left top, from(#b0b0b0), color-stop(20%, #a0a0a0), color-stop(40%, #b0b0b0), to(#b0b0b0));background-image:linear-gradient(to left, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);background-repeat:no-repeat;margin:4px auto}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot{background:#b0b0b0;border-radius:50%;display:inline-block;content:"";height:24px;width:24px}.llms-notification .llms-notification-body .llms-mini-cert p{margin-bottom:0}.llms-notification .llms-notification-aside{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:12px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.llms-notification .llms-notification-icon{display:block;max-width:64px}.llms-notification .llms-notification-footer{border-top:1px solid #e5e5e5;font-size:12px;margin-top:12px;padding:6px 6px 0;text-align:left}.llms-notification .llms-notification-dismiss{color:#e5554e;cursor:pointer;font-size:22px;position:absolute;left:10px;top:8px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.llms-sd-notification-center .llms-notification-list,.llms-sd-notification-center .llms-notification-list-item{list-style-type:none;margin:0;padding:0}.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification{background:#fcfcfc}.llms-sd-notification-center .llms-notification{opacity:1;border-top:1px solid #e5e5e5;right:auto;padding:24px;position:relative;left:auto;top:auto;visibility:visible;width:auto}.llms-sd-notification-center .llms-notification .llms-notification-aside{max-width:64px}.llms-sd-notification-center .llms-notification .llms-notification-footer{border:none;padding:0;text-align:right}.llms-sd-notification-center .llms-notification .llms-progress{display:none !important}.llms-sd-notification-center .llms-notification .llms-notification-date{color:#515151;float:right;margin-left:6px}.llms-sd-notification-center .llms-notification .llms-mini-cert{margin:0 auto;max-width:380px}@media all and (min-width: 480px){.llms-notification{left:-800px;width:360px}.llms-notification.visible{right:auto;left:24px}.llms-notification .llms-notification-dismiss{opacity:0}}.llms-pagination ul{list-style-type:none}.llms-pagination ul li{float:right}.llms-pagination ul li a{border-bottom:0;text-decoration:none}.llms-pagination ul li .page-numbers{padding:.5em;text-decoration:underline}.llms-pagination ul li .page-numbers.current{text-decoration:none}.llms-tooltip{background:#2a2a2a;border-radius:4px;color:#fff;font-size:14px;line-height:1.2;opacity:0;top:-20px;padding:8px 12px;right:50%;position:absolute;pointer-events:none;-webkit-transform:translateX(50%);transform:translateX(50%);-webkit-transition:opacity .2s ease,top .2s ease;transition:opacity .2s ease,top .2s ease;max-width:320px}.llms-tooltip.show{top:-28px;opacity:1}.llms-tooltip:after{bottom:-8px;border-top:8px solid #2a2a2a;border-right:8px solid rgba(0,0,0,0);border-left:8px solid rgba(0,0,0,0);content:"";height:0;right:50%;position:absolute;-webkit-transform:translateX(50%);transform:translateX(50%);width:0}.webui-popover-title{font-size:initial;font-weight:initial;line-height:initial}.webui-popover-inverse .webui-popover-inner .close{color:#fff;opacity:.6;text-shadow:none}.webui-popover-inverse .webui-popover-inner .close:hover{opacity:.8}.webui-popover-inverse .webui-popover-content a{color:#fff;text-decoration:underline}.webui-popover-inverse .webui-popover-content a:hover{text-decoration:none}.single-llms_quiz .llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 10px 10px 35px;text-decoration:none}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:right;margin:0;line-height:1}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:left;line-height:1}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;left:-12px;top:-2px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 30px 0 0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-right:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.single-llms_quiz .llms-return{margin-bottom:10px}.single-llms_quiz .llms-quiz-results:before,.single-llms_quiz .llms-quiz-results:after{content:" ";display:table}.single-llms_quiz .llms-quiz-results:after{clear:both}.single-llms_quiz .llms-quiz-results .llms-donut.passing{color:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path{stroke:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.pending{color:#555}.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path{stroke:#555}.single-llms_quiz .llms-quiz-results .llms-donut.failing{color:#e5554e}.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path{stroke:#e5554e}.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{margin-bottom:20px}@media all and (min-width: 600px){.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside{float:right;width:220px}.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{float:right;width:calc(100% - 300px)}}.single-llms_quiz ul.llms-quiz-meta-info,.single-llms_quiz ul.llms-quiz-meta-info li{list-style-type:none;margin:0;padding:0}.single-llms_quiz ul.llms-quiz-meta-info{margin-bottom:10px}.single-llms_quiz .llms-quiz-buttons{margin-top:10px;text-align:right}.single-llms_quiz .llms-quiz-buttons form{display:inline-block}.llms-quiz-question-wrapper{min-height:140px;position:relative}.llms-quiz-question-wrapper .llms-quiz-loading{bottom:20px;right:0;position:absolute;left:0;text-align:center;z-index:1}.llms-quiz-ui{background:#fcfcfc;padding:20px;position:relative}.llms-quiz-ui .llms-quiz-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 0 30px}.llms-quiz-ui .llms-progress{background-color:#f1f2f1;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:8px;margin:0;overflow:hidden}.llms-quiz-ui .llms-progress .progress-bar-complete{-webkit-transition:width .3s ease-in;transition:width .3s ease-in;width:0}.llms-quiz-ui .llms-error{background:#e5554e;border-radius:4px;color:#fff;margin:10px 0;padding:10px}.llms-quiz-ui .llms-error:before,.llms-quiz-ui .llms-error:after{content:" ";display:table}.llms-quiz-ui .llms-error:after{clear:both}.llms-quiz-ui .llms-error a{color:rgba(255,255,255,.6);float:left;font-size:22px;line-height:1;text-decoration:none}.llms-quiz-ui .llms-quiz-counter{display:none;color:#6a6a6a;float:left;font-size:18px}.llms-quiz-ui .llms-quiz-counter .llms-sep{margin:0 5px}.llms-quiz-ui .llms-quiz-nav{margin-top:20px}.llms-quiz-ui .llms-quiz-nav button{margin:0 0 0 10px}.llms-question-wrapper .llms-question-text{font-size:30px;font-weight:400;margin-bottom:15px}.llms-question-wrapper ol.llms-question-choices{list-style-type:none;margin:0;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice{border-bottom:1px solid #e8e8e8;margin:0;padding:0;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label{display:inline-block;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker{bottom:10px;margin:0;position:absolute;left:10px}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image{margin:2px;padding:20px;-webkit-transition:background .4s ease;transition:background .4s ease}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img{display:block;width:100%}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked~.llms-choice-image{background:#efefef}.llms-question-wrapper ol.llms-question-choices li.llms-choice input{display:none;right:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.llms-question-wrapper ol.llms-question-choices li.llms-choice label{display:block;margin:0;padding:10px 20px;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker{background:#f0f0f0;display:inline-block;font-size:20px;height:40px;line-height:40px;margin-left:10px;text-align:center;-webkit-transition:all .2s ease;transition:all .2s ease;vertical-align:middle;width:40px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister,.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox{border-radius:4px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio{border-radius:50%}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker{background:#ef476f;color:#fff}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text{display:inline-block;font-size:18px;font-weight:400;line-height:1.6;margin-bottom:0;vertical-align:middle;width:calc(100% - 60px)}.llms-quiz-timer{background:#fff;border:1px solid #83c373;border-radius:4px;color:#83c373;float:left;font-size:18px;line-height:1;margin-right:20px;padding:8px 12px;position:relative;white-space:nowrap;z-index:1}.llms-quiz-timer.color-half{border-color:#ff922b;color:#ff922b}.llms-quiz-timer.color-empty{border-color:#e5554e;color:#e5554e}.llms-quiz-timer .llms-tiles{display:inline-block;margin-right:5px}.voucher-expand{display:none}@media all and (min-width: 600px){.llms-access-plans.cols-1 .llms-access-plan{width:100%}.llms-access-plans.cols-2 .llms-access-plan{width:50%}.llms-access-plans.cols-3 .llms-access-plan{width:33.3333333333%}.llms-access-plans.cols-4 .llms-access-plan{width:25%}.llms-access-plans.cols-5 .llms-access-plan{width:20%}}.llms-free-enroll-form{margin-bottom:0}.llms-access-plan{-webkit-box-sizing:border-box;box-sizing:border-box;float:right;text-align:center;width:100%}.llms-access-plan .llms-access-plan-footer,.llms-access-plan .llms-access-plan-content{background:#f1f1f1}.llms-access-plan.featured .llms-access-plan-featured{background:#4ba9ff}.llms-access-plan.featured .llms-access-plan-footer,.llms-access-plan.featured .llms-access-plan-content{border-right:3px solid #2295ff;border-left:3px solid #2295ff}.llms-access-plan.featured .llms-access-plan-footer{border-bottom-color:#2295ff}.llms-access-plan.on-sale .price-regular{text-decoration:line-through}.llms-access-plan .stamp{background:#2295ff;color:#fff;font-size:11px;font-style:normal;font-weight:300;padding:2px 3px;vertical-align:top}.llms-access-plan .llms-access-plan-restrictions ul{margin:0}.llms-access-plan-featured{color:#fff;font-size:14px;font-weight:400;margin:0 2px 0 2px}.llms-access-plan-content{margin:0 2px 0}.llms-access-plan-content .llms-access-plan-pricing{padding:10px 0 0}.llms-access-plan-title{background:#2295ff;color:#fff;margin-bottom:0;padding:10px}.llms-access-plan-pricing .llms-price-currency-symbol{font-size:14px;vertical-align:top}.llms-access-plan-price{font-size:18px;font-variant:small-caps;line-height:20px}.llms-access-plan-price .lifterlms-price{font-weight:700}.llms-access-plan-price.sale{padding:5px 0;border-top:1px solid #d0d0d0;border-bottom:1px solid #d0d0d0}.llms-access-plan-trial,.llms-access-plan-schedule,.llms-access-plan-sale-end,.llms-access-plan-expiration{font-size:15px;font-variant:small-caps;line-height:1.2}.llms-access-plan-description{font-size:16px;padding:10px 10px 0}.llms-access-plan-description ul{margin:0}.llms-access-plan-description ul li{border-bottom:1px solid #d0d0d0;list-style-type:none}.llms-access-plan-description ul li:last-child{border-bottom:none}.llms-access-plan-description div:last-child,.llms-access-plan-description img:last-child,.llms-access-plan-description p:last-child,.llms-access-plan-description ul:last-child,.llms-access-plan-description li:last-child{margin-bottom:0}.llms-access-plan-restrictions .stamp{vertical-align:baseline}.llms-access-plan-restrictions ul{margin:0}.llms-access-plan-restrictions ul li{font-size:12px;line-height:14px;list-style-type:none}.llms-access-plan-restrictions a{color:#f8954f}.llms-access-plan-restrictions a:hover{color:#f67d28}.llms-access-plan-footer{border-bottom:3px solid #f1f1f1;padding:10px;margin:0 2px 2px 2px}.llms-access-plan-footer .llms-access-plan-pricing{padding:0 0 10px}.webui-popover-content .llms-members-only-restrictions{text-align:center}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li,.webui-popover-content .llms-members-only-restrictions p{margin:0;padding:0}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li{list-style-type:none}.webui-popover-content .llms-members-only-restrictions li{padding:8px 0;border-top:1px solid #3b3b3b}.webui-popover-content .llms-members-only-restrictions li:first-child{border-top:none}.webui-popover-content .llms-members-only-restrictions li a{display:block}.llms-checkout-wrapper form.llms-login{border:3px solid #2295ff;display:none;margin-bottom:10px}.llms-checkout-wrapper .llms-form-heading{background:#2295ff;color:#fff;margin:0 0 5px;padding:10px}.llms-checkout{background:#fff;position:relative}@media all and (min-width: 800px){.llms-checkout-cols-2 .llms-checkout-col{float:right}.llms-checkout-cols-2 .llms-checkout-col.llms-col-1{margin-left:5px;width:calc(58% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2{margin-right:5px;width:calc(42% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button{width:100%}}.llms-checkout-section{border:3px solid #2295ff;margin-bottom:10px;position:relative}.llms-checkout-section-content{margin:10px}.llms-checkout-section-content.llms-form-fields{margin:0px}.llms-checkout-section-content .llms-label{font-weight:400;font-variant:small-caps;text-transform:lowercase}.llms-checkout-section-content .llms-order-summary{list-style-type:none;margin:0;padding:0}.llms-checkout-section-content .llms-order-summary li{list-style-type:none}.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular,.llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular{text-decoration:line-through}.llms-checkout-section-content .llms-coupon-wrapper{border-top:1px solid #dadada;margin-top:10px;padding-top:10px}.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry{display:none;margin-top:10px}.llms-form-field.llms-payment-gateway-option label+span.llms-description{display:inline-block;margin-right:5px}.llms-form-field.llms-payment-gateway-option .llms-description a{border:none;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.llms-form-field.llms-payment-gateway-option .llms-description img{display:inline;max-height:22px;vertical-align:middle}.llms-checkout-wrapper ul.llms-payment-gateways{margin:5px 0 0;padding:0}ul.llms-payment-gateways{list-style-type:none}ul.llms-payment-gateways li:last-child:after{border-bottom:1px solid #dadada;content:"";display:block;margin:10px}ul.llms-payment-gateways .llms-payment-gateway{margin-bottom:5px;list-style-type:none}ul.llms-payment-gateways .llms-payment-gateway:last-child{margin-bottom:none}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label{font-weight:700}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields{display:block}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice{margin-right:10px;margin-left:10px}ul.llms-payment-gateways .llms-payment-gateway .llms-form-field{padding-bottom:0}ul.llms-payment-gateways .llms-gateway-description{margin-right:40px}ul.llms-payment-gateways .llms-gateway-fields{display:none;margin:5px 0 20px}ul.llms-payment-gateways .llms-payment-gateway-error{padding:0 10px}.llms-checkout-confirm{margin:0 10px}.llms-payment-method{margin:10px 10px 0}.llms-gateway-description p{font-size:85%;font-style:italic;margin-bottom:0}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:right;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:left}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-left:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-left:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:100% 0;background-image:radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 5px 5px 0}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-right:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";right:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}.llms-widget-syllabus--collapsible .llms-section .section-header{cursor:pointer}.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson{display:none}.llms-widget-syllabus--collapsible .llms-syllabus-footer{text-align:right}.llms-student-dashboard .llms-sd-title{margin:25px 0}.llms-student-dashboard .llms-sd-items{list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item{float:right;list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item:last-child .llms-sep{display:none}.llms-student-dashboard .llms-sd-item .llms-sep{color:#333;margin:0 5px}.llms-student-dashboard .llms-sd-section{margin-bottom:25px}.llms-student-dashboard .llms-sd-section .llms-sd-section-footer{margin-top:10px}.llms-student-dashboard .orders-table{border:1px solid #f5f5f5;width:100%}.llms-student-dashboard .orders-table thead{display:none}.llms-student-dashboard .orders-table thead th,.llms-student-dashboard .orders-table thead td{font-weight:700}@media all and (min-width: 600px){.llms-student-dashboard .orders-table thead{display:table-header-group}}.llms-student-dashboard .orders-table tbody tr:nth-child(even) td,.llms-student-dashboard .orders-table tbody tr:nth-child(even) th{background:#f9f9f9}.llms-student-dashboard .orders-table tfoot th,.llms-student-dashboard .orders-table tfoot td{padding:10px;text-align:left}.llms-student-dashboard .orders-table tfoot th:last-child,.llms-student-dashboard .orders-table tfoot td:last-child{border-bottom-width:0}.llms-student-dashboard .orders-table th{font-weight:700}.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-color:#efefef;border-style:solid;border-width:0;display:block;padding:8px 12px;text-align:center}.llms-student-dashboard .orders-table th .llms-button-primary,.llms-student-dashboard .orders-table td .llms-button-primary{display:inline-block}.llms-student-dashboard .orders-table th:last-child,.llms-student-dashboard .orders-table td:last-child{border-bottom-width:1px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{content:attr(data-label)}@media all and (min-width: 600px){.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-bottom-width:1px;display:table-cell;text-align:right}.llms-student-dashboard .orders-table th:first-child,.llms-student-dashboard .orders-table td:first-child{width:220px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{display:none}}@media all and (min-width: 600px){.llms-student-dashboard .orders-table.transactions th:first-child{width:auto}}.llms-student-dashboard .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.llms-student-dashboard .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.llms-student-dashboard .llms-status.llms-active,.llms-student-dashboard .llms-status.llms-completed,.llms-student-dashboard .llms-status.llms-pass,.llms-student-dashboard .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.llms-student-dashboard .llms-status.llms-fail,.llms-student-dashboard .llms-status.llms-failed,.llms-student-dashboard .llms-status.llms-expired,.llms-student-dashboard .llms-status.llms-cancelled,.llms-student-dashboard .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.llms-student-dashboard .llms-status.llms-incomplete,.llms-student-dashboard .llms-status.llms-on-hold,.llms-student-dashboard .llms-status.llms-pending,.llms-student-dashboard .llms-status.llms-pending-cancel,.llms-student-dashboard .llms-status.llms-refunded,.llms-student-dashboard .llms-status.llms-txn-pending,.llms-student-dashboard .llms-status.llms-txn-refunded{color:#664200;background-color:orange}.llms-student-dashboard .llms-person-form-wrapper .llms-change-password{display:none}@media all and (min-width: 600px){.llms-student-dashboard .order-primary{float:right;width:68%}}@media all and (min-width: 600px){.llms-student-dashboard .order-secondary{float:right;width:32%}}.llms-student-dashboard .order-secondary form{margin-bottom:0}@media all and (min-width: 600px){.llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary{float:none;width:100%}}.llms-student-dashboard .llms-switch-payment-source .llms-notice,.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice{margin-right:10px;margin-left:10px}.llms-student-dashboard .llms-switch-payment-source-main{border:none;display:none;margin:0}.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways{padding:10px 15px 0;margin:0}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary{padding:0 25px 10px;margin:0;list-style-type:none}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li{list-style-type:none}.llms-student-dashboard .llms-loop-list{margin:0 -10px}.llms-sd-grades .llms-table .llms-progress{display:block;margin:0}.llms-sd-grades .llms-table .llms-progress .llms-progress-bar{top:0;height:1.4em}.llms-sd-grades .llms-table .llms-progress .progress__indicator{font-size:1em;position:relative;left:.4em;top:.2em;z-index:1}.llms-table.llms-single-course-grades tbody tr:first-child td,.llms-table.llms-single-course-grades tbody tr:first-child th{background-color:#eaeaea}.llms-table.llms-single-course-grades th{font-weight:400}.llms-table.llms-single-course-grades td .llms-donut{display:inline-block;vertical-align:middle}.llms-table.llms-single-course-grades td .llms-status{margin-left:4px}.llms-table.llms-single-course-grades td .llms-donut+.llms-status{margin-right:4px}.llms-table.llms-single-course-grades th.llms-section_title{font-size:110%;font-weight:700}.llms-table.llms-single-course-grades td.llms-lesson_title{padding-right:36px;max-width:40%}.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut{display:inline-block;margin-left:5px;vertical-align:middle}.llms-table.llms-single-course-grades td.llms-lesson_title a[href="#"]{pointer-events:none}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"]{color:inherit;position:relative}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip{max-width:380px;width:380px}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip.show{top:-54px}.llms-sd-widgets{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-sd-widgets .llms-sd-widget{background:#f9f9f9;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:10px 10px 20px;padding:0 0 20px}.llms-sd-widgets .llms-sd-widget:first-child{margin-right:0}.llms-sd-widgets .llms-sd-widget:last-child{margin-left:0}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title{background:#2295ff;color:#fff;font-size:18px;line-height:1;margin:0 0 20px;padding:10px}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty{font-size:14px;font-style:italic;opacity:.5;text-align:center}.llms-sd-widgets .llms-sd-widget .llms-donut{margin:0 auto}.llms-sd-widgets .llms-sd-widget .llms-sd-date{opacity:.8;text-align:center;font-size:22px;line-height:1.1}.llms-sd-widgets .llms-sd-widget .llms-sd-date span{display:block}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day{font-size:52px}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff{font-size:12px;font-style:italic;margin-top:8px;opacity:.75}.llms-sd-widgets .llms-sd-widget .llms-achievement{background:rgba(0,0,0,0);margin:0 auto;max-width:120px}.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title{display:none}.llms-sd-pagination{margin-top:24px}.llms-sd-pagination:before,.llms-sd-pagination:after{content:" ";display:table}.llms-sd-pagination:after{clear:both}.llms-sd-pagination .llms-button-secondary{display:inline-block}.llms-sd-pagination .llms-button-secondary.prev{float:right}.llms-sd-pagination .llms-button-secondary.next{float:left}.llms-sd-notification-center .llms-notification{z-index:1}.llms-table{border:1px solid #efefef;width:100%}.llms-table thead th,.llms-table thead td{font-weight:700}.llms-table tbody tr:nth-child(odd) td,.llms-table tbody tr:nth-child(odd) th{background:#f9f9f9}.llms-table tbody tr:last-child{border-bottom-width:0}.llms-table tfoot tr{background:#f9f9f9}.llms-table tfoot tr .llms-pagination .page-numbers{margin:0}.llms-table tfoot tr .llms-table-sort{text-align:left}.llms-table tfoot tr .llms-table-sort form,.llms-table tfoot tr .llms-table-sort select,.llms-table tfoot tr .llms-table-sort input,.llms-table tfoot tr .llms-table-sort button{margin:0}.llms-table th{font-weight:700}.llms-table th,.llms-table td{border-bottom:1px solid #efefef;padding:8px 12px}.llms-table th:first-child,.llms-table td:first-child{padding-right:12px}.llms-table th:last-child,.llms-table td:last-child{padding-left:12px}#page .llms-table tfoot label{display:inline}#page .llms-table tfoot select{height:auto}/*! +.llms-pagination ul:before,.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:before,.llms-form-fields:before,.llms-checkout-cols-2:before,.llms-access-plans:before,.llms-course-navigation:before,.llms-loop-list:before,.llms-cols:before,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{content:" ";display:table}.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{clear:both}.llms-cols .llms-col{width:100%}@media all and (min-width: 600px){.llms-cols [class*=llms-col-]{float:right}}.llms-flex-cols{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.llms-flex-cols [class*=llms-col]{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:100%}@media all and (min-width: 600px){.llms-cols .llms-col-1,.llms-flex-cols .llms-col-1{width:100%}.llms-cols .llms-col-2,.llms-flex-cols .llms-col-2{width:50%}.llms-cols .llms-col-3,.llms-flex-cols .llms-col-3{width:33.3333333333%}.llms-cols .llms-col-4,.llms-flex-cols .llms-col-4{width:25%}.llms-cols .llms-col-5,.llms-flex-cols .llms-col-5{width:20%}.llms-cols .llms-col-6,.llms-flex-cols .llms-col-6{width:16.6666666667%}.llms-cols .llms-col-7,.llms-flex-cols .llms-col-7{width:14.2857142857%}.llms-cols .llms-col-8,.llms-flex-cols .llms-col-8{width:12.5%}.llms-cols .llms-col-9,.llms-flex-cols .llms-col-9{width:11.1111111111%}.llms-cols .llms-col-10,.llms-flex-cols .llms-col-10{width:10%}.llms-cols .llms-col-11,.llms-flex-cols .llms-col-11{width:9.0909090909%}.llms-cols .llms-col-12,.llms-flex-cols .llms-col-12{width:8.3333333333%}}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{right:-7px;position:relative}.llms-button-primary{background:#2295ff}.llms-button-primary:hover,.llms-button-primary.clicked{background:#0077e4}.llms-button-primary:focus,.llms-button-primary:active{background:#4ba9ff}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.llms-donut{background-color:#f1f1f1;background-image:none;border-radius:50%;color:#ef476f;height:200px;overflow:hidden;position:relative;width:200px}.llms-donut:before,.llms-donut:after{content:" ";display:table}.llms-donut:after{clear:both}.llms-donut svg{overflow:visible !important;pointer-events:none;width:100%}.llms-donut svg path{fill:none;stroke-width:35px;stroke:#ef476f}.llms-donut.mini{height:36px;width:36px}.llms-donut.mini .percentage{font-size:10px}.llms-donut.small{height:100px;width:100px}.llms-donut.small .percentage{font-size:18px}.llms-donut.medium{height:130px;width:130px}.llms-donut.medium .percentage{font-size:26px}.llms-donut.large{height:260px;width:260px}.llms-donut.large .percentage{font-size:48px}.llms-donut .inside{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:80%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;right:50%;position:absolute;text-align:center;-webkit-transform:translate(50%, -50%);transform:translate(50%, -50%);width:80%;top:50%;z-index:3}.llms-donut .percentage{line-height:1.2;font-size:34px}.llms-donut .caption{font-size:50%}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}.llms-membership-image{display:block;margin:0 auto}.llms-course-image{display:block;margin:0 auto;max-width:100%}.llms-featured-image{display:block;margin:0 auto}.llms-image-thumb{width:150px}.llms-video-wrapper .center-video{height:auto;max-width:100%;overflow:hidden;position:relative;padding-top:56.25%;text-align:center}.llms-video-wrapper .center-video>.wp-video,.llms-video-wrapper .center-video .fluid-width-video-wrapper,.llms-video-wrapper .center-video iframe,.llms-video-wrapper .center-video object,.llms-video-wrapper .center-video embed{height:100%;right:0;position:absolute;top:0;width:100%}.llms-video-wrapper .center-video>.wp-video{width:100% !important}.llms-video-wrapper .center-video .fluid-width-video-wrapper{padding-top:0 !important}.clear{clear:both;width:100%}.llms-featured-image{text-align:center}#main-content .llms-payment-options p{margin:0;font-size:16px}.llms-option{display:block;position:relative;margin:20px 0;padding-right:40px;font-size:16px}.llms-option label{cursor:pointer;position:static}.llms-option:first-child{margin-top:0}.llms-option:last-child{margin-bottom:0}#main-content .llms-option:last-child{margin-bottom:0}.llms-option input[type=radio]{display:block;position:absolute;top:3px;right:0;z-index:0}.llms-option input[type=radio]{display:inline-block}.llms-option input[type=radio]+label span.llms-radio{display:none}.llms-option input[type=radio]+label span.llms-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;z-index:20;position:absolute;top:0;right:-2px;display:inline-block;width:24px;height:24px;border-radius:50%;cursor:pointer;vertical-align:middle;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;background:#efefef;background-image:radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);background-repeat:no-repeat;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1)}.llms-option input[type=radio]:checked+label span.llms-radio{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1)}.llms-option input[type=radio]+label span.llms-radio{background-position:-24px 0}.llms-option input[type=radio]:checked+label span.llms-radio{background-position:100% 0}.llms-option input[type=submit]{border:none;background:#e5554e;color:#fff;font-size:20px;padding:10px 0;border-radius:3px;cursor:pointer;width:100%}.llms-styled-text{padding:14px 0}.llms-notice-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;border:1px solid #ccc;list-style-type:none;width:100%;overflow:auto}.llms-notice-box input[type=text]{height:auto}.llms-notice-box .col-1-1{width:100%}.llms-notice-box .col-1-1 input[type=text]{width:100%}.llms-notice-box .col-1-2{width:50%;float:right}@media screen and (max-width: 768px){.llms-notice-box .col-1-2{width:100%}}.llms-notice-box .col-1-3{width:33%;float:right;margin-left:10px}.llms-notice-box .col-1-4{width:25%;float:right;margin-left:10px}@media screen and (max-width: 768px){.llms-notice-box .col-1-4{width:100%}}.llms-notice-box .col-1-6{width:16.6%;float:right;margin-left:10px}.llms-notice-box .col-1-8{width:11%;float:left}.llms-notice-box .llms-pad-right{padding-left:10px}@media screen and (max-width: 768px){.llms-notice-box .llms-pad-right{padding-left:0}}input[type=text].cc_cvv,#cc_cvv{margin-left:0;width:23%;float:left}.llms-clear-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;list-style-type:none;width:100%;overflow:auto}.llms-price-label{font-weight:normal}.llms-final-price{font-weight:bold;float:left}.llms-center-content{text-align:center}.llms-input-text{background-color:#fff;border:1px solid #ddd;color:#333;font-size:18px;font-weight:300;padding:16px;width:100%}.llms-price{margin-bottom:0;font-weight:bold}.llms-price-loop{margin-bottom:0;font-weight:bold}.courses .entry{padding:0}.list-view .site-content .llms-course-list .hentry,.list-view .site-content .llms-membership-list .hentry{border-top:0;padding-top:0}.llms-content{width:100%}.llms-lesson-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-template-wrapper{width:100%;display:block;clear:both}.llms-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-styled-select{border:1px solid #ccc;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px;overflow:hidden;position:relative}.llms-styled-select,.llms-styled-select select{width:100%}select:focus{outline:none}.llms-styled-select select{height:34px;padding:5px 5px 5px 0;background:rgba(0,0,0,0);border:none;-webkit-appearance:none;font-size:16px;color:#444}@-moz-document url-prefix(){.--ms-styled-select select{width:110%}}.llms-styled-select .fa-sort-desc{position:absolute;top:0;left:12px;font-size:24px;color:#ccc}select::-ms-expand{display:none}_:-o-prefocus .llms-styled-select,.selector .llms-styled-select{background:none}.llms-form-item-wrapper{margin-bottom:1em}.llms-progress-circle{position:relative;width:200px;height:200px;float:right}.llms-progress-circle-count{top:27%;position:absolute;width:94%;text-align:center;color:#666;font-size:44px}.llms-progress-circle svg{position:absolute;width:200px;height:200px}.llms-progress-circle circle{fill:rgba(0,0,0,0)}svg .llms-background-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#f1f2f1;stroke-dasharray:430}svg .llms-animated-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#e5554e;stroke-dasharray:430;stroke-dashoffset:410}.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title{font-weight:700}.llms-widget-syllabus .llms-lesson-complete,.llms-widget-syllabus .lesson-complete-placeholder{font-size:1.2em;margin-left:6px;color:#ccc}.llms-widget-syllabus .llms-lesson-complete.done,.llms-widget-syllabus .lesson-complete-placeholder.done{color:#e5554e}.llms-widget-syllabus .section-title{font-weight:bold}.llms-widget-syllabus .lesson-title a{text-decoration:none}.llms-widget-syllabus .lesson-title a:hover{text-decoration:none !important}.llms-widget-syllabus .lesson-title.done a{color:#999;text-decoration:line-through}.llms-widget-syllabus ul{list-style-type:none}.llms-widget-syllabus ul li{list-style-type:none}.llms-widget-syllabus ul li ul li{margin:0 0 2px 0;padding:0}.llms-remove-coupon{float:left}.llms-lesson-link-locked,.llms-lesson-link-locked:hover{background:#f1f1f1;-webkit-box-shadow:0 1px 2px 0 rgba(1,1,1,.4);box-shadow:0 1px 2px 0 rgba(1,1,1,.4);display:block;color:#a6a6a6;min-height:85px;padding:15px;text-decoration:none;position:relative}.llms-lesson-preview.is-complete .llms-lesson-link-locked{padding-right:75px}.llms-lesson-tooltip{display:none;position:absolute;color:#000;background-color:silver;padding:.25em;border-radius:2px;z-index:100;top:0;right:50%;text-align:center;-webkit-transform:translateX(50%) translateY(-100%);transform:translateX(50%) translateY(-100%)}.llms-lesson-tooltip:after{content:"";width:0;height:0;border-top:8px solid silver;border-right:8px solid rgba(0,0,0,0);border-left:8px solid rgba(0,0,0,0);position:absolute;bottom:-8px;right:50%;-webkit-transform:translateX(50%);transform:translateX(50%)}.llms-lesson-tooltip.active{display:inline-block}.llms-loop-list{list-style:none;margin:0 -10px;padding:0}@media all and (min-width: 600px){.llms-loop-list.cols-1 .llms-loop-item{width:100%}.llms-loop-list.cols-2 .llms-loop-item{width:50%}.llms-loop-list.cols-3 .llms-loop-item{width:33.3333333333%}.llms-loop-list.cols-4 .llms-loop-item{width:25%}.llms-loop-list.cols-5 .llms-loop-item{width:20%}.llms-loop-list.cols-6 .llms-loop-item{width:16.6666666667%}}.llms-loop-item{float:right;list-style:none;margin:0;padding:0;width:100%}.llms-loop-item-content{background:#f1f1f1;padding-bottom:10px;margin:10px}.llms-loop-item-content:hover{background:#eaeaea}.llms-loop-item-content .llms-loop-link{color:#212121;display:block}.llms-loop-item-content .llms-loop-link:visited{color:#212121}.llms-loop-item-content .llms-featured-image{display:block;max-width:100%}.llms-loop-item-content .llms-loop-title{margin-top:5px}.llms-loop-item-content .llms-loop-title:hover{color:#2295ff}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author,.llms-loop-item-content .llms-loop-title{padding:0 10px}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author{color:#444;display:block;font-size:13px;margin-bottom:3px}.llms-loop-item-content .llms-meta:last-child,.llms-loop-item-content .llms-author:last-child{margin-bottom:0}.llms-loop-item-content .llms-featured-img-wrap{overflow:hidden}.llms-loop-item-content p{margin-bottom:0}.llms-loop-item-content .llms-progress{margin:0;height:.4em}.llms-loop-item-content .llms-progress .progress__indicator{display:none}.llms-loop-item-content .llms-progress .llms-progress-bar{background-color:#f6f6f6;left:0;top:0}.course .llms-meta-info{margin:20px 0}.course .llms-meta-info .llms-meta-title{margin-bottom:5px}.course .llms-meta-info .llms-meta p{margin-bottom:0}.course .llms-meta-info .llms-meta span{font-weight:700}.course .llms-course-progress{margin:40px auto;max-width:480px;text-align:center}.llms-syllabus-wrapper{margin:15px;text-align:center}.llms-syllabus-wrapper .llms-section-title{margin:25px 0 0}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-back-to-course{width:49%}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-back-to-course{float:right;margin-left:.5%}.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-prev-lesson+.llms-back-to-course{float:left;margin-right:.5%}.llms-lesson-preview{display:inline-block;margin-top:15px;max-width:100%;position:relative;width:480px}.llms-lesson-preview .llms-lesson-link{background:#f1f1f1;color:#212121;display:block;padding:15px;text-decoration:none}.llms-lesson-preview .llms-lesson-link:before,.llms-lesson-preview .llms-lesson-link:after{content:" ";display:table}.llms-lesson-preview .llms-lesson-link:after{clear:both}.llms-lesson-preview .llms-lesson-link:hover{background:#eaeaea}.llms-lesson-preview .llms-lesson-link:visited{color:#212121}.llms-lesson-preview .llms-lesson-thumbnail{margin-bottom:10px}.llms-lesson-preview .llms-lesson-thumbnail img{display:block;width:100%}.llms-lesson-preview .llms-pre-text{text-align:right}.llms-lesson-preview .llms-lesson-title{font-weight:700;margin:0 auto 10px;text-align:right}.llms-lesson-preview .llms-lesson-title:last-child{margin-bottom:0}.llms-lesson-preview .llms-lesson-excerpt{text-align:right}.llms-lesson-preview .llms-main{float:right;width:100%}.llms-lesson-preview .llms-extra{float:left;width:15%}.llms-lesson-preview .llms-extra+.llms-main{width:85%}.llms-lesson-preview .llms-lesson-counter,.llms-lesson-preview .llms-free-lesson-svg,.llms-lesson-preview .llms-lesson-complete,.llms-lesson-preview .llms-lesson-complete-placeholder{display:block;font-size:32px;margin-bottom:15px}.llms-lesson-preview.is-free .llms-lesson-complete,.llms-lesson-preview.is-complete .llms-lesson-complete{color:#2295ff}.llms-lesson-preview .llms-icon-free{background:#2295ff;border-radius:4px;color:#f1f1f1;display:inline-block;padding:5px 6px 4px;line-height:1;font-size:14px}.llms-lesson-preview.is-incomplete .llms-lesson-complete{color:#cacaca}.llms-lesson-preview .llms-lesson-counter{font-size:16px;line-height:1}.llms-lesson-preview .llms-free-lesson-svg{fill:currentColor;height:23px;width:50px}.llms-lesson-preview p{margin-bottom:0}.llms-progress{clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;position:relative;height:1em;width:100%;margin:15px 0}.llms-progress .llms-progress-bar{background-color:#f1f2f1;position:relative;height:.4em;top:.3em;width:100%}.llms-progress .progress-bar-complete{background-color:#ef476f;height:100%}.progress__indicator{float:left;text-align:left;height:1em;line-height:1em;margin-right:5px;white-space:nowrap}.llms-author .name{margin-right:5px}.llms-author .label{margin-right:5px}.llms-author .avatar{border-radius:50%}.llms-author .bio{margin-top:5px}.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author{margin-right:0}.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author{margin-left:0}.llms-instructor-info .llms-instructors .llms-author{background:#f5f5f5;border-top:4px solid #2295ff;text-align:center;margin:45px 5px 5px;padding:0 10px 10px}.llms-instructor-info .llms-instructors .llms-author .avatar{background:#2295ff;border:4px solid #2295ff;display:block;margin:-35px auto 10px}.llms-instructor-info .llms-instructors .llms-author .llms-author-info{display:block}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name{font-weight:700}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label{font-size:85%}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio{font-size:90%;margin-bottom:0}.llms_review{margin:20px 0px;padding:10px}.llms_review h5{font-size:17px;margin:3px 0px}.llms_review h6{font-size:13px}.llms_review p{font-size:15px}.review_box [type=text]{margin:10px 0px}.review_box h5{color:red;display:none}.review_box+.thank_you_box{display:none}.llms-notice{background:rgba(34,149,255,.3);border-color:#2295ff;border-style:solid;border-width:3px;padding:10px;margin-bottom:10px}.llms-notice p:last-child,.llms-notice ul:last-child{margin-bottom:0}.llms-notice li{list-style-type:none}.llms-notice.llms-debug{background:rgba(202,202,202,.3);border-color:#cacaca}.llms-notice.llms-error{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-notice.llms-success{background:rgba(131,195,115,.3);border-color:#83c373}.entry-content .llms-notice{margin:0 0 10px}.entry-content .llms-notice li{list-style-type:none}ul.llms-achievements-loop,.lifterlms ul.llms-achievements-loop,ul.llms-certificates-loop,.lifterlms ul.llms-certificates-loop{list-style-type:none;margin:0 -10px;padding:0}ul.llms-achievements-loop:before,ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:before,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:before,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:before,.lifterlms ul.llms-certificates-loop:after{content:" ";display:table}ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:after{clear:both}ul.llms-achievements-loop li.llms-achievement-loop-item,ul.llms-achievements-loop li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,ul.llms-certificates-loop li.llms-achievement-loop-item,ul.llms-certificates-loop li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:right;list-style-type:none;margin:0;padding:10px;width:100%}@media all and (min-width: 600px){ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item{width:100%}ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item{width:50%}ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item{width:33.3333333333%}ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item{width:25%}ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item{width:20%}}.llms-achievement,.llms-certificate{background:#f1f1f1;border:none;color:inherit;display:block;text-decoration:none;width:100%}.llms-achievement:hover,.llms-certificate:hover{background:#eaeaea}.llms-achievement .llms-achievement-img,.llms-certificate .llms-achievement-img{display:block;margin:0;width:100%}.llms-achievement .llms-achievement-title,.llms-certificate .llms-achievement-title{font-size:16px;margin:0;padding:10px;text-align:center}.llms-achievement .llms-certificate-title,.llms-certificate .llms-certificate-title{font-size:16px;margin:0;padding:0 0 10px}.llms-achievement .llms-achievement-info,.llms-achievement .llms-achievement-date,.llms-certificate .llms-achievement-info,.llms-certificate .llms-achievement-date{display:none}.llms-achievement .llms-achievement-content,.llms-certificate .llms-achievement-content{padding:20px}.llms-achievement .llms-achievement-content:empty,.llms-certificate .llms-achievement-content:empty{padding:0}.llms-achievement .llms-achievement-content *:last-child,.llms-certificate .llms-achievement-content *:last-child{margin-bottom:0}.llms-certificate{border:4px double #f1f1f1;padding:20px 10px;background:#fff;text-align:center}.llms-certificate:hover{background:#fff;border-color:#eaeaea}.llms-achievement-modal .llms-achievement{background:#fff}.llms-achievement-modal .llms-achievement-info{display:block}.llms-achievement-modal .llms-achievement-title{display:none}.llms-notification{background:#fff;-webkit-box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;border-top:4px solid #2295ff;opacity:0;padding:12px;position:fixed;left:-800px;top:24px;-webkit-transition:opacity .4s ease-in-out,left .4s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out;visibility:hidden;width:auto;z-index:9999999}.llms-notification:before,.llms-notification:after{content:" ";display:table}.llms-notification:after{clear:both}.llms-notification.visible{right:12px;opacity:1;left:12px;-webkit-transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out;transition:opacity .4s ease-in-out,left .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;visibility:visible}.llms-notification.visible:hover .llms-notification-dismiss{opacity:1}.llms-notification .llms-notification-content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.llms-notification .llms-notification-main{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:4;-ms-flex:4;flex:4;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.llms-notification .llms-notification-title{font-size:18px;margin:0}.llms-notification .llms-notification-body{font-size:14px;line-height:1.4}.llms-notification .llms-notification-body p,.llms-notification .llms-notification-body li{font-size:inherit}.llms-notification .llms-notification-body p{margin-bottom:8px}.llms-notification .llms-notification-body .llms-mini-cert{background:#f6f6f6;border:1px solid #d0d0d0;-webkit-box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;padding:16px 16px 24px;margin-top:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title{font-size:16px;font-weight:700;margin:12px auto;text-align:center}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body{width:100%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(1){width:65%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(2){width:35%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(3){width:85%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(4){width:75%;margin-top:18px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(5){width:70%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(6){margin-right:12px;margin-bottom:-24px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(7){width:65%;margin-left:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line{border-radius:2px;height:8px;background:#b0b0b0;background-image:-webkit-gradient(linear, right top, left top, from(#b0b0b0), color-stop(20%, #a0a0a0), color-stop(40%, #b0b0b0), to(#b0b0b0));background-image:linear-gradient(to left, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);background-repeat:no-repeat;margin:4px auto}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot{background:#b0b0b0;border-radius:50%;display:inline-block;content:"";height:24px;width:24px}.llms-notification .llms-notification-body .llms-mini-cert p{margin-bottom:0}.llms-notification .llms-notification-aside{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:12px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.llms-notification .llms-notification-icon{display:block;max-width:64px}.llms-notification .llms-notification-footer{border-top:1px solid #e5e5e5;font-size:12px;margin-top:12px;padding:6px 6px 0;text-align:left}.llms-notification .llms-notification-dismiss{color:#e5554e;cursor:pointer;font-size:22px;position:absolute;left:10px;top:8px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.llms-sd-notification-center .llms-notification-list,.llms-sd-notification-center .llms-notification-list-item{list-style-type:none;margin:0;padding:0}.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification{background:#fcfcfc}.llms-sd-notification-center .llms-notification{opacity:1;border-top:1px solid #e5e5e5;right:auto;padding:24px;position:relative;left:auto;top:auto;visibility:visible;width:auto}.llms-sd-notification-center .llms-notification .llms-notification-aside{max-width:64px}.llms-sd-notification-center .llms-notification .llms-notification-footer{border:none;padding:0;text-align:right}.llms-sd-notification-center .llms-notification .llms-progress{display:none !important}.llms-sd-notification-center .llms-notification .llms-notification-date{color:#515151;float:right;margin-left:6px}.llms-sd-notification-center .llms-notification .llms-mini-cert{margin:0 auto;max-width:380px}@media all and (min-width: 480px){.llms-notification{left:-800px;width:360px}.llms-notification.visible{right:auto;left:24px}.llms-notification .llms-notification-dismiss{opacity:0}}.llms-pagination ul{list-style-type:none}.llms-pagination ul li{float:right}.llms-pagination ul li a{border-bottom:0;text-decoration:none}.llms-pagination ul li .page-numbers{padding:.5em;text-decoration:underline}.llms-pagination ul li .page-numbers.current{text-decoration:none}.llms-tooltip{background:#2a2a2a;border-radius:4px;color:#fff;font-size:14px;line-height:1.2;opacity:0;top:-20px;padding:8px 12px;right:50%;position:absolute;pointer-events:none;-webkit-transform:translateX(50%);transform:translateX(50%);-webkit-transition:opacity .2s ease,top .2s ease;transition:opacity .2s ease,top .2s ease;max-width:320px}.llms-tooltip.show{top:-28px;opacity:1}.llms-tooltip:after{bottom:-8px;border-top:8px solid #2a2a2a;border-right:8px solid rgba(0,0,0,0);border-left:8px solid rgba(0,0,0,0);content:"";height:0;right:50%;position:absolute;-webkit-transform:translateX(50%);transform:translateX(50%);width:0}.webui-popover-title{font-size:initial;font-weight:initial;line-height:initial}.webui-popover-inverse .webui-popover-inner .close{color:#fff;opacity:.6;text-shadow:none}.webui-popover-inverse .webui-popover-inner .close:hover{opacity:.8}.webui-popover-inverse .webui-popover-content a{color:#fff;text-decoration:underline}.webui-popover-inverse .webui-popover-content a:hover{text-decoration:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative;list-style-type:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 10px 10px 35px;text-decoration:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:right;margin:0;line-height:1}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:left;line-height:1}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;left:-12px;top:-2px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 30px 0 0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-right:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.single-llms_quiz .llms-return{margin-bottom:10px}.single-llms_quiz .llms-quiz-results:before,.single-llms_quiz .llms-quiz-results:after{content:" ";display:table}.single-llms_quiz .llms-quiz-results:after{clear:both}.single-llms_quiz .llms-quiz-results .llms-donut.passing{color:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path{stroke:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.pending{color:#555}.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path{stroke:#555}.single-llms_quiz .llms-quiz-results .llms-donut.failing{color:#e5554e}.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path{stroke:#e5554e}.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{margin-bottom:20px}@media all and (min-width: 600px){.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside{float:right;width:220px}.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{float:left;width:calc(100% - 300px)}.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{clear:left}}.single-llms_quiz ul.llms-quiz-meta-info,.single-llms_quiz ul.llms-quiz-meta-info li{list-style-type:none;margin:0;padding:0}.single-llms_quiz ul.llms-quiz-meta-info{margin-bottom:10px}.single-llms_quiz .llms-quiz-buttons{margin-top:10px;text-align:right}.single-llms_quiz .llms-quiz-buttons form{display:inline-block}.llms-quiz-question-wrapper{min-height:140px;position:relative}.llms-quiz-question-wrapper .llms-quiz-loading{bottom:20px;right:0;position:absolute;left:0;text-align:center;z-index:1}.llms-quiz-ui{background:#fcfcfc;padding:20px;position:relative}.llms-quiz-ui .llms-quiz-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 0 30px}.llms-quiz-ui .llms-progress{background-color:#f1f2f1;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:8px;margin:0;overflow:hidden}.llms-quiz-ui .llms-progress .progress-bar-complete{-webkit-transition:width .3s ease-in;transition:width .3s ease-in;width:0}.llms-quiz-ui .llms-error{background:#e5554e;border-radius:4px;color:#fff;margin:10px 0;padding:10px}.llms-quiz-ui .llms-error:before,.llms-quiz-ui .llms-error:after{content:" ";display:table}.llms-quiz-ui .llms-error:after{clear:both}.llms-quiz-ui .llms-error a{color:rgba(255,255,255,.6);float:left;font-size:22px;line-height:1;text-decoration:none}.llms-quiz-ui .llms-quiz-counter{display:none;color:#6a6a6a;float:left;font-size:18px}.llms-quiz-ui .llms-quiz-counter .llms-sep{margin:0 5px}.llms-quiz-ui .llms-quiz-nav{margin-top:20px}.llms-quiz-ui .llms-quiz-nav button{margin:0 0 0 10px}.llms-question-wrapper .llms-question-text{font-size:30px;font-weight:400;margin-bottom:15px}.llms-question-wrapper ol.llms-question-choices{list-style-type:none;margin:0;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice{border-bottom:1px solid #e8e8e8;margin:0;padding:0;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label{display:inline-block;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker{bottom:10px;margin:0;position:absolute;left:10px}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image{margin:2px;padding:20px;-webkit-transition:background .4s ease;transition:background .4s ease}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img{display:block;width:100%}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked~.llms-choice-image{background:#efefef}.llms-question-wrapper ol.llms-question-choices li.llms-choice input{display:none;right:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.llms-question-wrapper ol.llms-question-choices li.llms-choice label{display:block;margin:0;padding:10px 20px;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker{background:#f0f0f0;display:inline-block;font-size:20px;height:40px;line-height:40px;margin-left:10px;text-align:center;-webkit-transition:all .2s ease;transition:all .2s ease;vertical-align:middle;width:40px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister,.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox{border-radius:4px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio{border-radius:50%}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker{background:#ef476f;color:#fff}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text{display:inline-block;font-size:18px;font-weight:400;line-height:1.6;margin-bottom:0;vertical-align:middle;width:calc(100% - 60px)}.llms-quiz-timer{background:#fff;border:1px solid #83c373;border-radius:4px;color:#83c373;float:left;font-size:18px;line-height:1;margin-right:20px;padding:8px 12px;position:relative;white-space:nowrap;z-index:1}.llms-quiz-timer.color-half{border-color:#ff922b;color:#ff922b}.llms-quiz-timer.color-empty{border-color:#e5554e;color:#e5554e}.llms-quiz-timer .llms-tiles{display:inline-block;margin-right:5px}.voucher-expand{display:none}@media all and (min-width: 600px){.llms-access-plans.cols-1 .llms-access-plan{width:100%}.llms-access-plans.cols-2 .llms-access-plan{width:50%}.llms-access-plans.cols-3 .llms-access-plan{width:33.3333333333%}.llms-access-plans.cols-4 .llms-access-plan{width:25%}.llms-access-plans.cols-5 .llms-access-plan{width:20%}}.llms-free-enroll-form{margin-bottom:0}.llms-access-plan{-webkit-box-sizing:border-box;box-sizing:border-box;float:right;text-align:center;width:100%}.llms-access-plan .llms-access-plan-footer,.llms-access-plan .llms-access-plan-content{background:#f1f1f1}.llms-access-plan.featured .llms-access-plan-featured{background:#4ba9ff}.llms-access-plan.featured .llms-access-plan-footer,.llms-access-plan.featured .llms-access-plan-content{border-right:3px solid #2295ff;border-left:3px solid #2295ff}.llms-access-plan.featured .llms-access-plan-footer{border-bottom-color:#2295ff}.llms-access-plan.on-sale .price-regular{text-decoration:line-through}.llms-access-plan .stamp{background:#2295ff;color:#fff;font-size:11px;font-style:normal;font-weight:300;padding:2px 3px;vertical-align:top}.llms-access-plan .llms-access-plan-restrictions ul{margin:0}.llms-access-plan-featured{color:#fff;font-size:14px;font-weight:400;margin:0 2px 0 2px}.llms-access-plan-content{margin:0 2px 0}.llms-access-plan-content .llms-access-plan-pricing{padding:10px 0 0}.llms-access-plan-title{background:#2295ff;color:#fff;margin-bottom:0;padding:10px}.llms-access-plan-pricing .llms-price-currency-symbol{font-size:14px;vertical-align:top}.llms-access-plan-price{font-size:18px;font-variant:small-caps;line-height:20px}.llms-access-plan-price .lifterlms-price{font-weight:700}.llms-access-plan-price.sale{padding:5px 0;border-top:1px solid #d0d0d0;border-bottom:1px solid #d0d0d0}.llms-access-plan-trial,.llms-access-plan-schedule,.llms-access-plan-sale-end,.llms-access-plan-expiration{font-size:15px;font-variant:small-caps;line-height:1.2}.llms-access-plan-description{font-size:16px;padding:10px 10px 0}.llms-access-plan-description ul{margin:0}.llms-access-plan-description ul li{border-bottom:1px solid #d0d0d0;list-style-type:none}.llms-access-plan-description ul li:last-child{border-bottom:none}.llms-access-plan-description div:last-child,.llms-access-plan-description img:last-child,.llms-access-plan-description p:last-child,.llms-access-plan-description ul:last-child,.llms-access-plan-description li:last-child{margin-bottom:0}.llms-access-plan-restrictions .stamp{vertical-align:baseline}.llms-access-plan-restrictions ul{margin:0}.llms-access-plan-restrictions ul li{font-size:12px;line-height:14px;list-style-type:none}.llms-access-plan-restrictions a{color:#f8954f}.llms-access-plan-restrictions a:hover{color:#f67d28}.llms-access-plan-footer{border-bottom:3px solid #f1f1f1;padding:10px;margin:0 2px 2px 2px}.llms-access-plan-footer .llms-access-plan-pricing{padding:0 0 10px}.webui-popover-content .llms-members-only-restrictions{text-align:center}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li,.webui-popover-content .llms-members-only-restrictions p{margin:0;padding:0}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li{list-style-type:none}.webui-popover-content .llms-members-only-restrictions li{padding:8px 0;border-top:1px solid #3b3b3b}.webui-popover-content .llms-members-only-restrictions li:first-child{border-top:none}.webui-popover-content .llms-members-only-restrictions li a{display:block}.llms-checkout-wrapper form.llms-login{border:3px solid #2295ff;display:none;margin-bottom:10px}.llms-checkout-wrapper .llms-form-heading{background:#2295ff;color:#fff;margin:0 0 5px;padding:10px}.llms-checkout{background:#fff;position:relative}@media all and (min-width: 800px){.llms-checkout-cols-2 .llms-checkout-col{float:right}.llms-checkout-cols-2 .llms-checkout-col.llms-col-1{margin-left:5px;width:calc(58% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2{margin-right:5px;width:calc(42% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button{width:100%}}.llms-checkout-section{border:3px solid #2295ff;margin-bottom:10px;position:relative}.llms-checkout-section-content{margin:10px}.llms-checkout-section-content.llms-form-fields{margin:0px}.llms-checkout-section-content .llms-label{font-weight:400;font-variant:small-caps;text-transform:lowercase}.llms-checkout-section-content .llms-order-summary{list-style-type:none;margin:0;padding:0}.llms-checkout-section-content .llms-order-summary li{list-style-type:none}.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular,.llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular{text-decoration:line-through}.llms-checkout-section-content .llms-coupon-wrapper{border-top:1px solid #dadada;margin-top:10px;padding-top:10px}.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry{display:none;margin-top:10px}.llms-form-field.llms-payment-gateway-option label+span.llms-description{display:inline-block;margin-right:5px}.llms-form-field.llms-payment-gateway-option .llms-description a{border:none;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.llms-form-field.llms-payment-gateway-option .llms-description img{display:inline;max-height:22px;vertical-align:middle}.llms-checkout-wrapper ul.llms-payment-gateways{margin:5px 0 0;padding:0}ul.llms-payment-gateways{list-style-type:none}ul.llms-payment-gateways li:last-child:after{border-bottom:1px solid #dadada;content:"";display:block;margin:10px}ul.llms-payment-gateways .llms-payment-gateway{margin-bottom:5px;list-style-type:none}ul.llms-payment-gateways .llms-payment-gateway:last-child{margin-bottom:none}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label{font-weight:700}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields{display:block}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice{margin-right:10px;margin-left:10px}ul.llms-payment-gateways .llms-payment-gateway .llms-form-field{padding-bottom:0}ul.llms-payment-gateways .llms-gateway-description{margin-right:40px}ul.llms-payment-gateways .llms-gateway-fields{display:none;margin:5px 0 20px}ul.llms-payment-gateways .llms-payment-gateway-error{padding:0 10px}.llms-checkout-confirm{margin:0 10px}.llms-payment-method{margin:10px 10px 0}.llms-gateway-description p{font-size:85%;font-style:italic;margin-bottom:0}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:right;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:left}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-left:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-left:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:100% 0;background-image:radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 5px 5px 0}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-right:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";right:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}.llms-widget-syllabus--collapsible .llms-section .section-header{cursor:pointer}.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson{display:none}.llms-widget-syllabus--collapsible .llms-syllabus-footer{text-align:right}.llms-student-dashboard .llms-sd-title{margin:25px 0}.llms-student-dashboard .llms-sd-items{list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item{float:right;list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item:last-child .llms-sep{display:none}.llms-student-dashboard .llms-sd-item .llms-sep{color:#333;margin:0 5px}.llms-student-dashboard .llms-sd-section{margin-bottom:25px}.llms-student-dashboard .llms-sd-section .llms-sd-section-footer{margin-top:10px}.llms-student-dashboard .orders-table{border:1px solid #f5f5f5;width:100%}.llms-student-dashboard .orders-table thead{display:none}.llms-student-dashboard .orders-table thead th,.llms-student-dashboard .orders-table thead td{font-weight:700}@media all and (min-width: 600px){.llms-student-dashboard .orders-table thead{display:table-header-group}}.llms-student-dashboard .orders-table tbody tr:nth-child(even) td,.llms-student-dashboard .orders-table tbody tr:nth-child(even) th{background:#f9f9f9}.llms-student-dashboard .orders-table tfoot th,.llms-student-dashboard .orders-table tfoot td{padding:10px;text-align:left}.llms-student-dashboard .orders-table tfoot th:last-child,.llms-student-dashboard .orders-table tfoot td:last-child{border-bottom-width:0}.llms-student-dashboard .orders-table th{font-weight:700}.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-color:#efefef;border-style:solid;border-width:0;display:block;padding:8px 12px;text-align:center}.llms-student-dashboard .orders-table th .llms-button-primary,.llms-student-dashboard .orders-table td .llms-button-primary{display:inline-block}.llms-student-dashboard .orders-table th:last-child,.llms-student-dashboard .orders-table td:last-child{border-bottom-width:1px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{content:attr(data-label)}@media all and (min-width: 600px){.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-bottom-width:1px;display:table-cell;text-align:right}.llms-student-dashboard .orders-table th:first-child,.llms-student-dashboard .orders-table td:first-child{width:220px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{display:none}}@media all and (min-width: 600px){.llms-student-dashboard .orders-table.transactions th:first-child{width:auto}}.llms-student-dashboard .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.llms-student-dashboard .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.llms-student-dashboard .llms-status.llms-active,.llms-student-dashboard .llms-status.llms-completed,.llms-student-dashboard .llms-status.llms-pass,.llms-student-dashboard .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.llms-student-dashboard .llms-status.llms-fail,.llms-student-dashboard .llms-status.llms-failed,.llms-student-dashboard .llms-status.llms-expired,.llms-student-dashboard .llms-status.llms-cancelled,.llms-student-dashboard .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.llms-student-dashboard .llms-status.llms-incomplete,.llms-student-dashboard .llms-status.llms-on-hold,.llms-student-dashboard .llms-status.llms-pending,.llms-student-dashboard .llms-status.llms-pending-cancel,.llms-student-dashboard .llms-status.llms-refunded,.llms-student-dashboard .llms-status.llms-txn-pending,.llms-student-dashboard .llms-status.llms-txn-refunded{color:#664200;background-color:orange}.llms-student-dashboard .llms-person-form-wrapper .llms-change-password{display:none}@media all and (min-width: 600px){.llms-student-dashboard .order-primary{float:right;width:68%}}@media all and (min-width: 600px){.llms-student-dashboard .order-secondary{float:right;width:32%}}.llms-student-dashboard .order-secondary form{margin-bottom:0}@media all and (min-width: 600px){.llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary{float:none;width:100%}}.llms-student-dashboard .llms-switch-payment-source .llms-notice,.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice{margin-right:10px;margin-left:10px}.llms-student-dashboard .llms-switch-payment-source-main{border:none;display:none;margin:0}.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways{padding:10px 15px 0;margin:0}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary{padding:0 25px 10px;margin:0;list-style-type:none}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li{list-style-type:none}.llms-student-dashboard .llms-loop-list{margin:0 -10px}.llms-sd-grades .llms-table .llms-progress{display:block;margin:0}.llms-sd-grades .llms-table .llms-progress .llms-progress-bar{top:0;height:1.4em}.llms-sd-grades .llms-table .llms-progress .progress__indicator{font-size:1em;position:relative;left:.4em;top:.2em;z-index:1}.llms-table.llms-single-course-grades tbody tr:first-child td,.llms-table.llms-single-course-grades tbody tr:first-child th{background-color:#eaeaea}.llms-table.llms-single-course-grades th{font-weight:400}.llms-table.llms-single-course-grades td .llms-donut{display:inline-block;vertical-align:middle}.llms-table.llms-single-course-grades td .llms-status{margin-left:4px}.llms-table.llms-single-course-grades td .llms-donut+.llms-status{margin-right:4px}.llms-table.llms-single-course-grades th.llms-section_title{font-size:110%;font-weight:700}.llms-table.llms-single-course-grades td.llms-lesson_title{padding-right:36px;max-width:40%}.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut{display:inline-block;margin-left:5px;vertical-align:middle}.llms-table.llms-single-course-grades td.llms-lesson_title a[href="#"]{pointer-events:none}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"]{color:inherit;position:relative}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip{max-width:380px;width:380px}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip.show{top:-54px}.llms-sd-widgets{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-sd-widgets .llms-sd-widget{background:#f9f9f9;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:10px 10px 20px;padding:0 0 20px}.llms-sd-widgets .llms-sd-widget:first-child{margin-right:0}.llms-sd-widgets .llms-sd-widget:last-child{margin-left:0}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title{background:#2295ff;color:#fff;font-size:18px;line-height:1;margin:0 0 20px;padding:10px}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty{font-size:14px;font-style:italic;opacity:.5;text-align:center}.llms-sd-widgets .llms-sd-widget .llms-donut{margin:0 auto}.llms-sd-widgets .llms-sd-widget .llms-sd-date{opacity:.8;text-align:center;font-size:22px;line-height:1.1}.llms-sd-widgets .llms-sd-widget .llms-sd-date span{display:block}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day{font-size:52px}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff{font-size:12px;font-style:italic;margin-top:8px;opacity:.75}.llms-sd-widgets .llms-sd-widget .llms-achievement{background:rgba(0,0,0,0);margin:0 auto;max-width:120px}.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title{display:none}.llms-sd-pagination{margin-top:24px}.llms-sd-pagination:before,.llms-sd-pagination:after{content:" ";display:table}.llms-sd-pagination:after{clear:both}.llms-sd-pagination .llms-button-secondary{display:inline-block}.llms-sd-pagination .llms-button-secondary.prev{float:right}.llms-sd-pagination .llms-button-secondary.next{float:left}.llms-sd-notification-center .llms-notification{z-index:1}.llms-table{border:1px solid #efefef;width:100%}.llms-table thead th,.llms-table thead td{font-weight:700}.llms-table tbody tr:nth-child(odd) td,.llms-table tbody tr:nth-child(odd) th{background:#f9f9f9}.llms-table tbody tr:last-child{border-bottom-width:0}.llms-table tfoot tr{background:#f9f9f9}.llms-table tfoot tr .llms-pagination .page-numbers{margin:0}.llms-table tfoot tr .llms-table-sort{text-align:left}.llms-table tfoot tr .llms-table-sort form,.llms-table tfoot tr .llms-table-sort select,.llms-table tfoot tr .llms-table-sort input,.llms-table tfoot tr .llms-table-sort button{margin:0}.llms-table th{font-weight:700}.llms-table th,.llms-table td{border-bottom:1px solid #efefef;padding:8px 12px}.llms-table th:first-child,.llms-table td:first-child{padding-right:12px}.llms-table th:last-child,.llms-table td:last-child{padding-left:12px}#page .llms-table tfoot label{display:inline}#page .llms-table tfoot select{height:auto}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */@font-face{font-family:"FontAwesome";src:url("../fonts/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-right:0;margin-right:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;right:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{right:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:right}.fa-pull-right{float:left}.fa.fa-pull-left{margin-left:.3em}.fa.fa-pull-right{margin-right:.3em}.pull-right{float:left}.pull-left{float:right}.fa.pull-left{margin-left:.3em}.fa.pull-right{margin-right:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(-270deg);transform:rotate(-270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;right:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/assets/css/lifterlms.css b/assets/css/lifterlms.css index 075e0d43ca..a1aa861f1f 100644 --- a/assets/css/lifterlms.css +++ b/assets/css/lifterlms.css @@ -2024,65 +2024,66 @@ ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item, text-decoration: none; } -.single-llms_quiz .llms-quiz-attempt-results { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results { margin: 0; padding: 0; list-style-type: none; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question { background: #efefef; margin: 0 0 10px; position: relative; + list-style-type: none; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer { color: inherit; display: block; padding: 10px 35px 10px 10px; text-decoration: none; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { content: " "; display: table; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after { clear: both; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect { background: rgba(255, 146, 43, 0.2); } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon { background-color: #ff922b; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct { background: rgba(131, 195, 115, 0.2); } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon { background-color: #83c373; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect { background: rgba(229, 85, 78, 0.2); } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon { background-color: #e5554e; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question pre { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question pre { overflow: auto; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title { float: left; margin: 0; line-height: 1; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points { float: right; line-height: 1; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip { position: absolute; right: -12px; top: -2px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon { color: rgba(255, 255, 255, 0.65); border-radius: 50%; font-size: 30px; @@ -2091,55 +2092,55 @@ ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item, text-align: center; width: 40px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main { display: none; padding: 0 10px 10px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label { font-weight: 700; margin-bottom: 10px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers { margin: 0; padding: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { padding: 0; margin: 0 0 0 30px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child { list-style-type: none; margin-left: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img { height: auto; max-width: 200px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section { border-top: 2px solid rgba(255, 255, 255, 0.5); margin-top: 20px; padding-top: 20px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child { border-top: none; margin-top: 0; padding-top: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers { list-style-type: none; margin: 0; padding: 0; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer { display: inline-block; list-style-type: none; margin: 0; padding: 5px; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed { opacity: 0.5; } -.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title { +.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title { font-style: italic; font-weight: normal; } @@ -2183,9 +2184,12 @@ ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item, } .single-llms_quiz .llms-quiz-results .llms-quiz-results-main, .single-llms_quiz .llms-quiz-results .llms-quiz-results-history { - float: left; + float: right; width: calc(100% - 300px); } + .single-llms_quiz .llms-quiz-results .llms-quiz-results-history { + clear: right; + } } .single-llms_quiz ul.llms-quiz-meta-info, .single-llms_quiz ul.llms-quiz-meta-info li { diff --git a/assets/css/lifterlms.min.css b/assets/css/lifterlms.min.css index a109d63708..4386a13e6f 100644 --- a/assets/css/lifterlms.min.css +++ b/assets/css/lifterlms.min.css @@ -1,4 +1,4 @@ -.llms-pagination ul:before,.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:before,.llms-form-fields:before,.llms-checkout-cols-2:before,.llms-access-plans:before,.llms-course-navigation:before,.llms-loop-list:before,.llms-cols:before,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{content:" ";display:table}.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{clear:both}.llms-cols .llms-col{width:100%}@media all and (min-width: 600px){.llms-cols [class*=llms-col-]{float:left}}.llms-flex-cols{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.llms-flex-cols [class*=llms-col]{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:100%}@media all and (min-width: 600px){.llms-cols .llms-col-1,.llms-flex-cols .llms-col-1{width:100%}.llms-cols .llms-col-2,.llms-flex-cols .llms-col-2{width:50%}.llms-cols .llms-col-3,.llms-flex-cols .llms-col-3{width:33.3333333333%}.llms-cols .llms-col-4,.llms-flex-cols .llms-col-4{width:25%}.llms-cols .llms-col-5,.llms-flex-cols .llms-col-5{width:20%}.llms-cols .llms-col-6,.llms-flex-cols .llms-col-6{width:16.6666666667%}.llms-cols .llms-col-7,.llms-flex-cols .llms-col-7{width:14.2857142857%}.llms-cols .llms-col-8,.llms-flex-cols .llms-col-8{width:12.5%}.llms-cols .llms-col-9,.llms-flex-cols .llms-col-9{width:11.1111111111%}.llms-cols .llms-col-10,.llms-flex-cols .llms-col-10{width:10%}.llms-cols .llms-col-11,.llms-flex-cols .llms-col-11{width:9.0909090909%}.llms-cols .llms-col-12,.llms-flex-cols .llms-col-12{width:8.3333333333%}}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{left:-7px;position:relative}.llms-button-primary{background:#2295ff}.llms-button-primary:hover,.llms-button-primary.clicked{background:#0077e4}.llms-button-primary:focus,.llms-button-primary:active{background:#4ba9ff}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.llms-donut{background-color:#f1f1f1;background-image:none;border-radius:50%;color:#ef476f;height:200px;overflow:hidden;position:relative;width:200px}.llms-donut:before,.llms-donut:after{content:" ";display:table}.llms-donut:after{clear:both}.llms-donut svg{overflow:visible !important;pointer-events:none;width:100%}.llms-donut svg path{fill:none;stroke-width:35px;stroke:#ef476f}.llms-donut.mini{height:36px;width:36px}.llms-donut.mini .percentage{font-size:10px}.llms-donut.small{height:100px;width:100px}.llms-donut.small .percentage{font-size:18px}.llms-donut.medium{height:130px;width:130px}.llms-donut.medium .percentage{font-size:26px}.llms-donut.large{height:260px;width:260px}.llms-donut.large .percentage{font-size:48px}.llms-donut .inside{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:80%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:50%;position:absolute;text-align:center;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:80%;top:50%;z-index:3}.llms-donut .percentage{line-height:1.2;font-size:34px}.llms-donut .caption{font-size:50%}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}.llms-membership-image{display:block;margin:0 auto}.llms-course-image{display:block;margin:0 auto;max-width:100%}.llms-featured-image{display:block;margin:0 auto}.llms-image-thumb{width:150px}.llms-video-wrapper .center-video{height:auto;max-width:100%;overflow:hidden;position:relative;padding-top:56.25%;text-align:center}.llms-video-wrapper .center-video>.wp-video,.llms-video-wrapper .center-video .fluid-width-video-wrapper,.llms-video-wrapper .center-video iframe,.llms-video-wrapper .center-video object,.llms-video-wrapper .center-video embed{height:100%;left:0;position:absolute;top:0;width:100%}.llms-video-wrapper .center-video>.wp-video{width:100% !important}.llms-video-wrapper .center-video .fluid-width-video-wrapper{padding-top:0 !important}.clear{clear:both;width:100%}.llms-featured-image{text-align:center}#main-content .llms-payment-options p{margin:0;font-size:16px}.llms-option{display:block;position:relative;margin:20px 0;padding-left:40px;font-size:16px}.llms-option label{cursor:pointer;position:static}.llms-option:first-child{margin-top:0}.llms-option:last-child{margin-bottom:0}#main-content .llms-option:last-child{margin-bottom:0}.llms-option input[type=radio]{display:block;position:absolute;top:3px;left:0;z-index:0}.llms-option input[type=radio]{display:inline-block}.llms-option input[type=radio]+label span.llms-radio{display:none}.llms-option input[type=radio]+label span.llms-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;z-index:20;position:absolute;top:0;left:-2px;display:inline-block;width:24px;height:24px;border-radius:50%;cursor:pointer;vertical-align:middle;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;background:#efefef;background-image:radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);background-repeat:no-repeat;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1)}.llms-option input[type=radio]:checked+label span.llms-radio{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1)}.llms-option input[type=radio]+label span.llms-radio{background-position:-24px 0}.llms-option input[type=radio]:checked+label span.llms-radio{background-position:0 0}.llms-option input[type=submit]{border:none;background:#e5554e;color:#fff;font-size:20px;padding:10px 0;border-radius:3px;cursor:pointer;width:100%}.llms-styled-text{padding:14px 0}.llms-notice-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;border:1px solid #ccc;list-style-type:none;width:100%;overflow:auto}.llms-notice-box input[type=text]{height:auto}.llms-notice-box .col-1-1{width:100%}.llms-notice-box .col-1-1 input[type=text]{width:100%}.llms-notice-box .col-1-2{width:50%;float:left}@media screen and (max-width: 768px){.llms-notice-box .col-1-2{width:100%}}.llms-notice-box .col-1-3{width:33%;float:left;margin-right:10px}.llms-notice-box .col-1-4{width:25%;float:left;margin-right:10px}@media screen and (max-width: 768px){.llms-notice-box .col-1-4{width:100%}}.llms-notice-box .col-1-6{width:16.6%;float:left;margin-right:10px}.llms-notice-box .col-1-8{width:11%;float:right}.llms-notice-box .llms-pad-right{padding-right:10px}@media screen and (max-width: 768px){.llms-notice-box .llms-pad-right{padding-right:0}}input[type=text].cc_cvv,#cc_cvv{margin-right:0;width:23%;float:right}.llms-clear-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;list-style-type:none;width:100%;overflow:auto}.llms-price-label{font-weight:normal}.llms-final-price{font-weight:bold;float:right}.llms-center-content{text-align:center}.llms-input-text{background-color:#fff;border:1px solid #ddd;color:#333;font-size:18px;font-weight:300;padding:16px;width:100%}.llms-price{margin-bottom:0;font-weight:bold}.llms-price-loop{margin-bottom:0;font-weight:bold}.courses .entry{padding:0}.list-view .site-content .llms-course-list .hentry,.list-view .site-content .llms-membership-list .hentry{border-top:0;padding-top:0}.llms-content{width:100%}.llms-lesson-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-template-wrapper{width:100%;display:block;clear:both}.llms-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-styled-select{border:1px solid #ccc;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px;overflow:hidden;position:relative}.llms-styled-select,.llms-styled-select select{width:100%}select:focus{outline:none}.llms-styled-select select{height:34px;padding:5px 0 5px 5px;background:rgba(0,0,0,0);border:none;-webkit-appearance:none;font-size:16px;color:#444}@-moz-document url-prefix(){.--ms-styled-select select{width:110%}}.llms-styled-select .fa-sort-desc{position:absolute;top:0;right:12px;font-size:24px;color:#ccc}select::-ms-expand{display:none}_:-o-prefocus .llms-styled-select,.selector .llms-styled-select{background:none}.llms-form-item-wrapper{margin-bottom:1em}.llms-progress-circle{position:relative;width:200px;height:200px;float:left}.llms-progress-circle-count{top:27%;position:absolute;width:94%;text-align:center;color:#666;font-size:44px}.llms-progress-circle svg{position:absolute;width:200px;height:200px}.llms-progress-circle circle{fill:rgba(0,0,0,0)}svg .llms-background-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#f1f2f1;stroke-dasharray:430}svg .llms-animated-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#e5554e;stroke-dasharray:430;stroke-dashoffset:410}.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title{font-weight:700}.llms-widget-syllabus .llms-lesson-complete,.llms-widget-syllabus .lesson-complete-placeholder{font-size:1.2em;margin-right:6px;color:#ccc}.llms-widget-syllabus .llms-lesson-complete.done,.llms-widget-syllabus .lesson-complete-placeholder.done{color:#e5554e}.llms-widget-syllabus .section-title{font-weight:bold}.llms-widget-syllabus .lesson-title a{text-decoration:none}.llms-widget-syllabus .lesson-title a:hover{text-decoration:none !important}.llms-widget-syllabus .lesson-title.done a{color:#999;text-decoration:line-through}.llms-widget-syllabus ul{list-style-type:none}.llms-widget-syllabus ul li{list-style-type:none}.llms-widget-syllabus ul li ul li{margin:0 0 2px 0;padding:0}.llms-remove-coupon{float:right}.llms-lesson-link-locked,.llms-lesson-link-locked:hover{background:#f1f1f1;-webkit-box-shadow:0 1px 2px 0 rgba(1,1,1,.4);box-shadow:0 1px 2px 0 rgba(1,1,1,.4);display:block;color:#a6a6a6;min-height:85px;padding:15px;text-decoration:none;position:relative}.llms-lesson-preview.is-complete .llms-lesson-link-locked{padding-left:75px}.llms-lesson-tooltip{display:none;position:absolute;color:#000;background-color:silver;padding:.25em;border-radius:2px;z-index:100;top:0;left:50%;text-align:center;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.llms-lesson-tooltip:after{content:"";width:0;height:0;border-top:8px solid silver;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);position:absolute;bottom:-8px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.llms-lesson-tooltip.active{display:inline-block}.llms-loop-list{list-style:none;margin:0 -10px;padding:0}@media all and (min-width: 600px){.llms-loop-list.cols-1 .llms-loop-item{width:100%}.llms-loop-list.cols-2 .llms-loop-item{width:50%}.llms-loop-list.cols-3 .llms-loop-item{width:33.3333333333%}.llms-loop-list.cols-4 .llms-loop-item{width:25%}.llms-loop-list.cols-5 .llms-loop-item{width:20%}.llms-loop-list.cols-6 .llms-loop-item{width:16.6666666667%}}.llms-loop-item{float:left;list-style:none;margin:0;padding:0;width:100%}.llms-loop-item-content{background:#f1f1f1;padding-bottom:10px;margin:10px}.llms-loop-item-content:hover{background:#eaeaea}.llms-loop-item-content .llms-loop-link{color:#212121;display:block}.llms-loop-item-content .llms-loop-link:visited{color:#212121}.llms-loop-item-content .llms-featured-image{display:block;max-width:100%}.llms-loop-item-content .llms-loop-title{margin-top:5px}.llms-loop-item-content .llms-loop-title:hover{color:#2295ff}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author,.llms-loop-item-content .llms-loop-title{padding:0 10px}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author{color:#444;display:block;font-size:13px;margin-bottom:3px}.llms-loop-item-content .llms-meta:last-child,.llms-loop-item-content .llms-author:last-child{margin-bottom:0}.llms-loop-item-content .llms-featured-img-wrap{overflow:hidden}.llms-loop-item-content p{margin-bottom:0}.llms-loop-item-content .llms-progress{margin:0;height:.4em}.llms-loop-item-content .llms-progress .progress__indicator{display:none}.llms-loop-item-content .llms-progress .llms-progress-bar{background-color:#f6f6f6;right:0;top:0}.course .llms-meta-info{margin:20px 0}.course .llms-meta-info .llms-meta-title{margin-bottom:5px}.course .llms-meta-info .llms-meta p{margin-bottom:0}.course .llms-meta-info .llms-meta span{font-weight:700}.course .llms-course-progress{margin:40px auto;max-width:480px;text-align:center}.llms-syllabus-wrapper{margin:15px;text-align:center}.llms-syllabus-wrapper .llms-section-title{margin:25px 0 0}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-back-to-course{width:49%}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-back-to-course{float:left;margin-right:.5%}.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-prev-lesson+.llms-back-to-course{float:right;margin-left:.5%}.llms-lesson-preview{display:inline-block;margin-top:15px;max-width:100%;position:relative;width:480px}.llms-lesson-preview .llms-lesson-link{background:#f1f1f1;color:#212121;display:block;padding:15px;text-decoration:none}.llms-lesson-preview .llms-lesson-link:before,.llms-lesson-preview .llms-lesson-link:after{content:" ";display:table}.llms-lesson-preview .llms-lesson-link:after{clear:both}.llms-lesson-preview .llms-lesson-link:hover{background:#eaeaea}.llms-lesson-preview .llms-lesson-link:visited{color:#212121}.llms-lesson-preview .llms-lesson-thumbnail{margin-bottom:10px}.llms-lesson-preview .llms-lesson-thumbnail img{display:block;width:100%}.llms-lesson-preview .llms-pre-text{text-align:left}.llms-lesson-preview .llms-lesson-title{font-weight:700;margin:0 auto 10px;text-align:left}.llms-lesson-preview .llms-lesson-title:last-child{margin-bottom:0}.llms-lesson-preview .llms-lesson-excerpt{text-align:left}.llms-lesson-preview .llms-main{float:left;width:100%}.llms-lesson-preview .llms-extra{float:right;width:15%}.llms-lesson-preview .llms-extra+.llms-main{width:85%}.llms-lesson-preview .llms-lesson-counter,.llms-lesson-preview .llms-free-lesson-svg,.llms-lesson-preview .llms-lesson-complete,.llms-lesson-preview .llms-lesson-complete-placeholder{display:block;font-size:32px;margin-bottom:15px}.llms-lesson-preview.is-free .llms-lesson-complete,.llms-lesson-preview.is-complete .llms-lesson-complete{color:#2295ff}.llms-lesson-preview .llms-icon-free{background:#2295ff;border-radius:4px;color:#f1f1f1;display:inline-block;padding:5px 6px 4px;line-height:1;font-size:14px}.llms-lesson-preview.is-incomplete .llms-lesson-complete{color:#cacaca}.llms-lesson-preview .llms-lesson-counter{font-size:16px;line-height:1}.llms-lesson-preview .llms-free-lesson-svg{fill:currentColor;height:23px;width:50px}.llms-lesson-preview p{margin-bottom:0}.llms-progress{clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;position:relative;height:1em;width:100%;margin:15px 0}.llms-progress .llms-progress-bar{background-color:#f1f2f1;position:relative;height:.4em;top:.3em;width:100%}.llms-progress .progress-bar-complete{background-color:#ef476f;height:100%}.progress__indicator{float:right;text-align:right;height:1em;line-height:1em;margin-left:5px;white-space:nowrap}.llms-author .name{margin-left:5px}.llms-author .label{margin-left:5px}.llms-author .avatar{border-radius:50%}.llms-author .bio{margin-top:5px}.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author{margin-left:0}.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author{margin-right:0}.llms-instructor-info .llms-instructors .llms-author{background:#f5f5f5;border-top:4px solid #2295ff;text-align:center;margin:45px 5px 5px;padding:0 10px 10px}.llms-instructor-info .llms-instructors .llms-author .avatar{background:#2295ff;border:4px solid #2295ff;display:block;margin:-35px auto 10px}.llms-instructor-info .llms-instructors .llms-author .llms-author-info{display:block}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name{font-weight:700}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label{font-size:85%}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio{font-size:90%;margin-bottom:0}.llms_review{margin:20px 0px;padding:10px}.llms_review h5{font-size:17px;margin:3px 0px}.llms_review h6{font-size:13px}.llms_review p{font-size:15px}.review_box [type=text]{margin:10px 0px}.review_box h5{color:red;display:none}.review_box+.thank_you_box{display:none}.llms-notice{background:rgba(34,149,255,.3);border-color:#2295ff;border-style:solid;border-width:3px;padding:10px;margin-bottom:10px}.llms-notice p:last-child,.llms-notice ul:last-child{margin-bottom:0}.llms-notice li{list-style-type:none}.llms-notice.llms-debug{background:rgba(202,202,202,.3);border-color:#cacaca}.llms-notice.llms-error{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-notice.llms-success{background:rgba(131,195,115,.3);border-color:#83c373}.entry-content .llms-notice{margin:0 0 10px}.entry-content .llms-notice li{list-style-type:none}ul.llms-achievements-loop,.lifterlms ul.llms-achievements-loop,ul.llms-certificates-loop,.lifterlms ul.llms-certificates-loop{list-style-type:none;margin:0 -10px;padding:0}ul.llms-achievements-loop:before,ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:before,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:before,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:before,.lifterlms ul.llms-certificates-loop:after{content:" ";display:table}ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:after{clear:both}ul.llms-achievements-loop li.llms-achievement-loop-item,ul.llms-achievements-loop li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,ul.llms-certificates-loop li.llms-achievement-loop-item,ul.llms-certificates-loop li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:left;list-style-type:none;margin:0;padding:10px;width:100%}@media all and (min-width: 600px){ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item{width:100%}ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item{width:50%}ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item{width:33.3333333333%}ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item{width:25%}ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item{width:20%}}.llms-achievement,.llms-certificate{background:#f1f1f1;border:none;color:inherit;display:block;text-decoration:none;width:100%}.llms-achievement:hover,.llms-certificate:hover{background:#eaeaea}.llms-achievement .llms-achievement-img,.llms-certificate .llms-achievement-img{display:block;margin:0;width:100%}.llms-achievement .llms-achievement-title,.llms-certificate .llms-achievement-title{font-size:16px;margin:0;padding:10px;text-align:center}.llms-achievement .llms-certificate-title,.llms-certificate .llms-certificate-title{font-size:16px;margin:0;padding:0 0 10px}.llms-achievement .llms-achievement-info,.llms-achievement .llms-achievement-date,.llms-certificate .llms-achievement-info,.llms-certificate .llms-achievement-date{display:none}.llms-achievement .llms-achievement-content,.llms-certificate .llms-achievement-content{padding:20px}.llms-achievement .llms-achievement-content:empty,.llms-certificate .llms-achievement-content:empty{padding:0}.llms-achievement .llms-achievement-content *:last-child,.llms-certificate .llms-achievement-content *:last-child{margin-bottom:0}.llms-certificate{border:4px double #f1f1f1;padding:20px 10px;background:#fff;text-align:center}.llms-certificate:hover{background:#fff;border-color:#eaeaea}.llms-achievement-modal .llms-achievement{background:#fff}.llms-achievement-modal .llms-achievement-info{display:block}.llms-achievement-modal .llms-achievement-title{display:none}.llms-notification{background:#fff;-webkit-box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;border-top:4px solid #2295ff;opacity:0;padding:12px;position:fixed;right:-800px;top:24px;-webkit-transition:opacity .4s ease-in-out,right .4s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out;visibility:hidden;width:auto;z-index:9999999}.llms-notification:before,.llms-notification:after{content:" ";display:table}.llms-notification:after{clear:both}.llms-notification.visible{left:12px;opacity:1;right:12px;-webkit-transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;visibility:visible}.llms-notification.visible:hover .llms-notification-dismiss{opacity:1}.llms-notification .llms-notification-content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.llms-notification .llms-notification-main{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:4;-ms-flex:4;flex:4;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.llms-notification .llms-notification-title{font-size:18px;margin:0}.llms-notification .llms-notification-body{font-size:14px;line-height:1.4}.llms-notification .llms-notification-body p,.llms-notification .llms-notification-body li{font-size:inherit}.llms-notification .llms-notification-body p{margin-bottom:8px}.llms-notification .llms-notification-body .llms-mini-cert{background:#f6f6f6;border:1px solid #d0d0d0;-webkit-box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;padding:16px 16px 24px;margin-top:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title{font-size:16px;font-weight:700;margin:12px auto;text-align:center}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body{width:100%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(1){width:65%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(2){width:35%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(3){width:85%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(4){width:75%;margin-top:18px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(5){width:70%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(6){margin-left:12px;margin-bottom:-24px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(7){width:65%;margin-right:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line{border-radius:2px;height:8px;background:#b0b0b0;background-image:-webkit-gradient(linear, left top, right top, from(#b0b0b0), color-stop(20%, #a0a0a0), color-stop(40%, #b0b0b0), to(#b0b0b0));background-image:linear-gradient(to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);background-repeat:no-repeat;margin:4px auto}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot{background:#b0b0b0;border-radius:50%;display:inline-block;content:"";height:24px;width:24px}.llms-notification .llms-notification-body .llms-mini-cert p{margin-bottom:0}.llms-notification .llms-notification-aside{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:12px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.llms-notification .llms-notification-icon{display:block;max-width:64px}.llms-notification .llms-notification-footer{border-top:1px solid #e5e5e5;font-size:12px;margin-top:12px;padding:6px 6px 0;text-align:right}.llms-notification .llms-notification-dismiss{color:#e5554e;cursor:pointer;font-size:22px;position:absolute;right:10px;top:8px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.llms-sd-notification-center .llms-notification-list,.llms-sd-notification-center .llms-notification-list-item{list-style-type:none;margin:0;padding:0}.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification{background:#fcfcfc}.llms-sd-notification-center .llms-notification{opacity:1;border-top:1px solid #e5e5e5;left:auto;padding:24px;position:relative;right:auto;top:auto;visibility:visible;width:auto}.llms-sd-notification-center .llms-notification .llms-notification-aside{max-width:64px}.llms-sd-notification-center .llms-notification .llms-notification-footer{border:none;padding:0;text-align:left}.llms-sd-notification-center .llms-notification .llms-progress{display:none !important}.llms-sd-notification-center .llms-notification .llms-notification-date{color:#515151;float:left;margin-right:6px}.llms-sd-notification-center .llms-notification .llms-mini-cert{margin:0 auto;max-width:380px}@media all and (min-width: 480px){.llms-notification{right:-800px;width:360px}.llms-notification.visible{left:auto;right:24px}.llms-notification .llms-notification-dismiss{opacity:0}}.llms-pagination ul{list-style-type:none}.llms-pagination ul li{float:left}.llms-pagination ul li a{border-bottom:0;text-decoration:none}.llms-pagination ul li .page-numbers{padding:.5em;text-decoration:underline}.llms-pagination ul li .page-numbers.current{text-decoration:none}.llms-tooltip{background:#2a2a2a;border-radius:4px;color:#fff;font-size:14px;line-height:1.2;opacity:0;top:-20px;padding:8px 12px;left:50%;position:absolute;pointer-events:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-transition:opacity .2s ease,top .2s ease;transition:opacity .2s ease,top .2s ease;max-width:320px}.llms-tooltip.show{top:-28px;opacity:1}.llms-tooltip:after{bottom:-8px;border-top:8px solid #2a2a2a;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);content:"";height:0;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:0}.webui-popover-title{font-size:initial;font-weight:initial;line-height:initial}.webui-popover-inverse .webui-popover-inner .close{color:#fff;opacity:.6;text-shadow:none}.webui-popover-inverse .webui-popover-inner .close:hover{opacity:.8}.webui-popover-inverse .webui-popover-content a{color:#fff;text-decoration:underline}.webui-popover-inverse .webui-popover-content a:hover{text-decoration:none}.single-llms_quiz .llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 35px 10px 10px;text-decoration:none}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:left;margin:0;line-height:1}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:right;line-height:1}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;right:-12px;top:-2px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 0 0 30px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-left:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.single-llms_quiz .llms-return{margin-bottom:10px}.single-llms_quiz .llms-quiz-results:before,.single-llms_quiz .llms-quiz-results:after{content:" ";display:table}.single-llms_quiz .llms-quiz-results:after{clear:both}.single-llms_quiz .llms-quiz-results .llms-donut.passing{color:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path{stroke:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.pending{color:#555}.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path{stroke:#555}.single-llms_quiz .llms-quiz-results .llms-donut.failing{color:#e5554e}.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path{stroke:#e5554e}.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{margin-bottom:20px}@media all and (min-width: 600px){.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside{float:left;width:220px}.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{float:left;width:calc(100% - 300px)}}.single-llms_quiz ul.llms-quiz-meta-info,.single-llms_quiz ul.llms-quiz-meta-info li{list-style-type:none;margin:0;padding:0}.single-llms_quiz ul.llms-quiz-meta-info{margin-bottom:10px}.single-llms_quiz .llms-quiz-buttons{margin-top:10px;text-align:left}.single-llms_quiz .llms-quiz-buttons form{display:inline-block}.llms-quiz-question-wrapper{min-height:140px;position:relative}.llms-quiz-question-wrapper .llms-quiz-loading{bottom:20px;left:0;position:absolute;right:0;text-align:center;z-index:1}.llms-quiz-ui{background:#fcfcfc;padding:20px;position:relative}.llms-quiz-ui .llms-quiz-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 0 30px}.llms-quiz-ui .llms-progress{background-color:#f1f2f1;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:8px;margin:0;overflow:hidden}.llms-quiz-ui .llms-progress .progress-bar-complete{-webkit-transition:width .3s ease-in;transition:width .3s ease-in;width:0}.llms-quiz-ui .llms-error{background:#e5554e;border-radius:4px;color:#fff;margin:10px 0;padding:10px}.llms-quiz-ui .llms-error:before,.llms-quiz-ui .llms-error:after{content:" ";display:table}.llms-quiz-ui .llms-error:after{clear:both}.llms-quiz-ui .llms-error a{color:rgba(255,255,255,.6);float:right;font-size:22px;line-height:1;text-decoration:none}.llms-quiz-ui .llms-quiz-counter{display:none;color:#6a6a6a;float:right;font-size:18px}.llms-quiz-ui .llms-quiz-counter .llms-sep{margin:0 5px}.llms-quiz-ui .llms-quiz-nav{margin-top:20px}.llms-quiz-ui .llms-quiz-nav button{margin:0 10px 0 0}.llms-question-wrapper .llms-question-text{font-size:30px;font-weight:400;margin-bottom:15px}.llms-question-wrapper ol.llms-question-choices{list-style-type:none;margin:0;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice{border-bottom:1px solid #e8e8e8;margin:0;padding:0;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label{display:inline-block;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker{bottom:10px;margin:0;position:absolute;right:10px}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image{margin:2px;padding:20px;-webkit-transition:background .4s ease;transition:background .4s ease}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img{display:block;width:100%}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked~.llms-choice-image{background:#efefef}.llms-question-wrapper ol.llms-question-choices li.llms-choice input{display:none;left:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.llms-question-wrapper ol.llms-question-choices li.llms-choice label{display:block;margin:0;padding:10px 20px;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker{background:#f0f0f0;display:inline-block;font-size:20px;height:40px;line-height:40px;margin-right:10px;text-align:center;-webkit-transition:all .2s ease;transition:all .2s ease;vertical-align:middle;width:40px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister,.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox{border-radius:4px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio{border-radius:50%}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker{background:#ef476f;color:#fff}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text{display:inline-block;font-size:18px;font-weight:400;line-height:1.6;margin-bottom:0;vertical-align:middle;width:calc(100% - 60px)}.llms-quiz-timer{background:#fff;border:1px solid #83c373;border-radius:4px;color:#83c373;float:right;font-size:18px;line-height:1;margin-left:20px;padding:8px 12px;position:relative;white-space:nowrap;z-index:1}.llms-quiz-timer.color-half{border-color:#ff922b;color:#ff922b}.llms-quiz-timer.color-empty{border-color:#e5554e;color:#e5554e}.llms-quiz-timer .llms-tiles{display:inline-block;margin-left:5px}.voucher-expand{display:none}@media all and (min-width: 600px){.llms-access-plans.cols-1 .llms-access-plan{width:100%}.llms-access-plans.cols-2 .llms-access-plan{width:50%}.llms-access-plans.cols-3 .llms-access-plan{width:33.3333333333%}.llms-access-plans.cols-4 .llms-access-plan{width:25%}.llms-access-plans.cols-5 .llms-access-plan{width:20%}}.llms-free-enroll-form{margin-bottom:0}.llms-access-plan{-webkit-box-sizing:border-box;box-sizing:border-box;float:left;text-align:center;width:100%}.llms-access-plan .llms-access-plan-footer,.llms-access-plan .llms-access-plan-content{background:#f1f1f1}.llms-access-plan.featured .llms-access-plan-featured{background:#4ba9ff}.llms-access-plan.featured .llms-access-plan-footer,.llms-access-plan.featured .llms-access-plan-content{border-left:3px solid #2295ff;border-right:3px solid #2295ff}.llms-access-plan.featured .llms-access-plan-footer{border-bottom-color:#2295ff}.llms-access-plan.on-sale .price-regular{text-decoration:line-through}.llms-access-plan .stamp{background:#2295ff;color:#fff;font-size:11px;font-style:normal;font-weight:300;padding:2px 3px;vertical-align:top}.llms-access-plan .llms-access-plan-restrictions ul{margin:0}.llms-access-plan-featured{color:#fff;font-size:14px;font-weight:400;margin:0 2px 0 2px}.llms-access-plan-content{margin:0 2px 0}.llms-access-plan-content .llms-access-plan-pricing{padding:10px 0 0}.llms-access-plan-title{background:#2295ff;color:#fff;margin-bottom:0;padding:10px}.llms-access-plan-pricing .llms-price-currency-symbol{font-size:14px;vertical-align:top}.llms-access-plan-price{font-size:18px;font-variant:small-caps;line-height:20px}.llms-access-plan-price .lifterlms-price{font-weight:700}.llms-access-plan-price.sale{padding:5px 0;border-top:1px solid #d0d0d0;border-bottom:1px solid #d0d0d0}.llms-access-plan-trial,.llms-access-plan-schedule,.llms-access-plan-sale-end,.llms-access-plan-expiration{font-size:15px;font-variant:small-caps;line-height:1.2}.llms-access-plan-description{font-size:16px;padding:10px 10px 0}.llms-access-plan-description ul{margin:0}.llms-access-plan-description ul li{border-bottom:1px solid #d0d0d0;list-style-type:none}.llms-access-plan-description ul li:last-child{border-bottom:none}.llms-access-plan-description div:last-child,.llms-access-plan-description img:last-child,.llms-access-plan-description p:last-child,.llms-access-plan-description ul:last-child,.llms-access-plan-description li:last-child{margin-bottom:0}.llms-access-plan-restrictions .stamp{vertical-align:baseline}.llms-access-plan-restrictions ul{margin:0}.llms-access-plan-restrictions ul li{font-size:12px;line-height:14px;list-style-type:none}.llms-access-plan-restrictions a{color:#f8954f}.llms-access-plan-restrictions a:hover{color:#f67d28}.llms-access-plan-footer{border-bottom:3px solid #f1f1f1;padding:10px;margin:0 2px 2px 2px}.llms-access-plan-footer .llms-access-plan-pricing{padding:0 0 10px}.webui-popover-content .llms-members-only-restrictions{text-align:center}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li,.webui-popover-content .llms-members-only-restrictions p{margin:0;padding:0}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li{list-style-type:none}.webui-popover-content .llms-members-only-restrictions li{padding:8px 0;border-top:1px solid #3b3b3b}.webui-popover-content .llms-members-only-restrictions li:first-child{border-top:none}.webui-popover-content .llms-members-only-restrictions li a{display:block}.llms-checkout-wrapper form.llms-login{border:3px solid #2295ff;display:none;margin-bottom:10px}.llms-checkout-wrapper .llms-form-heading{background:#2295ff;color:#fff;margin:0 0 5px;padding:10px}.llms-checkout{background:#fff;position:relative}@media all and (min-width: 800px){.llms-checkout-cols-2 .llms-checkout-col{float:left}.llms-checkout-cols-2 .llms-checkout-col.llms-col-1{margin-right:5px;width:calc(58% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2{margin-left:5px;width:calc(42% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button{width:100%}}.llms-checkout-section{border:3px solid #2295ff;margin-bottom:10px;position:relative}.llms-checkout-section-content{margin:10px}.llms-checkout-section-content.llms-form-fields{margin:0px}.llms-checkout-section-content .llms-label{font-weight:400;font-variant:small-caps;text-transform:lowercase}.llms-checkout-section-content .llms-order-summary{list-style-type:none;margin:0;padding:0}.llms-checkout-section-content .llms-order-summary li{list-style-type:none}.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular,.llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular{text-decoration:line-through}.llms-checkout-section-content .llms-coupon-wrapper{border-top:1px solid #dadada;margin-top:10px;padding-top:10px}.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry{display:none;margin-top:10px}.llms-form-field.llms-payment-gateway-option label+span.llms-description{display:inline-block;margin-left:5px}.llms-form-field.llms-payment-gateway-option .llms-description a{border:none;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.llms-form-field.llms-payment-gateway-option .llms-description img{display:inline;max-height:22px;vertical-align:middle}.llms-checkout-wrapper ul.llms-payment-gateways{margin:5px 0 0;padding:0}ul.llms-payment-gateways{list-style-type:none}ul.llms-payment-gateways li:last-child:after{border-bottom:1px solid #dadada;content:"";display:block;margin:10px}ul.llms-payment-gateways .llms-payment-gateway{margin-bottom:5px;list-style-type:none}ul.llms-payment-gateways .llms-payment-gateway:last-child{margin-bottom:none}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label{font-weight:700}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields{display:block}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice{margin-left:10px;margin-right:10px}ul.llms-payment-gateways .llms-payment-gateway .llms-form-field{padding-bottom:0}ul.llms-payment-gateways .llms-gateway-description{margin-left:40px}ul.llms-payment-gateways .llms-gateway-fields{display:none;margin:5px 0 20px}ul.llms-payment-gateways .llms-payment-gateway-error{padding:0 10px}.llms-checkout-confirm{margin:0 10px}.llms-payment-method{margin:10px 10px 0}.llms-gateway-description p{font-size:85%;font-style:italic;margin-bottom:0}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:left;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:right}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-right:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-right:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:0 0;background-image:radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 0 5px 5px}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-left:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";left:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}.llms-widget-syllabus--collapsible .llms-section .section-header{cursor:pointer}.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson{display:none}.llms-widget-syllabus--collapsible .llms-syllabus-footer{text-align:left}.llms-student-dashboard .llms-sd-title{margin:25px 0}.llms-student-dashboard .llms-sd-items{list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item{float:left;list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item:last-child .llms-sep{display:none}.llms-student-dashboard .llms-sd-item .llms-sep{color:#333;margin:0 5px}.llms-student-dashboard .llms-sd-section{margin-bottom:25px}.llms-student-dashboard .llms-sd-section .llms-sd-section-footer{margin-top:10px}.llms-student-dashboard .orders-table{border:1px solid #f5f5f5;width:100%}.llms-student-dashboard .orders-table thead{display:none}.llms-student-dashboard .orders-table thead th,.llms-student-dashboard .orders-table thead td{font-weight:700}@media all and (min-width: 600px){.llms-student-dashboard .orders-table thead{display:table-header-group}}.llms-student-dashboard .orders-table tbody tr:nth-child(even) td,.llms-student-dashboard .orders-table tbody tr:nth-child(even) th{background:#f9f9f9}.llms-student-dashboard .orders-table tfoot th,.llms-student-dashboard .orders-table tfoot td{padding:10px;text-align:right}.llms-student-dashboard .orders-table tfoot th:last-child,.llms-student-dashboard .orders-table tfoot td:last-child{border-bottom-width:0}.llms-student-dashboard .orders-table th{font-weight:700}.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-color:#efefef;border-style:solid;border-width:0;display:block;padding:8px 12px;text-align:center}.llms-student-dashboard .orders-table th .llms-button-primary,.llms-student-dashboard .orders-table td .llms-button-primary{display:inline-block}.llms-student-dashboard .orders-table th:last-child,.llms-student-dashboard .orders-table td:last-child{border-bottom-width:1px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{content:attr(data-label)}@media all and (min-width: 600px){.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-bottom-width:1px;display:table-cell;text-align:left}.llms-student-dashboard .orders-table th:first-child,.llms-student-dashboard .orders-table td:first-child{width:220px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{display:none}}@media all and (min-width: 600px){.llms-student-dashboard .orders-table.transactions th:first-child{width:auto}}.llms-student-dashboard .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.llms-student-dashboard .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.llms-student-dashboard .llms-status.llms-active,.llms-student-dashboard .llms-status.llms-completed,.llms-student-dashboard .llms-status.llms-pass,.llms-student-dashboard .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.llms-student-dashboard .llms-status.llms-fail,.llms-student-dashboard .llms-status.llms-failed,.llms-student-dashboard .llms-status.llms-expired,.llms-student-dashboard .llms-status.llms-cancelled,.llms-student-dashboard .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.llms-student-dashboard .llms-status.llms-incomplete,.llms-student-dashboard .llms-status.llms-on-hold,.llms-student-dashboard .llms-status.llms-pending,.llms-student-dashboard .llms-status.llms-pending-cancel,.llms-student-dashboard .llms-status.llms-refunded,.llms-student-dashboard .llms-status.llms-txn-pending,.llms-student-dashboard .llms-status.llms-txn-refunded{color:#664200;background-color:orange}.llms-student-dashboard .llms-person-form-wrapper .llms-change-password{display:none}@media all and (min-width: 600px){.llms-student-dashboard .order-primary{float:left;width:68%}}@media all and (min-width: 600px){.llms-student-dashboard .order-secondary{float:left;width:32%}}.llms-student-dashboard .order-secondary form{margin-bottom:0}@media all and (min-width: 600px){.llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary{float:none;width:100%}}.llms-student-dashboard .llms-switch-payment-source .llms-notice,.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice{margin-left:10px;margin-right:10px}.llms-student-dashboard .llms-switch-payment-source-main{border:none;display:none;margin:0}.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways{padding:10px 15px 0;margin:0}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary{padding:0 25px 10px;margin:0;list-style-type:none}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li{list-style-type:none}.llms-student-dashboard .llms-loop-list{margin:0 -10px}.llms-sd-grades .llms-table .llms-progress{display:block;margin:0}.llms-sd-grades .llms-table .llms-progress .llms-progress-bar{top:0;height:1.4em}.llms-sd-grades .llms-table .llms-progress .progress__indicator{font-size:1em;position:relative;right:.4em;top:.2em;z-index:1}.llms-table.llms-single-course-grades tbody tr:first-child td,.llms-table.llms-single-course-grades tbody tr:first-child th{background-color:#eaeaea}.llms-table.llms-single-course-grades th{font-weight:400}.llms-table.llms-single-course-grades td .llms-donut{display:inline-block;vertical-align:middle}.llms-table.llms-single-course-grades td .llms-status{margin-right:4px}.llms-table.llms-single-course-grades td .llms-donut+.llms-status{margin-left:4px}.llms-table.llms-single-course-grades th.llms-section_title{font-size:110%;font-weight:700}.llms-table.llms-single-course-grades td.llms-lesson_title{padding-left:36px;max-width:40%}.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut{display:inline-block;margin-right:5px;vertical-align:middle}.llms-table.llms-single-course-grades td.llms-lesson_title a[href="#"]{pointer-events:none}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"]{color:inherit;position:relative}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip{max-width:380px;width:380px}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip.show{top:-54px}.llms-sd-widgets{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-sd-widgets .llms-sd-widget{background:#f9f9f9;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:10px 10px 20px;padding:0 0 20px}.llms-sd-widgets .llms-sd-widget:first-child{margin-left:0}.llms-sd-widgets .llms-sd-widget:last-child{margin-right:0}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title{background:#2295ff;color:#fff;font-size:18px;line-height:1;margin:0 0 20px;padding:10px}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty{font-size:14px;font-style:italic;opacity:.5;text-align:center}.llms-sd-widgets .llms-sd-widget .llms-donut{margin:0 auto}.llms-sd-widgets .llms-sd-widget .llms-sd-date{opacity:.8;text-align:center;font-size:22px;line-height:1.1}.llms-sd-widgets .llms-sd-widget .llms-sd-date span{display:block}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day{font-size:52px}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff{font-size:12px;font-style:italic;margin-top:8px;opacity:.75}.llms-sd-widgets .llms-sd-widget .llms-achievement{background:rgba(0,0,0,0);margin:0 auto;max-width:120px}.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title{display:none}.llms-sd-pagination{margin-top:24px}.llms-sd-pagination:before,.llms-sd-pagination:after{content:" ";display:table}.llms-sd-pagination:after{clear:both}.llms-sd-pagination .llms-button-secondary{display:inline-block}.llms-sd-pagination .llms-button-secondary.prev{float:left}.llms-sd-pagination .llms-button-secondary.next{float:right}.llms-sd-notification-center .llms-notification{z-index:1}.llms-table{border:1px solid #efefef;width:100%}.llms-table thead th,.llms-table thead td{font-weight:700}.llms-table tbody tr:nth-child(odd) td,.llms-table tbody tr:nth-child(odd) th{background:#f9f9f9}.llms-table tbody tr:last-child{border-bottom-width:0}.llms-table tfoot tr{background:#f9f9f9}.llms-table tfoot tr .llms-pagination .page-numbers{margin:0}.llms-table tfoot tr .llms-table-sort{text-align:right}.llms-table tfoot tr .llms-table-sort form,.llms-table tfoot tr .llms-table-sort select,.llms-table tfoot tr .llms-table-sort input,.llms-table tfoot tr .llms-table-sort button{margin:0}.llms-table th{font-weight:700}.llms-table th,.llms-table td{border-bottom:1px solid #efefef;padding:8px 12px}.llms-table th:first-child,.llms-table td:first-child{padding-left:12px}.llms-table th:last-child,.llms-table td:last-child{padding-right:12px}#page .llms-table tfoot label{display:inline}#page .llms-table tfoot select{height:auto}/*! +.llms-pagination ul:before,.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:before,.llms-form-fields:before,.llms-checkout-cols-2:before,.llms-access-plans:before,.llms-course-navigation:before,.llms-loop-list:before,.llms-cols:before,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{content:" ";display:table}.llms-pagination ul:after,.llms-student-dashboard .llms-sd-items:after,.llms-form-fields:after,.llms-checkout-cols-2:after,.llms-access-plans:after,.llms-course-navigation:after,.llms-loop-list:after,.llms-cols:after{clear:both}.llms-cols .llms-col{width:100%}@media all and (min-width: 600px){.llms-cols [class*=llms-col-]{float:left}}.llms-flex-cols{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.llms-flex-cols [class*=llms-col]{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:100%}@media all and (min-width: 600px){.llms-cols .llms-col-1,.llms-flex-cols .llms-col-1{width:100%}.llms-cols .llms-col-2,.llms-flex-cols .llms-col-2{width:50%}.llms-cols .llms-col-3,.llms-flex-cols .llms-col-3{width:33.3333333333%}.llms-cols .llms-col-4,.llms-flex-cols .llms-col-4{width:25%}.llms-cols .llms-col-5,.llms-flex-cols .llms-col-5{width:20%}.llms-cols .llms-col-6,.llms-flex-cols .llms-col-6{width:16.6666666667%}.llms-cols .llms-col-7,.llms-flex-cols .llms-col-7{width:14.2857142857%}.llms-cols .llms-col-8,.llms-flex-cols .llms-col-8{width:12.5%}.llms-cols .llms-col-9,.llms-flex-cols .llms-col-9{width:11.1111111111%}.llms-cols .llms-col-10,.llms-flex-cols .llms-col-10{width:10%}.llms-cols .llms-col-11,.llms-flex-cols .llms-col-11{width:9.0909090909%}.llms-cols .llms-col-12,.llms-flex-cols .llms-col-12{width:8.3333333333%}}.llms-button-action,.llms-button-danger,.llms-button-primary,.llms-button-secondary{border:none;border-radius:8px;color:#fefefe;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-action:disabled,.llms-button-danger:disabled,.llms-button-primary:disabled,.llms-button-secondary:disabled{opacity:.5}.llms-button-action:hover,.llms-button-action:active,.llms-button-danger:hover,.llms-button-danger:active,.llms-button-primary:hover,.llms-button-primary:active,.llms-button-secondary:hover,.llms-button-secondary:active{color:#fefefe}.llms-button-action:focus,.llms-button-danger:focus,.llms-button-primary:focus,.llms-button-secondary:focus{color:#fefefe}.llms-button-action.auto,.llms-button-danger.auto,.llms-button-primary.auto,.llms-button-secondary.auto{width:auto}.llms-button-action.full,.llms-button-danger.full,.llms-button-primary.full,.llms-button-secondary.full{display:block;text-align:center;width:100%}.llms-button-action.square,.llms-button-danger.square,.llms-button-primary.square,.llms-button-secondary.square{padding:12px}.llms-button-action.small,.llms-button-danger.small,.llms-button-primary.small,.llms-button-secondary.small{font-size:13px;padding:8px 14px}.llms-button-action.small.square,.llms-button-danger.small.square,.llms-button-primary.small.square,.llms-button-secondary.small.square{padding:8px}.llms-button-action.large,.llms-button-danger.large,.llms-button-primary.large,.llms-button-secondary.large{font-size:18px;line-height:1.2;padding:16px 32px}.llms-button-action.large.square,.llms-button-danger.large.square,.llms-button-primary.large.square,.llms-button-secondary.large.square{padding:16px}.llms-button-action.large .fa,.llms-button-danger.large .fa,.llms-button-primary.large .fa,.llms-button-secondary.large .fa{left:-7px;position:relative}.llms-button-primary{background:#2295ff}.llms-button-primary:hover,.llms-button-primary.clicked{background:#0077e4}.llms-button-primary:focus,.llms-button-primary:active{background:#4ba9ff}.llms-button-secondary{background:#e1e1e1;color:#414141}.llms-button-secondary:hover{color:#414141;background:#cdcdcd}.llms-button-secondary:focus,.llms-button-secondary:active{color:#414141;background:#ebebeb}.llms-button-action{background:#f8954f}.llms-button-action:hover,.llms-button-action.clicked{background:#f67d28}.llms-button-action:focus,.llms-button-action:active{background:#faad76}.llms-button-danger{background:#e5554e}.llms-button-danger:hover{background:#e0332a}.llms-button-danger:focus,.llms-button-danger:active{background:#e86660}.llms-button-outline{background:rgba(0,0,0,0);border:3px solid #1d2327;border-radius:8px;color:#1d2327;cursor:pointer;font-size:16px;font-weight:700;text-decoration:none;text-shadow:none;line-height:1;margin:0;max-width:100%;padding:12px 24px;position:relative;-webkit-transition:all .5s ease;transition:all .5s ease}.llms-button-outline:disabled{opacity:.5}.llms-button-outline:hover,.llms-button-outline:active{color:#1d2327}.llms-button-outline:focus{color:#1d2327}.llms-button-outline.auto{width:auto}.llms-button-outline.full{display:block;text-align:center;width:100%}.llms-button-outline.square{padding:12px}.llms-donut{background-color:#f1f1f1;background-image:none;border-radius:50%;color:#ef476f;height:200px;overflow:hidden;position:relative;width:200px}.llms-donut:before,.llms-donut:after{content:" ";display:table}.llms-donut:after{clear:both}.llms-donut svg{overflow:visible !important;pointer-events:none;width:100%}.llms-donut svg path{fill:none;stroke-width:35px;stroke:#ef476f}.llms-donut.mini{height:36px;width:36px}.llms-donut.mini .percentage{font-size:10px}.llms-donut.small{height:100px;width:100px}.llms-donut.small .percentage{font-size:18px}.llms-donut.medium{height:130px;width:130px}.llms-donut.medium .percentage{font-size:26px}.llms-donut.large{height:260px;width:260px}.llms-donut.large .percentage{font-size:48px}.llms-donut .inside{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;height:80%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:50%;position:absolute;text-align:center;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:80%;top:50%;z-index:3}.llms-donut .percentage{line-height:1.2;font-size:34px}.llms-donut .caption{font-size:50%}.lifterlms [data-tip],.lifterlms [data-title-default],.lifterlms [data-title-active],.llms-metabox [data-tip],.llms-metabox [data-title-default],.llms-metabox [data-title-active],.llms-mb-container [data-tip],.llms-mb-container [data-title-default],.llms-mb-container [data-title-active],.llms-quiz-wrapper [data-tip],.llms-quiz-wrapper [data-title-default],.llms-quiz-wrapper [data-title-active]{position:relative}.lifterlms [data-tip].tip--top-right:before,.lifterlms [data-title-default].tip--top-right:before,.lifterlms [data-title-active].tip--top-right:before,.llms-metabox [data-tip].tip--top-right:before,.llms-metabox [data-title-default].tip--top-right:before,.llms-metabox [data-title-active].tip--top-right:before,.llms-mb-container [data-tip].tip--top-right:before,.llms-mb-container [data-title-default].tip--top-right:before,.llms-mb-container [data-title-active].tip--top-right:before,.llms-quiz-wrapper [data-tip].tip--top-right:before,.llms-quiz-wrapper [data-title-default].tip--top-right:before,.llms-quiz-wrapper [data-title-active].tip--top-right:before{bottom:100%;left:-10px}.lifterlms [data-tip].tip--top-right:hover:before,.lifterlms [data-title-default].tip--top-right:hover:before,.lifterlms [data-title-active].tip--top-right:hover:before,.llms-metabox [data-tip].tip--top-right:hover:before,.llms-metabox [data-title-default].tip--top-right:hover:before,.llms-metabox [data-title-active].tip--top-right:hover:before,.llms-mb-container [data-tip].tip--top-right:hover:before,.llms-mb-container [data-title-default].tip--top-right:hover:before,.llms-mb-container [data-title-active].tip--top-right:hover:before,.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-right:after,.lifterlms [data-title-default].tip--top-right:after,.lifterlms [data-title-active].tip--top-right:after,.llms-metabox [data-tip].tip--top-right:after,.llms-metabox [data-title-default].tip--top-right:after,.llms-metabox [data-title-active].tip--top-right:after,.llms-mb-container [data-tip].tip--top-right:after,.llms-mb-container [data-title-default].tip--top-right:after,.llms-mb-container [data-title-active].tip--top-right:after,.llms-quiz-wrapper [data-tip].tip--top-right:after,.llms-quiz-wrapper [data-title-default].tip--top-right:after,.llms-quiz-wrapper [data-title-active].tip--top-right:after{border-top-color:#444;left:6px;top:0}.lifterlms [data-tip].tip--top-right:hover:after,.lifterlms [data-title-default].tip--top-right:hover:after,.lifterlms [data-title-active].tip--top-right:hover:after,.llms-metabox [data-tip].tip--top-right:hover:after,.llms-metabox [data-title-default].tip--top-right:hover:after,.llms-metabox [data-title-active].tip--top-right:hover:after,.llms-mb-container [data-tip].tip--top-right:hover:after,.llms-mb-container [data-title-default].tip--top-right:hover:after,.llms-mb-container [data-title-active].tip--top-right:hover:after,.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after{top:-6px}.lifterlms [data-tip].tip--top-left:before,.lifterlms [data-title-default].tip--top-left:before,.lifterlms [data-title-active].tip--top-left:before,.llms-metabox [data-tip].tip--top-left:before,.llms-metabox [data-title-default].tip--top-left:before,.llms-metabox [data-title-active].tip--top-left:before,.llms-mb-container [data-tip].tip--top-left:before,.llms-mb-container [data-title-default].tip--top-left:before,.llms-mb-container [data-title-active].tip--top-left:before,.llms-quiz-wrapper [data-tip].tip--top-left:before,.llms-quiz-wrapper [data-title-default].tip--top-left:before,.llms-quiz-wrapper [data-title-active].tip--top-left:before{bottom:100%;right:-10px}.lifterlms [data-tip].tip--top-left:hover:before,.lifterlms [data-title-default].tip--top-left:hover:before,.lifterlms [data-title-active].tip--top-left:hover:before,.llms-metabox [data-tip].tip--top-left:hover:before,.llms-metabox [data-title-default].tip--top-left:hover:before,.llms-metabox [data-title-active].tip--top-left:hover:before,.llms-mb-container [data-tip].tip--top-left:hover:before,.llms-mb-container [data-title-default].tip--top-left:hover:before,.llms-mb-container [data-title-active].tip--top-left:hover:before,.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before{bottom:calc(100% + 6px)}.lifterlms [data-tip].tip--top-left:after,.lifterlms [data-title-default].tip--top-left:after,.lifterlms [data-title-active].tip--top-left:after,.llms-metabox [data-tip].tip--top-left:after,.llms-metabox [data-title-default].tip--top-left:after,.llms-metabox [data-title-active].tip--top-left:after,.llms-mb-container [data-tip].tip--top-left:after,.llms-mb-container [data-title-default].tip--top-left:after,.llms-mb-container [data-title-active].tip--top-left:after,.llms-quiz-wrapper [data-tip].tip--top-left:after,.llms-quiz-wrapper [data-title-default].tip--top-left:after,.llms-quiz-wrapper [data-title-active].tip--top-left:after{border-top-color:#444;right:6px;top:0}.lifterlms [data-tip].tip--top-left:hover:after,.lifterlms [data-title-default].tip--top-left:hover:after,.lifterlms [data-title-active].tip--top-left:hover:after,.llms-metabox [data-tip].tip--top-left:hover:after,.llms-metabox [data-title-default].tip--top-left:hover:after,.llms-metabox [data-title-active].tip--top-left:hover:after,.llms-mb-container [data-tip].tip--top-left:hover:after,.llms-mb-container [data-title-default].tip--top-left:hover:after,.llms-mb-container [data-title-active].tip--top-left:hover:after,.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after{top:-6px}.lifterlms [data-tip].tip--bottom-left:before,.lifterlms [data-title-default].tip--bottom-left:before,.lifterlms [data-title-active].tip--bottom-left:before,.llms-metabox [data-tip].tip--bottom-left:before,.llms-metabox [data-title-default].tip--bottom-left:before,.llms-metabox [data-title-active].tip--bottom-left:before,.llms-mb-container [data-tip].tip--bottom-left:before,.llms-mb-container [data-title-default].tip--bottom-left:before,.llms-mb-container [data-title-active].tip--bottom-left:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:before{top:100%;right:-10px}.lifterlms [data-tip].tip--bottom-left:hover:before,.lifterlms [data-title-default].tip--bottom-left:hover:before,.lifterlms [data-title-active].tip--bottom-left:hover:before,.llms-metabox [data-tip].tip--bottom-left:hover:before,.llms-metabox [data-title-default].tip--bottom-left:hover:before,.llms-metabox [data-title-active].tip--bottom-left:hover:before,.llms-mb-container [data-tip].tip--bottom-left:hover:before,.llms-mb-container [data-title-default].tip--bottom-left:hover:before,.llms-mb-container [data-title-active].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-left:after,.lifterlms [data-title-default].tip--bottom-left:after,.lifterlms [data-title-active].tip--bottom-left:after,.llms-metabox [data-tip].tip--bottom-left:after,.llms-metabox [data-title-default].tip--bottom-left:after,.llms-metabox [data-title-active].tip--bottom-left:after,.llms-mb-container [data-tip].tip--bottom-left:after,.llms-mb-container [data-title-default].tip--bottom-left:after,.llms-mb-container [data-title-active].tip--bottom-left:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:after{border-bottom-color:#444;right:6px;bottom:0}.lifterlms [data-tip].tip--bottom-left:hover:after,.lifterlms [data-title-default].tip--bottom-left:hover:after,.lifterlms [data-title-active].tip--bottom-left:hover:after,.llms-metabox [data-tip].tip--bottom-left:hover:after,.llms-metabox [data-title-default].tip--bottom-left:hover:after,.llms-metabox [data-title-active].tip--bottom-left:hover:after,.llms-mb-container [data-tip].tip--bottom-left:hover:after,.llms-mb-container [data-title-default].tip--bottom-left:hover:after,.llms-mb-container [data-title-active].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after{bottom:-6px}.lifterlms [data-tip].tip--bottom-right:before,.lifterlms [data-title-default].tip--bottom-right:before,.lifterlms [data-title-active].tip--bottom-right:before,.llms-metabox [data-tip].tip--bottom-right:before,.llms-metabox [data-title-default].tip--bottom-right:before,.llms-metabox [data-title-active].tip--bottom-right:before,.llms-mb-container [data-tip].tip--bottom-right:before,.llms-mb-container [data-title-default].tip--bottom-right:before,.llms-mb-container [data-title-active].tip--bottom-right:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:before{top:100%;left:-10px}.lifterlms [data-tip].tip--bottom-right:hover:before,.lifterlms [data-title-default].tip--bottom-right:hover:before,.lifterlms [data-title-active].tip--bottom-right:hover:before,.llms-metabox [data-tip].tip--bottom-right:hover:before,.llms-metabox [data-title-default].tip--bottom-right:hover:before,.llms-metabox [data-title-active].tip--bottom-right:hover:before,.llms-mb-container [data-tip].tip--bottom-right:hover:before,.llms-mb-container [data-title-default].tip--bottom-right:hover:before,.llms-mb-container [data-title-active].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before{top:calc(100% + 6px)}.lifterlms [data-tip].tip--bottom-right:after,.lifterlms [data-title-default].tip--bottom-right:after,.lifterlms [data-title-active].tip--bottom-right:after,.llms-metabox [data-tip].tip--bottom-right:after,.llms-metabox [data-title-default].tip--bottom-right:after,.llms-metabox [data-title-active].tip--bottom-right:after,.llms-mb-container [data-tip].tip--bottom-right:after,.llms-mb-container [data-title-default].tip--bottom-right:after,.llms-mb-container [data-title-active].tip--bottom-right:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:after{border-bottom-color:#444;left:6px;bottom:0}.lifterlms [data-tip].tip--bottom-right:hover:after,.lifterlms [data-title-default].tip--bottom-right:hover:after,.lifterlms [data-title-active].tip--bottom-right:hover:after,.llms-metabox [data-tip].tip--bottom-right:hover:after,.llms-metabox [data-title-default].tip--bottom-right:hover:after,.llms-metabox [data-title-active].tip--bottom-right:hover:after,.llms-mb-container [data-tip].tip--bottom-right:hover:after,.llms-mb-container [data-title-default].tip--bottom-right:hover:after,.llms-mb-container [data-title-active].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after{bottom:-6px}.lifterlms [data-tip]:before,.lifterlms [data-title-default]:before,.lifterlms [data-title-active]:before,.llms-metabox [data-tip]:before,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-active]:before,.llms-mb-container [data-tip]:before,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-active]:before,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-active]:before{background:#444;border-radius:4px;color:#fff;font-size:13px;line-height:1.2;padding:8px;max-width:300px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.lifterlms [data-tip]:after,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:after{content:"";border:6px solid rgba(0,0,0,0);height:0;width:0}.lifterlms [data-tip]:before,.lifterlms [data-tip]:after,.lifterlms [data-title-default]:before,.lifterlms [data-title-default]:after,.lifterlms [data-title-active]:before,.lifterlms [data-title-active]:after,.llms-metabox [data-tip]:before,.llms-metabox [data-tip]:after,.llms-metabox [data-title-default]:before,.llms-metabox [data-title-default]:after,.llms-metabox [data-title-active]:before,.llms-metabox [data-title-active]:after,.llms-mb-container [data-tip]:before,.llms-mb-container [data-tip]:after,.llms-mb-container [data-title-default]:before,.llms-mb-container [data-title-default]:after,.llms-mb-container [data-title-active]:before,.llms-mb-container [data-title-active]:after,.llms-quiz-wrapper [data-tip]:before,.llms-quiz-wrapper [data-tip]:after,.llms-quiz-wrapper [data-title-default]:before,.llms-quiz-wrapper [data-title-default]:after,.llms-quiz-wrapper [data-title-active]:before,.llms-quiz-wrapper [data-title-active]:after{opacity:0;-webkit-transition:all .2s .1s ease;transition:all .2s .1s ease;position:absolute;pointer-events:none;visibility:hidden}.lifterlms [data-tip]:hover:before,.lifterlms [data-tip]:hover:after,.lifterlms [data-title-default]:hover:before,.lifterlms [data-title-default]:hover:after,.lifterlms [data-title-active]:hover:before,.lifterlms [data-title-active]:hover:after,.llms-metabox [data-tip]:hover:before,.llms-metabox [data-tip]:hover:after,.llms-metabox [data-title-default]:hover:before,.llms-metabox [data-title-default]:hover:after,.llms-metabox [data-title-active]:hover:before,.llms-metabox [data-title-active]:hover:after,.llms-mb-container [data-tip]:hover:before,.llms-mb-container [data-tip]:hover:after,.llms-mb-container [data-title-default]:hover:before,.llms-mb-container [data-title-default]:hover:after,.llms-mb-container [data-title-active]:hover:before,.llms-mb-container [data-title-active]:hover:after,.llms-quiz-wrapper [data-tip]:hover:before,.llms-quiz-wrapper [data-tip]:hover:after,.llms-quiz-wrapper [data-title-default]:hover:before,.llms-quiz-wrapper [data-title-default]:hover:after,.llms-quiz-wrapper [data-title-active]:hover:before,.llms-quiz-wrapper [data-title-active]:hover:after{opacity:1;-webkit-transition:all .2s .6s ease;transition:all .2s .6s ease;visibility:visible;z-index:99999999}.lifterlms [data-tip]:before,.llms-metabox [data-tip]:before,.llms-mb-container [data-tip]:before,.llms-quiz-wrapper [data-tip]:before{content:attr(data-tip)}.lifterlms [data-tip].active:before,.llms-metabox [data-tip].active:before,.llms-mb-container [data-tip].active:before,.llms-quiz-wrapper [data-tip].active:before{content:attr(data-tip-active)}.llms-membership-image{display:block;margin:0 auto}.llms-course-image{display:block;margin:0 auto;max-width:100%}.llms-featured-image{display:block;margin:0 auto}.llms-image-thumb{width:150px}.llms-video-wrapper .center-video{height:auto;max-width:100%;overflow:hidden;position:relative;padding-top:56.25%;text-align:center}.llms-video-wrapper .center-video>.wp-video,.llms-video-wrapper .center-video .fluid-width-video-wrapper,.llms-video-wrapper .center-video iframe,.llms-video-wrapper .center-video object,.llms-video-wrapper .center-video embed{height:100%;left:0;position:absolute;top:0;width:100%}.llms-video-wrapper .center-video>.wp-video{width:100% !important}.llms-video-wrapper .center-video .fluid-width-video-wrapper{padding-top:0 !important}.clear{clear:both;width:100%}.llms-featured-image{text-align:center}#main-content .llms-payment-options p{margin:0;font-size:16px}.llms-option{display:block;position:relative;margin:20px 0;padding-left:40px;font-size:16px}.llms-option label{cursor:pointer;position:static}.llms-option:first-child{margin-top:0}.llms-option:last-child{margin-bottom:0}#main-content .llms-option:last-child{margin-bottom:0}.llms-option input[type=radio]{display:block;position:absolute;top:3px;left:0;z-index:0}.llms-option input[type=radio]{display:inline-block}.llms-option input[type=radio]+label span.llms-radio{display:none}.llms-option input[type=radio]+label span.llms-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;z-index:20;position:absolute;top:0;left:-2px;display:inline-block;width:24px;height:24px;border-radius:50%;cursor:pointer;vertical-align:middle;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.5) 0 0 0 1px;background:#efefef;background-image:radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);background-repeat:no-repeat;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1)}.llms-option input[type=radio]:checked+label span.llms-radio{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1)}.llms-option input[type=radio]+label span.llms-radio{background-position:-24px 0}.llms-option input[type=radio]:checked+label span.llms-radio{background-position:0 0}.llms-option input[type=submit]{border:none;background:#e5554e;color:#fff;font-size:20px;padding:10px 0;border-radius:3px;cursor:pointer;width:100%}.llms-styled-text{padding:14px 0}.llms-notice-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;border:1px solid #ccc;list-style-type:none;width:100%;overflow:auto}.llms-notice-box input[type=text]{height:auto}.llms-notice-box .col-1-1{width:100%}.llms-notice-box .col-1-1 input[type=text]{width:100%}.llms-notice-box .col-1-2{width:50%;float:left}@media screen and (max-width: 768px){.llms-notice-box .col-1-2{width:100%}}.llms-notice-box .col-1-3{width:33%;float:left;margin-right:10px}.llms-notice-box .col-1-4{width:25%;float:left;margin-right:10px}@media screen and (max-width: 768px){.llms-notice-box .col-1-4{width:100%}}.llms-notice-box .col-1-6{width:16.6%;float:left;margin-right:10px}.llms-notice-box .col-1-8{width:11%;float:right}.llms-notice-box .llms-pad-right{padding-right:10px}@media screen and (max-width: 768px){.llms-notice-box .llms-pad-right{padding-right:0}}input[type=text].cc_cvv,#cc_cvv{margin-right:0;width:23%;float:right}.llms-clear-box{border-radius:3px;z-index:10;margin:10px 0;padding:15px 20px;list-style-type:none;width:100%;overflow:auto}.llms-price-label{font-weight:normal}.llms-final-price{font-weight:bold;float:right}.llms-center-content{text-align:center}.llms-input-text{background-color:#fff;border:1px solid #ddd;color:#333;font-size:18px;font-weight:300;padding:16px;width:100%}.llms-price{margin-bottom:0;font-weight:bold}.llms-price-loop{margin-bottom:0;font-weight:bold}.courses .entry{padding:0}.list-view .site-content .llms-course-list .hentry,.list-view .site-content .llms-membership-list .hentry{border-top:0;padding-top:0}.llms-content{width:100%}.llms-lesson-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-template-wrapper{width:100%;display:block;clear:both}.llms-button-wrapper{width:100%;display:block;clear:both;text-align:center}.llms-styled-select{border:1px solid #ccc;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px;overflow:hidden;position:relative}.llms-styled-select,.llms-styled-select select{width:100%}select:focus{outline:none}.llms-styled-select select{height:34px;padding:5px 0 5px 5px;background:rgba(0,0,0,0);border:none;-webkit-appearance:none;font-size:16px;color:#444}@-moz-document url-prefix(){.--ms-styled-select select{width:110%}}.llms-styled-select .fa-sort-desc{position:absolute;top:0;right:12px;font-size:24px;color:#ccc}select::-ms-expand{display:none}_:-o-prefocus .llms-styled-select,.selector .llms-styled-select{background:none}.llms-form-item-wrapper{margin-bottom:1em}.llms-progress-circle{position:relative;width:200px;height:200px;float:left}.llms-progress-circle-count{top:27%;position:absolute;width:94%;text-align:center;color:#666;font-size:44px}.llms-progress-circle svg{position:absolute;width:200px;height:200px}.llms-progress-circle circle{fill:rgba(0,0,0,0)}svg .llms-background-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#f1f2f1;stroke-dasharray:430}svg .llms-animated-circle{fill:rgba(0,0,0,0);stroke-width:10px;stroke:#e5554e;stroke-dasharray:430;stroke-dashoffset:410}.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title{font-weight:700}.llms-widget-syllabus .llms-lesson-complete,.llms-widget-syllabus .lesson-complete-placeholder{font-size:1.2em;margin-right:6px;color:#ccc}.llms-widget-syllabus .llms-lesson-complete.done,.llms-widget-syllabus .lesson-complete-placeholder.done{color:#e5554e}.llms-widget-syllabus .section-title{font-weight:bold}.llms-widget-syllabus .lesson-title a{text-decoration:none}.llms-widget-syllabus .lesson-title a:hover{text-decoration:none !important}.llms-widget-syllabus .lesson-title.done a{color:#999;text-decoration:line-through}.llms-widget-syllabus ul{list-style-type:none}.llms-widget-syllabus ul li{list-style-type:none}.llms-widget-syllabus ul li ul li{margin:0 0 2px 0;padding:0}.llms-remove-coupon{float:right}.llms-lesson-link-locked,.llms-lesson-link-locked:hover{background:#f1f1f1;-webkit-box-shadow:0 1px 2px 0 rgba(1,1,1,.4);box-shadow:0 1px 2px 0 rgba(1,1,1,.4);display:block;color:#a6a6a6;min-height:85px;padding:15px;text-decoration:none;position:relative}.llms-lesson-preview.is-complete .llms-lesson-link-locked{padding-left:75px}.llms-lesson-tooltip{display:none;position:absolute;color:#000;background-color:silver;padding:.25em;border-radius:2px;z-index:100;top:0;left:50%;text-align:center;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.llms-lesson-tooltip:after{content:"";width:0;height:0;border-top:8px solid silver;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);position:absolute;bottom:-8px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.llms-lesson-tooltip.active{display:inline-block}.llms-loop-list{list-style:none;margin:0 -10px;padding:0}@media all and (min-width: 600px){.llms-loop-list.cols-1 .llms-loop-item{width:100%}.llms-loop-list.cols-2 .llms-loop-item{width:50%}.llms-loop-list.cols-3 .llms-loop-item{width:33.3333333333%}.llms-loop-list.cols-4 .llms-loop-item{width:25%}.llms-loop-list.cols-5 .llms-loop-item{width:20%}.llms-loop-list.cols-6 .llms-loop-item{width:16.6666666667%}}.llms-loop-item{float:left;list-style:none;margin:0;padding:0;width:100%}.llms-loop-item-content{background:#f1f1f1;padding-bottom:10px;margin:10px}.llms-loop-item-content:hover{background:#eaeaea}.llms-loop-item-content .llms-loop-link{color:#212121;display:block}.llms-loop-item-content .llms-loop-link:visited{color:#212121}.llms-loop-item-content .llms-featured-image{display:block;max-width:100%}.llms-loop-item-content .llms-loop-title{margin-top:5px}.llms-loop-item-content .llms-loop-title:hover{color:#2295ff}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author,.llms-loop-item-content .llms-loop-title{padding:0 10px}.llms-loop-item-content .llms-meta,.llms-loop-item-content .llms-author{color:#444;display:block;font-size:13px;margin-bottom:3px}.llms-loop-item-content .llms-meta:last-child,.llms-loop-item-content .llms-author:last-child{margin-bottom:0}.llms-loop-item-content .llms-featured-img-wrap{overflow:hidden}.llms-loop-item-content p{margin-bottom:0}.llms-loop-item-content .llms-progress{margin:0;height:.4em}.llms-loop-item-content .llms-progress .progress__indicator{display:none}.llms-loop-item-content .llms-progress .llms-progress-bar{background-color:#f6f6f6;right:0;top:0}.course .llms-meta-info{margin:20px 0}.course .llms-meta-info .llms-meta-title{margin-bottom:5px}.course .llms-meta-info .llms-meta p{margin-bottom:0}.course .llms-meta-info .llms-meta span{font-weight:700}.course .llms-course-progress{margin:40px auto;max-width:480px;text-align:center}.llms-syllabus-wrapper{margin:15px;text-align:center}.llms-syllabus-wrapper .llms-section-title{margin:25px 0 0}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-back-to-course{width:49%}.llms-course-navigation .llms-prev-lesson,.llms-course-navigation .llms-back-to-course{float:left;margin-right:.5%}.llms-course-navigation .llms-next-lesson,.llms-course-navigation .llms-prev-lesson+.llms-back-to-course{float:right;margin-left:.5%}.llms-lesson-preview{display:inline-block;margin-top:15px;max-width:100%;position:relative;width:480px}.llms-lesson-preview .llms-lesson-link{background:#f1f1f1;color:#212121;display:block;padding:15px;text-decoration:none}.llms-lesson-preview .llms-lesson-link:before,.llms-lesson-preview .llms-lesson-link:after{content:" ";display:table}.llms-lesson-preview .llms-lesson-link:after{clear:both}.llms-lesson-preview .llms-lesson-link:hover{background:#eaeaea}.llms-lesson-preview .llms-lesson-link:visited{color:#212121}.llms-lesson-preview .llms-lesson-thumbnail{margin-bottom:10px}.llms-lesson-preview .llms-lesson-thumbnail img{display:block;width:100%}.llms-lesson-preview .llms-pre-text{text-align:left}.llms-lesson-preview .llms-lesson-title{font-weight:700;margin:0 auto 10px;text-align:left}.llms-lesson-preview .llms-lesson-title:last-child{margin-bottom:0}.llms-lesson-preview .llms-lesson-excerpt{text-align:left}.llms-lesson-preview .llms-main{float:left;width:100%}.llms-lesson-preview .llms-extra{float:right;width:15%}.llms-lesson-preview .llms-extra+.llms-main{width:85%}.llms-lesson-preview .llms-lesson-counter,.llms-lesson-preview .llms-free-lesson-svg,.llms-lesson-preview .llms-lesson-complete,.llms-lesson-preview .llms-lesson-complete-placeholder{display:block;font-size:32px;margin-bottom:15px}.llms-lesson-preview.is-free .llms-lesson-complete,.llms-lesson-preview.is-complete .llms-lesson-complete{color:#2295ff}.llms-lesson-preview .llms-icon-free{background:#2295ff;border-radius:4px;color:#f1f1f1;display:inline-block;padding:5px 6px 4px;line-height:1;font-size:14px}.llms-lesson-preview.is-incomplete .llms-lesson-complete{color:#cacaca}.llms-lesson-preview .llms-lesson-counter{font-size:16px;line-height:1}.llms-lesson-preview .llms-free-lesson-svg{fill:currentColor;height:23px;width:50px}.llms-lesson-preview p{margin-bottom:0}.llms-progress{clear:both;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;position:relative;height:1em;width:100%;margin:15px 0}.llms-progress .llms-progress-bar{background-color:#f1f2f1;position:relative;height:.4em;top:.3em;width:100%}.llms-progress .progress-bar-complete{background-color:#ef476f;height:100%}.progress__indicator{float:right;text-align:right;height:1em;line-height:1em;margin-left:5px;white-space:nowrap}.llms-author .name{margin-left:5px}.llms-author .label{margin-left:5px}.llms-author .avatar{border-radius:50%}.llms-author .bio{margin-top:5px}.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author{margin-left:0}.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author{margin-right:0}.llms-instructor-info .llms-instructors .llms-author{background:#f5f5f5;border-top:4px solid #2295ff;text-align:center;margin:45px 5px 5px;padding:0 10px 10px}.llms-instructor-info .llms-instructors .llms-author .avatar{background:#2295ff;border:4px solid #2295ff;display:block;margin:-35px auto 10px}.llms-instructor-info .llms-instructors .llms-author .llms-author-info{display:block}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name{font-weight:700}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label{font-size:85%}.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio{font-size:90%;margin-bottom:0}.llms_review{margin:20px 0px;padding:10px}.llms_review h5{font-size:17px;margin:3px 0px}.llms_review h6{font-size:13px}.llms_review p{font-size:15px}.review_box [type=text]{margin:10px 0px}.review_box h5{color:red;display:none}.review_box+.thank_you_box{display:none}.llms-notice{background:rgba(34,149,255,.3);border-color:#2295ff;border-style:solid;border-width:3px;padding:10px;margin-bottom:10px}.llms-notice p:last-child,.llms-notice ul:last-child{margin-bottom:0}.llms-notice li{list-style-type:none}.llms-notice.llms-debug{background:rgba(202,202,202,.3);border-color:#cacaca}.llms-notice.llms-error{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-notice.llms-success{background:rgba(131,195,115,.3);border-color:#83c373}.entry-content .llms-notice{margin:0 0 10px}.entry-content .llms-notice li{list-style-type:none}ul.llms-achievements-loop,.lifterlms ul.llms-achievements-loop,ul.llms-certificates-loop,.lifterlms ul.llms-certificates-loop{list-style-type:none;margin:0 -10px;padding:0}ul.llms-achievements-loop:before,ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:before,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:before,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:before,.lifterlms ul.llms-certificates-loop:after{content:" ";display:table}ul.llms-achievements-loop:after,.lifterlms ul.llms-achievements-loop:after,ul.llms-certificates-loop:after,.lifterlms ul.llms-certificates-loop:after{clear:both}ul.llms-achievements-loop li.llms-achievement-loop-item,ul.llms-achievements-loop li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,ul.llms-certificates-loop li.llms-achievement-loop-item,ul.llms-certificates-loop li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;float:left;list-style-type:none;margin:0;padding:10px;width:100%}@media all and (min-width: 600px){ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item{width:100%}ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item{width:50%}ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item{width:33.3333333333%}ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item{width:25%}ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item{width:20%}}.llms-achievement,.llms-certificate{background:#f1f1f1;border:none;color:inherit;display:block;text-decoration:none;width:100%}.llms-achievement:hover,.llms-certificate:hover{background:#eaeaea}.llms-achievement .llms-achievement-img,.llms-certificate .llms-achievement-img{display:block;margin:0;width:100%}.llms-achievement .llms-achievement-title,.llms-certificate .llms-achievement-title{font-size:16px;margin:0;padding:10px;text-align:center}.llms-achievement .llms-certificate-title,.llms-certificate .llms-certificate-title{font-size:16px;margin:0;padding:0 0 10px}.llms-achievement .llms-achievement-info,.llms-achievement .llms-achievement-date,.llms-certificate .llms-achievement-info,.llms-certificate .llms-achievement-date{display:none}.llms-achievement .llms-achievement-content,.llms-certificate .llms-achievement-content{padding:20px}.llms-achievement .llms-achievement-content:empty,.llms-certificate .llms-achievement-content:empty{padding:0}.llms-achievement .llms-achievement-content *:last-child,.llms-certificate .llms-achievement-content *:last-child{margin-bottom:0}.llms-certificate{border:4px double #f1f1f1;padding:20px 10px;background:#fff;text-align:center}.llms-certificate:hover{background:#fff;border-color:#eaeaea}.llms-achievement-modal .llms-achievement{background:#fff}.llms-achievement-modal .llms-achievement-info{display:block}.llms-achievement-modal .llms-achievement-title{display:none}.llms-notification{background:#fff;-webkit-box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;box-shadow:0 1px 2px -2px #333,0 1px 1px -1px #333;border-top:4px solid #2295ff;opacity:0;padding:12px;position:fixed;right:-800px;top:24px;-webkit-transition:opacity .4s ease-in-out,right .4s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out;visibility:hidden;width:auto;z-index:9999999}.llms-notification:before,.llms-notification:after{content:" ";display:table}.llms-notification:after{clear:both}.llms-notification.visible{left:12px;opacity:1;right:12px;-webkit-transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out;transition:opacity .4s ease-in-out,right .4s ease-in-out,top .1s ease-in-out,background .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;visibility:visible}.llms-notification.visible:hover .llms-notification-dismiss{opacity:1}.llms-notification .llms-notification-content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.llms-notification .llms-notification-main{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:4;-ms-flex:4;flex:4;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.llms-notification .llms-notification-title{font-size:18px;margin:0}.llms-notification .llms-notification-body{font-size:14px;line-height:1.4}.llms-notification .llms-notification-body p,.llms-notification .llms-notification-body li{font-size:inherit}.llms-notification .llms-notification-body p{margin-bottom:8px}.llms-notification .llms-notification-body .llms-mini-cert{background:#f6f6f6;border:1px solid #d0d0d0;-webkit-box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;box-shadow:inset 0 0 0 3px #fefefe,inset 0 0 0 4px #dedede;padding:16px 16px 24px;margin-top:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title{font-size:16px;font-weight:700;margin:12px auto;text-align:center}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body{width:100%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(1){width:65%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(2){width:35%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(3){width:85%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(4){width:75%;margin-top:18px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(5){width:70%}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(6){margin-left:12px;margin-bottom:-24px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body>div:nth-child(7){width:65%;margin-right:12px}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line{border-radius:2px;height:8px;background:#b0b0b0;background-image:-webkit-gradient(linear, left top, right top, from(#b0b0b0), color-stop(20%, #a0a0a0), color-stop(40%, #b0b0b0), to(#b0b0b0));background-image:linear-gradient(to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);background-repeat:no-repeat;margin:4px auto}.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot{background:#b0b0b0;border-radius:50%;display:inline-block;content:"";height:24px;width:24px}.llms-notification .llms-notification-body .llms-mini-cert p{margin-bottom:0}.llms-notification .llms-notification-aside{-ms-flex-item-align:start;align-self:flex-start;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:12px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.llms-notification .llms-notification-icon{display:block;max-width:64px}.llms-notification .llms-notification-footer{border-top:1px solid #e5e5e5;font-size:12px;margin-top:12px;padding:6px 6px 0;text-align:right}.llms-notification .llms-notification-dismiss{color:#e5554e;cursor:pointer;font-size:22px;position:absolute;right:10px;top:8px;-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out}.llms-sd-notification-center .llms-notification-list,.llms-sd-notification-center .llms-notification-list-item{list-style-type:none;margin:0;padding:0}.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification{background:#fcfcfc}.llms-sd-notification-center .llms-notification{opacity:1;border-top:1px solid #e5e5e5;left:auto;padding:24px;position:relative;right:auto;top:auto;visibility:visible;width:auto}.llms-sd-notification-center .llms-notification .llms-notification-aside{max-width:64px}.llms-sd-notification-center .llms-notification .llms-notification-footer{border:none;padding:0;text-align:left}.llms-sd-notification-center .llms-notification .llms-progress{display:none !important}.llms-sd-notification-center .llms-notification .llms-notification-date{color:#515151;float:left;margin-right:6px}.llms-sd-notification-center .llms-notification .llms-mini-cert{margin:0 auto;max-width:380px}@media all and (min-width: 480px){.llms-notification{right:-800px;width:360px}.llms-notification.visible{left:auto;right:24px}.llms-notification .llms-notification-dismiss{opacity:0}}.llms-pagination ul{list-style-type:none}.llms-pagination ul li{float:left}.llms-pagination ul li a{border-bottom:0;text-decoration:none}.llms-pagination ul li .page-numbers{padding:.5em;text-decoration:underline}.llms-pagination ul li .page-numbers.current{text-decoration:none}.llms-tooltip{background:#2a2a2a;border-radius:4px;color:#fff;font-size:14px;line-height:1.2;opacity:0;top:-20px;padding:8px 12px;left:50%;position:absolute;pointer-events:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-transition:opacity .2s ease,top .2s ease;transition:opacity .2s ease,top .2s ease;max-width:320px}.llms-tooltip.show{top:-28px;opacity:1}.llms-tooltip:after{bottom:-8px;border-top:8px solid #2a2a2a;border-left:8px solid rgba(0,0,0,0);border-right:8px solid rgba(0,0,0,0);content:"";height:0;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:0}.webui-popover-title{font-size:initial;font-weight:initial;line-height:initial}.webui-popover-inverse .webui-popover-inner .close{color:#fff;opacity:.6;text-shadow:none}.webui-popover-inverse .webui-popover-inner .close:hover{opacity:.8}.webui-popover-inverse .webui-popover-content a{color:#fff;text-decoration:underline}.webui-popover-inverse .webui-popover-content a:hover{text-decoration:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results{margin:0;padding:0;list-style-type:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question{background:#efefef;margin:0 0 10px;position:relative;list-style-type:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer{color:inherit;display:block;padding:10px 35px 10px 10px;text-decoration:none}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{content:" ";display:table}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after{clear:both}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect{background:rgba(255,146,43,.2)}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon{background-color:#ff922b}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct{background:rgba(131,195,115,.2)}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon{background-color:#83c373}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect{background:rgba(229,85,78,.2)}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon{background-color:#e5554e}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question pre{overflow:auto}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title{float:left;margin:0;line-height:1}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points{float:right;line-height:1}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip{position:absolute;right:-12px;top:-2px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon{color:rgba(255,255,255,.65);border-radius:50%;font-size:30px;height:40px;line-height:40px;text-align:center;width:40px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main{display:none;padding:0 10px 10px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label{font-weight:700;margin-bottom:10px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers{margin:0;padding:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{padding:0;margin:0 0 0 30px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child{list-style-type:none;margin-left:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img{height:auto;max-width:200px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section{border-top:2px solid rgba(255,255,255,.5);margin-top:20px;padding-top:20px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child{border-top:none;margin-top:0;padding-top:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers{list-style-type:none;margin:0;padding:0}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer,.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer{display:inline-block;list-style-type:none;margin:0;padding:5px}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed{opacity:.5}.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title{font-style:italic;font-weight:normal}.single-llms_quiz .llms-return{margin-bottom:10px}.single-llms_quiz .llms-quiz-results:before,.single-llms_quiz .llms-quiz-results:after{content:" ";display:table}.single-llms_quiz .llms-quiz-results:after{clear:both}.single-llms_quiz .llms-quiz-results .llms-donut.passing{color:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path{stroke:#83c373}.single-llms_quiz .llms-quiz-results .llms-donut.pending{color:#555}.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path{stroke:#555}.single-llms_quiz .llms-quiz-results .llms-donut.failing{color:#e5554e}.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path{stroke:#e5554e}.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{margin-bottom:20px}@media all and (min-width: 600px){.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside{float:left;width:220px}.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{float:right;width:calc(100% - 300px)}.single-llms_quiz .llms-quiz-results .llms-quiz-results-history{clear:right}}.single-llms_quiz ul.llms-quiz-meta-info,.single-llms_quiz ul.llms-quiz-meta-info li{list-style-type:none;margin:0;padding:0}.single-llms_quiz ul.llms-quiz-meta-info{margin-bottom:10px}.single-llms_quiz .llms-quiz-buttons{margin-top:10px;text-align:left}.single-llms_quiz .llms-quiz-buttons form{display:inline-block}.llms-quiz-question-wrapper{min-height:140px;position:relative}.llms-quiz-question-wrapper .llms-quiz-loading{bottom:20px;left:0;position:absolute;right:0;text-align:center;z-index:1}.llms-quiz-ui{background:#fcfcfc;padding:20px;position:relative}.llms-quiz-ui .llms-quiz-header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 0 30px}.llms-quiz-ui .llms-progress{background-color:#f1f2f1;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:8px;margin:0;overflow:hidden}.llms-quiz-ui .llms-progress .progress-bar-complete{-webkit-transition:width .3s ease-in;transition:width .3s ease-in;width:0}.llms-quiz-ui .llms-error{background:#e5554e;border-radius:4px;color:#fff;margin:10px 0;padding:10px}.llms-quiz-ui .llms-error:before,.llms-quiz-ui .llms-error:after{content:" ";display:table}.llms-quiz-ui .llms-error:after{clear:both}.llms-quiz-ui .llms-error a{color:rgba(255,255,255,.6);float:right;font-size:22px;line-height:1;text-decoration:none}.llms-quiz-ui .llms-quiz-counter{display:none;color:#6a6a6a;float:right;font-size:18px}.llms-quiz-ui .llms-quiz-counter .llms-sep{margin:0 5px}.llms-quiz-ui .llms-quiz-nav{margin-top:20px}.llms-quiz-ui .llms-quiz-nav button{margin:0 10px 0 0}.llms-question-wrapper .llms-question-text{font-size:30px;font-weight:400;margin-bottom:15px}.llms-question-wrapper ol.llms-question-choices{list-style-type:none;margin:0;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice{border-bottom:1px solid #e8e8e8;margin:0;padding:0;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture{border-bottom:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label{display:inline-block;padding:0}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker{bottom:10px;margin:0;position:absolute;right:10px}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image{margin:2px;padding:20px;-webkit-transition:background .4s ease;transition:background .4s ease}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img{display:block;width:100%}.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked~.llms-choice-image{background:#efefef}.llms-question-wrapper ol.llms-question-choices li.llms-choice input{display:none;left:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.llms-question-wrapper ol.llms-question-choices li.llms-choice label{display:block;margin:0;padding:10px 20px;position:relative}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker{background:#f0f0f0;display:inline-block;font-size:20px;height:40px;line-height:40px;margin-right:10px;text-align:center;-webkit-transition:all .2s ease;transition:all .2s ease;vertical-align:middle;width:40px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister,.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox{border-radius:4px}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio{border-radius:50%}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker{background:#ef476f;color:#fff}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .iterator{display:none}.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked+.llms-marker .fa{display:inline}.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text{display:inline-block;font-size:18px;font-weight:400;line-height:1.6;margin-bottom:0;vertical-align:middle;width:calc(100% - 60px)}.llms-quiz-timer{background:#fff;border:1px solid #83c373;border-radius:4px;color:#83c373;float:right;font-size:18px;line-height:1;margin-left:20px;padding:8px 12px;position:relative;white-space:nowrap;z-index:1}.llms-quiz-timer.color-half{border-color:#ff922b;color:#ff922b}.llms-quiz-timer.color-empty{border-color:#e5554e;color:#e5554e}.llms-quiz-timer .llms-tiles{display:inline-block;margin-left:5px}.voucher-expand{display:none}@media all and (min-width: 600px){.llms-access-plans.cols-1 .llms-access-plan{width:100%}.llms-access-plans.cols-2 .llms-access-plan{width:50%}.llms-access-plans.cols-3 .llms-access-plan{width:33.3333333333%}.llms-access-plans.cols-4 .llms-access-plan{width:25%}.llms-access-plans.cols-5 .llms-access-plan{width:20%}}.llms-free-enroll-form{margin-bottom:0}.llms-access-plan{-webkit-box-sizing:border-box;box-sizing:border-box;float:left;text-align:center;width:100%}.llms-access-plan .llms-access-plan-footer,.llms-access-plan .llms-access-plan-content{background:#f1f1f1}.llms-access-plan.featured .llms-access-plan-featured{background:#4ba9ff}.llms-access-plan.featured .llms-access-plan-footer,.llms-access-plan.featured .llms-access-plan-content{border-left:3px solid #2295ff;border-right:3px solid #2295ff}.llms-access-plan.featured .llms-access-plan-footer{border-bottom-color:#2295ff}.llms-access-plan.on-sale .price-regular{text-decoration:line-through}.llms-access-plan .stamp{background:#2295ff;color:#fff;font-size:11px;font-style:normal;font-weight:300;padding:2px 3px;vertical-align:top}.llms-access-plan .llms-access-plan-restrictions ul{margin:0}.llms-access-plan-featured{color:#fff;font-size:14px;font-weight:400;margin:0 2px 0 2px}.llms-access-plan-content{margin:0 2px 0}.llms-access-plan-content .llms-access-plan-pricing{padding:10px 0 0}.llms-access-plan-title{background:#2295ff;color:#fff;margin-bottom:0;padding:10px}.llms-access-plan-pricing .llms-price-currency-symbol{font-size:14px;vertical-align:top}.llms-access-plan-price{font-size:18px;font-variant:small-caps;line-height:20px}.llms-access-plan-price .lifterlms-price{font-weight:700}.llms-access-plan-price.sale{padding:5px 0;border-top:1px solid #d0d0d0;border-bottom:1px solid #d0d0d0}.llms-access-plan-trial,.llms-access-plan-schedule,.llms-access-plan-sale-end,.llms-access-plan-expiration{font-size:15px;font-variant:small-caps;line-height:1.2}.llms-access-plan-description{font-size:16px;padding:10px 10px 0}.llms-access-plan-description ul{margin:0}.llms-access-plan-description ul li{border-bottom:1px solid #d0d0d0;list-style-type:none}.llms-access-plan-description ul li:last-child{border-bottom:none}.llms-access-plan-description div:last-child,.llms-access-plan-description img:last-child,.llms-access-plan-description p:last-child,.llms-access-plan-description ul:last-child,.llms-access-plan-description li:last-child{margin-bottom:0}.llms-access-plan-restrictions .stamp{vertical-align:baseline}.llms-access-plan-restrictions ul{margin:0}.llms-access-plan-restrictions ul li{font-size:12px;line-height:14px;list-style-type:none}.llms-access-plan-restrictions a{color:#f8954f}.llms-access-plan-restrictions a:hover{color:#f67d28}.llms-access-plan-footer{border-bottom:3px solid #f1f1f1;padding:10px;margin:0 2px 2px 2px}.llms-access-plan-footer .llms-access-plan-pricing{padding:0 0 10px}.webui-popover-content .llms-members-only-restrictions{text-align:center}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li,.webui-popover-content .llms-members-only-restrictions p{margin:0;padding:0}.webui-popover-content .llms-members-only-restrictions ul,.webui-popover-content .llms-members-only-restrictions ol,.webui-popover-content .llms-members-only-restrictions li{list-style-type:none}.webui-popover-content .llms-members-only-restrictions li{padding:8px 0;border-top:1px solid #3b3b3b}.webui-popover-content .llms-members-only-restrictions li:first-child{border-top:none}.webui-popover-content .llms-members-only-restrictions li a{display:block}.llms-checkout-wrapper form.llms-login{border:3px solid #2295ff;display:none;margin-bottom:10px}.llms-checkout-wrapper .llms-form-heading{background:#2295ff;color:#fff;margin:0 0 5px;padding:10px}.llms-checkout{background:#fff;position:relative}@media all and (min-width: 800px){.llms-checkout-cols-2 .llms-checkout-col{float:left}.llms-checkout-cols-2 .llms-checkout-col.llms-col-1{margin-right:5px;width:calc(58% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2{margin-left:5px;width:calc(42% - 5px)}.llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button{width:100%}}.llms-checkout-section{border:3px solid #2295ff;margin-bottom:10px;position:relative}.llms-checkout-section-content{margin:10px}.llms-checkout-section-content.llms-form-fields{margin:0px}.llms-checkout-section-content .llms-label{font-weight:400;font-variant:small-caps;text-transform:lowercase}.llms-checkout-section-content .llms-order-summary{list-style-type:none;margin:0;padding:0}.llms-checkout-section-content .llms-order-summary li{list-style-type:none}.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular,.llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular{text-decoration:line-through}.llms-checkout-section-content .llms-coupon-wrapper{border-top:1px solid #dadada;margin-top:10px;padding-top:10px}.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry{display:none;margin-top:10px}.llms-form-field.llms-payment-gateway-option label+span.llms-description{display:inline-block;margin-left:5px}.llms-form-field.llms-payment-gateway-option .llms-description a{border:none;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.llms-form-field.llms-payment-gateway-option .llms-description img{display:inline;max-height:22px;vertical-align:middle}.llms-checkout-wrapper ul.llms-payment-gateways{margin:5px 0 0;padding:0}ul.llms-payment-gateways{list-style-type:none}ul.llms-payment-gateways li:last-child:after{border-bottom:1px solid #dadada;content:"";display:block;margin:10px}ul.llms-payment-gateways .llms-payment-gateway{margin-bottom:5px;list-style-type:none}ul.llms-payment-gateways .llms-payment-gateway:last-child{margin-bottom:none}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label{font-weight:700}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields{display:block}ul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice{margin-left:10px;margin-right:10px}ul.llms-payment-gateways .llms-payment-gateway .llms-form-field{padding-bottom:0}ul.llms-payment-gateways .llms-gateway-description{margin-left:40px}ul.llms-payment-gateways .llms-gateway-fields{display:none;margin:5px 0 20px}ul.llms-payment-gateways .llms-payment-gateway-error{padding:0 10px}.llms-checkout-confirm{margin:0 10px}.llms-payment-method{margin:10px 10px 0}.llms-gateway-description p{font-size:85%;font-style:italic;margin-bottom:0}.llms-form-fields{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields *{-webkit-box-sizing:border-box;box-sizing:border-box}.llms-form-fields.flush .llms-form-field{padding:0 0 10px}.llms-form-fields .wp-block-columns,.llms-form-fields .wp-block-column{margin-bottom:0}.llms-form-heading{padding:0 10px 10px}.llms-form-field{float:left;padding:0 10px 10px;position:relative;width:100%}.llms-form-field label:empty:after{content:" "}.llms-form-field.valid input[type=date],.llms-form-field.valid input[type=time],.llms-form-field.valid input[type=datetime-local],.llms-form-field.valid input[type=week],.llms-form-field.valid input[type=month],.llms-form-field.valid input[type=text],.llms-form-field.valid input[type=email],.llms-form-field.valid input[type=url],.llms-form-field.valid input[type=password],.llms-form-field.valid input[type=search],.llms-form-field.valid input[type=tel],.llms-form-field.valid input[type=number],.llms-form-field.valid textarea,.llms-form-field.valid select{background:rgba(131,195,115,.3);border-color:#83c373}.llms-form-field.error input[type=date],.llms-form-field.error input[type=time],.llms-form-field.error input[type=datetime-local],.llms-form-field.error input[type=week],.llms-form-field.error input[type=month],.llms-form-field.error input[type=text],.llms-form-field.error input[type=email],.llms-form-field.error input[type=url],.llms-form-field.error input[type=password],.llms-form-field.error input[type=search],.llms-form-field.error input[type=tel],.llms-form-field.error input[type=number],.llms-form-field.error textarea,.llms-form-field.error select,.llms-form-field.invalid input[type=date],.llms-form-field.invalid input[type=time],.llms-form-field.invalid input[type=datetime-local],.llms-form-field.invalid input[type=week],.llms-form-field.invalid input[type=month],.llms-form-field.invalid input[type=text],.llms-form-field.invalid input[type=email],.llms-form-field.invalid input[type=url],.llms-form-field.invalid input[type=password],.llms-form-field.invalid input[type=search],.llms-form-field.invalid input[type=tel],.llms-form-field.invalid input[type=number],.llms-form-field.invalid textarea,.llms-form-field.invalid select{background:rgba(229,85,78,.3);border-color:#e5554e}.llms-form-field.llms-visually-hidden-field{display:none}.llms-form-field.align-right{text-align:right}@media screen and (min-width: 600px){.llms-form-field.llms-cols-1{width:8.3333333333%}.llms-form-field.llms-cols-2{width:16.6666666667%}.llms-form-field.llms-cols-3{width:25%}.llms-form-field.llms-cols-4{width:33.3333333333%}.llms-form-field.llms-cols-5{width:41.6666666667%}.llms-form-field.llms-cols-6{width:50%}.llms-form-field.llms-cols-7{width:58.3333333333%}.llms-form-field.llms-cols-8{width:66.6666666667%}.llms-form-field.llms-cols-9{width:75%}.llms-form-field.llms-cols-10{width:83.3333333333%}.llms-form-field.llms-cols-11{width:91.6666666667%}.llms-form-field.llms-cols-12{width:100%}}.llms-form-field.type-hidden{padding:0}.llms-form-field.type-radio input,.llms-form-field.type-radio label,.llms-form-field.type-checkbox input,.llms-form-field.type-checkbox label{display:inline-block;width:auto}.llms-form-field.type-radio input,.llms-form-field.type-checkbox input{margin-right:5px}.llms-form-field.type-radio label+.llms-description,.llms-form-field.type-checkbox label+.llms-description{display:block}.llms-form-field.type-radio:not(.is-group) input[type=radio]{position:absolute;opacity:0;visibility:none}.llms-form-field.type-radio:not(.is-group) label:before{background:#fafafa;background-position:-24px 0;background-repeat:no-repeat;border-radius:50%;-webkit-box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;box-shadow:rgba(255,255,255,.15) 0 1px 1px,inset rgba(0,0,0,.35) 0 0 0 1px;content:"";cursor:pointer;display:inline-block;height:22px;margin-right:5px;position:relative;-webkit-transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);transition:background-position .15s cubic-bezier(0.8, 0, 1, 1);top:-3px;vertical-align:middle;width:22px;z-index:2}.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked+label:before{-webkit-transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);transition:background-position .2s .15s cubic-bezier(0, 0, 0.2, 1);background-position:0 0;background-image:radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%)}.llms-form-field .llms-input-group{margin-top:5px}.llms-form-field .llms-input-group .llms-form-field{padding:0 0 5px 5px}.llms-form-field.type-reset button:not(.auto),.llms-form-field.type-button button:not(.auto),.llms-form-field.type-submit button:not(.auto){width:100%}.llms-form-field .llms-description{font-size:14px;font-style:italic}.llms-form-field .llms-required{color:#e5554e;margin-left:4px}.llms-form-field input,.llms-form-field textarea,.llms-form-field select{width:100%;margin-bottom:5px}.llms-form-field .select2-container .select2-selection--single{height:auto;padding:4px 6px}.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow{height:100%}.llms-password-strength-meter{border:1px solid #dadada;display:none;font-size:10px;margin-top:-10px;padding:1px;position:relative;text-align:center}.llms-password-strength-meter:before{bottom:0;content:"";left:0;position:absolute;top:0;-webkit-transition:width .4s ease;transition:width .4s ease}.llms-password-strength-meter.mismatch,.llms-password-strength-meter.too-short,.llms-password-strength-meter.very-weak{border-color:#e35b5b}.llms-password-strength-meter.mismatch:before,.llms-password-strength-meter.too-short:before,.llms-password-strength-meter.very-weak:before{background:rgba(227,91,91,.25);width:25%}.llms-password-strength-meter.too-short:before{width:0}.llms-password-strength-meter.weak{border-color:#f78b53}.llms-password-strength-meter.weak:before{background:rgba(247,139,83,.25);width:50%}.llms-password-strength-meter.medium{border-color:#ffc733}.llms-password-strength-meter.medium:before{background:rgba(255,199,51,.25);width:75%}.llms-password-strength-meter.strong{border-color:#83c373}.llms-password-strength-meter.strong:before{background:rgba(131,195,115,.25);width:100%}.llms-widget-syllabus--collapsible .llms-section .section-header{cursor:pointer}.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down{display:none}.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson{display:none}.llms-widget-syllabus--collapsible .llms-syllabus-footer{text-align:left}.llms-student-dashboard .llms-sd-title{margin:25px 0}.llms-student-dashboard .llms-sd-items{list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item{float:left;list-style-type:none;margin:0;padding:0}.llms-student-dashboard .llms-sd-item:last-child .llms-sep{display:none}.llms-student-dashboard .llms-sd-item .llms-sep{color:#333;margin:0 5px}.llms-student-dashboard .llms-sd-section{margin-bottom:25px}.llms-student-dashboard .llms-sd-section .llms-sd-section-footer{margin-top:10px}.llms-student-dashboard .orders-table{border:1px solid #f5f5f5;width:100%}.llms-student-dashboard .orders-table thead{display:none}.llms-student-dashboard .orders-table thead th,.llms-student-dashboard .orders-table thead td{font-weight:700}@media all and (min-width: 600px){.llms-student-dashboard .orders-table thead{display:table-header-group}}.llms-student-dashboard .orders-table tbody tr:nth-child(even) td,.llms-student-dashboard .orders-table tbody tr:nth-child(even) th{background:#f9f9f9}.llms-student-dashboard .orders-table tfoot th,.llms-student-dashboard .orders-table tfoot td{padding:10px;text-align:right}.llms-student-dashboard .orders-table tfoot th:last-child,.llms-student-dashboard .orders-table tfoot td:last-child{border-bottom-width:0}.llms-student-dashboard .orders-table th{font-weight:700}.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-color:#efefef;border-style:solid;border-width:0;display:block;padding:8px 12px;text-align:center}.llms-student-dashboard .orders-table th .llms-button-primary,.llms-student-dashboard .orders-table td .llms-button-primary{display:inline-block}.llms-student-dashboard .orders-table th:last-child,.llms-student-dashboard .orders-table td:last-child{border-bottom-width:1px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{content:attr(data-label)}@media all and (min-width: 600px){.llms-student-dashboard .orders-table th,.llms-student-dashboard .orders-table td{border-bottom-width:1px;display:table-cell;text-align:left}.llms-student-dashboard .orders-table th:first-child,.llms-student-dashboard .orders-table td:first-child{width:220px}.llms-student-dashboard .orders-table th:before,.llms-student-dashboard .orders-table td:before{display:none}}@media all and (min-width: 600px){.llms-student-dashboard .orders-table.transactions th:first-child{width:auto}}.llms-student-dashboard .llms-status{border-radius:3px;border-bottom:1px solid #fff;display:inline-block;font-size:80%;padding:3px 6px;vertical-align:middle}.llms-student-dashboard .llms-status.llms-size--large{font-size:105%;padding:6px 12px}.llms-student-dashboard .llms-status.llms-active,.llms-student-dashboard .llms-status.llms-completed,.llms-student-dashboard .llms-status.llms-pass,.llms-student-dashboard .llms-status.llms-txn-succeeded{color:#1f3818;background-color:#83c373}.llms-student-dashboard .llms-status.llms-fail,.llms-student-dashboard .llms-status.llms-failed,.llms-student-dashboard .llms-status.llms-expired,.llms-student-dashboard .llms-status.llms-cancelled,.llms-student-dashboard .llms-status.llms-txn-failed{color:#5a110d;background-color:#e5554e}.llms-student-dashboard .llms-status.llms-incomplete,.llms-student-dashboard .llms-status.llms-on-hold,.llms-student-dashboard .llms-status.llms-pending,.llms-student-dashboard .llms-status.llms-pending-cancel,.llms-student-dashboard .llms-status.llms-refunded,.llms-student-dashboard .llms-status.llms-txn-pending,.llms-student-dashboard .llms-status.llms-txn-refunded{color:#664200;background-color:orange}.llms-student-dashboard .llms-person-form-wrapper .llms-change-password{display:none}@media all and (min-width: 600px){.llms-student-dashboard .order-primary{float:left;width:68%}}@media all and (min-width: 600px){.llms-student-dashboard .order-secondary{float:left;width:32%}}.llms-student-dashboard .order-secondary form{margin-bottom:0}@media all and (min-width: 600px){.llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary{float:none;width:100%}}.llms-student-dashboard .llms-switch-payment-source .llms-notice,.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice{margin-left:10px;margin-right:10px}.llms-student-dashboard .llms-switch-payment-source-main{border:none;display:none;margin:0}.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways{padding:10px 15px 0;margin:0}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary{padding:0 25px 10px;margin:0;list-style-type:none}.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li{list-style-type:none}.llms-student-dashboard .llms-loop-list{margin:0 -10px}.llms-sd-grades .llms-table .llms-progress{display:block;margin:0}.llms-sd-grades .llms-table .llms-progress .llms-progress-bar{top:0;height:1.4em}.llms-sd-grades .llms-table .llms-progress .progress__indicator{font-size:1em;position:relative;right:.4em;top:.2em;z-index:1}.llms-table.llms-single-course-grades tbody tr:first-child td,.llms-table.llms-single-course-grades tbody tr:first-child th{background-color:#eaeaea}.llms-table.llms-single-course-grades th{font-weight:400}.llms-table.llms-single-course-grades td .llms-donut{display:inline-block;vertical-align:middle}.llms-table.llms-single-course-grades td .llms-status{margin-right:4px}.llms-table.llms-single-course-grades td .llms-donut+.llms-status{margin-left:4px}.llms-table.llms-single-course-grades th.llms-section_title{font-size:110%;font-weight:700}.llms-table.llms-single-course-grades td.llms-lesson_title{padding-left:36px;max-width:40%}.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut{display:inline-block;margin-right:5px;vertical-align:middle}.llms-table.llms-single-course-grades td.llms-lesson_title a[href="#"]{pointer-events:none}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"]{color:inherit;position:relative}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip{max-width:380px;width:380px}.llms-table.llms-single-course-grades td.llms-lesson_title a[href^="#"] .llms-tooltip.show{top:-54px}.llms-sd-widgets{display:-webkit-box;display:-ms-flexbox;display:flex}.llms-sd-widgets .llms-sd-widget{background:#f9f9f9;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:10px 10px 20px;padding:0 0 20px}.llms-sd-widgets .llms-sd-widget:first-child{margin-left:0}.llms-sd-widgets .llms-sd-widget:last-child{margin-right:0}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title{background:#2295ff;color:#fff;font-size:18px;line-height:1;margin:0 0 20px;padding:10px}.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty{font-size:14px;font-style:italic;opacity:.5;text-align:center}.llms-sd-widgets .llms-sd-widget .llms-donut{margin:0 auto}.llms-sd-widgets .llms-sd-widget .llms-sd-date{opacity:.8;text-align:center;font-size:22px;line-height:1.1}.llms-sd-widgets .llms-sd-widget .llms-sd-date span{display:block}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day{font-size:52px}.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff{font-size:12px;font-style:italic;margin-top:8px;opacity:.75}.llms-sd-widgets .llms-sd-widget .llms-achievement{background:rgba(0,0,0,0);margin:0 auto;max-width:120px}.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title{display:none}.llms-sd-pagination{margin-top:24px}.llms-sd-pagination:before,.llms-sd-pagination:after{content:" ";display:table}.llms-sd-pagination:after{clear:both}.llms-sd-pagination .llms-button-secondary{display:inline-block}.llms-sd-pagination .llms-button-secondary.prev{float:left}.llms-sd-pagination .llms-button-secondary.next{float:right}.llms-sd-notification-center .llms-notification{z-index:1}.llms-table{border:1px solid #efefef;width:100%}.llms-table thead th,.llms-table thead td{font-weight:700}.llms-table tbody tr:nth-child(odd) td,.llms-table tbody tr:nth-child(odd) th{background:#f9f9f9}.llms-table tbody tr:last-child{border-bottom-width:0}.llms-table tfoot tr{background:#f9f9f9}.llms-table tfoot tr .llms-pagination .page-numbers{margin:0}.llms-table tfoot tr .llms-table-sort{text-align:right}.llms-table tfoot tr .llms-table-sort form,.llms-table tfoot tr .llms-table-sort select,.llms-table tfoot tr .llms-table-sort input,.llms-table tfoot tr .llms-table-sort button{margin:0}.llms-table th{font-weight:700}.llms-table th,.llms-table td{border-bottom:1px solid #efefef;padding:8px 12px}.llms-table th:first-child,.llms-table td:first-child{padding-left:12px}.llms-table th:last-child,.llms-table td:last-child{padding-right:12px}#page .llms-table tfoot label{display:inline}#page .llms-table tfoot select{height:auto}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */@font-face{font-family:"FontAwesome";src:url("../fonts/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/assets/js/app/llms-quiz-attempt.js b/assets/js/app/llms-quiz-attempt.js index 31933f81e9..bc01d3e0cd 100644 --- a/assets/js/app/llms-quiz-attempt.js +++ b/assets/js/app/llms-quiz-attempt.js @@ -3,8 +3,8 @@ * * @package LifterLMS/Scripts * - * @since [version] - * @version [version] + * @since 7.3.0 + * @version 7.3.0 */ LLMS.Quiz_Attempt = { diff --git a/assets/js/llms-admin.js b/assets/js/llms-admin.js index 416123ef71..2e08a26512 100644 --- a/assets/js/llms-admin.js +++ b/assets/js/llms-admin.js @@ -2,7 +2,7 @@ * LifterLMS Admin Panel Javascript * * @since Unknown - * @version [version] + * @version 7.3.0 * * @param obj $ Traditional jQuery reference. * @return void @@ -155,7 +155,7 @@ * @since 6.2.0 Use the LifterLMS REST API "list students" endpoint * instead of the `LLMS_AJAX_Handler::query_students()` PHP function. * @since 6.3.0 Fixed student's REST API URL. - * @since [version] Early bail when the element doesn't exist. + * @since 7.3.0 Early bail when the element doesn't exist. * * @param {Object} options Options passed to Select2. Each default option will be pulled from the elements data-attributes. * @return {jQuery} diff --git a/assets/js/llms-admin.min.js b/assets/js/llms-admin.min.js index e1ca0d79c7..f0d617d34f 100644 --- a/assets/js/llms-admin.min.js +++ b/assets/js/llms-admin.min.js @@ -1,2 +1,2 @@ -!function(s){window.llms=window.llms||{},window.llms.widgets=function(){return this.$widgets=s(".llms-widget"),this.$info_toggles=s(".llms-widget-info-toggle"),this.init=function(){this.bind()},this.bind=function(){this.$info_toggles.on("mouseenter mouseleave",function(e){s(this).closest(".llms-widget").toggleClass("info-showing","mouseenter"===e.type)})},this.init(),this};new window.llms.widgets;s.fn.llmsPostsSelect2=function(t){var l=this,t=t||{},e={multiple:!1,placeholder:void 0!==LLMS.l10n?LLMS.l10n.translate("Select a Course/Membership"):"Select a Course/Membership",post_type:l.attr("data-post-type")||"post",post_statuses:l.attr("data-post-statuses")||"publish",instructor_id:null,allow_clear:l.attr("data-post-type")||!1,width:null};s.each(e,function(e){l.attr("data-"+e)&&(t[e]=l.attr("data-"+e))}),"multiple"===l.attr("multiple")&&(t.multiple=!0),t=s.extend(e,t),this.llmsSelect2({allowClear:t.allow_clear,ajax:{dataType:"JSON",delay:250,method:"POST",url:window.ajaxurl,data:function(e){return{action:"select2_query_posts",page:e.page?e.page-1:0,post_type:t.post_type,instructor_id:t.instructor_id,post_statuses:t.post_statuses,term:e.term,_ajax_nonce:window.llms.ajax_nonce}},processResults:function(e,t){return{results:function t(e){return Array.isArray(e)?s.map(e,function(e){return{text:e.name,id:e.id}}):s.map(e,function(e){return{text:e.label,children:t(e.items)}})}(e.items),pagination:{more:e.more}}}},cache:!0,placeholder:t.placeholder,multiple:t.multiple,width:t.width})},s("select.llms-posts-select2").llmsPostsSelect2(),s.fn.llmsStudentsSelect2=function(t){var l=this,t=t||{},e={allow_clear:!1,enrolled_in:"",multiple:!1,not_enrolled_in:"",placeholder:void 0!==LLMS.l10n?LLMS.l10n.translate("Select a student"):"Select a student",roles:"",width:"100%"};return s.each(e,function(e){l.attr("data-"+e)&&(t[e]=l.attr("data-"+e))}),t=s.extend(e,t),this.llmsSelect2({allowClear:t.allow_clear,ajax:{dataType:"JSON",delay:250,method:"GET",url:window.wpApiSettings.root+"llms/v1/students",data:function(e){return{_wpnonce:window.wpApiSettings.nonce,context:"edit",page:e.page||1,per_page:10,not_enrolled_in:e.not_enrolled_in||t.not_enrolled_in,enrolled_in:e.enrolled_in||t.enrolled_in,roles:e.roles||t.roles,search:e.term,search_columns:"email,name,username"}},processResults:function(e,t){var t=t.page||1,l=this._request.getResponseHeader("X-WP-TotalPages");return{results:s.map(e,function(e){return{text:e.name+" <"+e.email+">",id:e.id}}),pagination:{more:t'+LLMS.l10n.replace("Error: %s",{"%s":e})+"

    ").insertAfter(t)})}}}(jQuery); +!function(s){window.llms=window.llms||{},window.llms.widgets=function(){return this.$widgets=s(".llms-widget"),this.$info_toggles=s(".llms-widget-info-toggle"),this.init=function(){this.bind()},this.bind=function(){this.$info_toggles.on("mouseenter mouseleave",function(e){s(this).closest(".llms-widget").toggleClass("info-showing","mouseenter"===e.type)})},this.init(),this};new window.llms.widgets;s.fn.llmsPostsSelect2=function(t){var l=this,t=t||{},e={multiple:!1,placeholder:void 0!==LLMS.l10n?LLMS.l10n.translate("Select a Course/Membership"):"Select a Course/Membership",post_type:l.attr("data-post-type")||"post",post_statuses:l.attr("data-post-statuses")||"publish",instructor_id:null,allow_clear:l.attr("data-post-type")||!1,width:null};s.each(e,function(e){l.attr("data-"+e)&&(t[e]=l.attr("data-"+e))}),"multiple"===l.attr("multiple")&&(t.multiple=!0),t=s.extend(e,t),this.llmsSelect2({allowClear:t.allow_clear,ajax:{dataType:"JSON",delay:250,method:"POST",url:window.ajaxurl,data:function(e){return{action:"select2_query_posts",page:e.page?e.page-1:0,post_type:t.post_type,instructor_id:t.instructor_id,post_statuses:t.post_statuses,term:e.term,_ajax_nonce:window.llms.ajax_nonce}},processResults:function(e,t){return{results:function t(e){return Array.isArray(e)?s.map(e,function(e){return{text:e.name,id:e.id}}):s.map(e,function(e){return{text:e.label,children:t(e.items)}})}(e.items),pagination:{more:e.more}}}},cache:!0,placeholder:t.placeholder,multiple:t.multiple,width:t.width})},s("select.llms-posts-select2").llmsPostsSelect2(),s.fn.llmsStudentsSelect2=function(t){var l,e;return this.length&&(l=this,t=t||{},e={allow_clear:!1,enrolled_in:"",multiple:!1,not_enrolled_in:"",placeholder:void 0!==LLMS.l10n?LLMS.l10n.translate("Select a student"):"Select a student",roles:"",width:"100%"},s.each(e,function(e){l.attr("data-"+e)&&(t[e]=l.attr("data-"+e))}),t=s.extend(e,t),this.llmsSelect2({allowClear:t.allow_clear,ajax:{dataType:"JSON",delay:250,method:"GET",url:window.wpApiSettings.root+"llms/v1/students",data:function(e){return{_wpnonce:window.wpApiSettings.nonce,context:"edit",page:e.page||1,per_page:10,not_enrolled_in:e.not_enrolled_in||t.not_enrolled_in,enrolled_in:e.enrolled_in||t.enrolled_in,roles:e.roles||t.roles,search:e.term,search_columns:"email,name,username"}},processResults:function(e,t){var t=t.page||1,l=this._request.getResponseHeader("X-WP-TotalPages");return{results:s.map(e,function(e){return{text:e.name+" <"+e.email+">",id:e.id}}),pagination:{more:t'+LLMS.l10n.replace("Error: %s",{"%s":e})+"

    ").insertAfter(t)})}}}(jQuery); //# sourceMappingURL=../maps/js/llms-admin.min.js.map diff --git a/assets/js/llms-analytics.js b/assets/js/llms-analytics.js index ef32c4cb59..097d17d692 100644 --- a/assets/js/llms-analytics.js +++ b/assets/js/llms-analytics.js @@ -7,7 +7,7 @@ * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`. * @since 4.3.3 Legends will automatically display on top of the chart. * @since 4.5.1 Show sales reporting currency symbol based on LifterLMS site options. - * @version [version] + * @version 7.3.0 * */( function( $, undefined ) { @@ -209,7 +209,7 @@ * * @since 3.0.0 * @since 7.2.0 Change h1 tag to .llms-widget-content. - * @since [version] Append `_ajax_nonce` to the ajax data packet. + * @since 7.3.0 Append `_ajax_nonce` to the ajax data packet. * * @param {Object} $widget The jQuery selector of the widget element. * @return {Void} diff --git a/assets/js/llms-analytics.min.js b/assets/js/llms-analytics.min.js index ab68d2b45b..d3d4868014 100644 --- a/assets/js/llms-analytics.min.js +++ b/assets/js/llms-analytics.min.js @@ -1,2 +1,2 @@ -!function(l){window.llms=window.llms||{};window.llms.analytics=new function(t){return this.charts_loaded=!1,this.data={},this.query=l.parseJSON(l("#llms-analytics-json").text()),this.timeout=8e3,this.options=t,this.$widgets=l(".llms-widget[data-method]"),this.init=function(){google.charts.load("current",{packages:["corechart"]}),google.charts.setOnLoadCallback(this.charts_ready),this.bind(),this.load_widgets()},this.bind=function(){l(".llms-datepicker").length&&l.fn.datepicker&&l(".llms-datepicker").datepicker({dateFormat:"yy-mm-dd",maxDate:0}),l("#llms-students-ids-filter").llmsStudentsSelect2({multiple:!0,placeholder:LLMS.l10n.translate("Filter by Student(s)"),allow_clear:!0}),l('a[href="#llms-toggle-filters"]').on("click",function(t){t.preventDefault(),l(".llms-analytics-filters").slideToggle(100)}),l("#llms-custom-date-submit").on("click",function(){l('input[name="range"]').val("custom")}),l("#llms-date-quick-filters a.llms-nav-link[data-range]").on("click",function(t){t.preventDefault(),l('input[name="range"]').val(l(this).attr("data-range")),l("form.llms-reporting-nav").submit()})},this.charts_ready=function(){window.llms.analytics.charts_loaded=!0,window.llms.analytics.draw_chart()},this.draw_chart=function(){var t,a,e;this.charts_loaded&&this.is_loading_finished()&&((t=document.getElementById("llms-charts-wrapper"))&&(t=new google.visualization.ComboChart(t),a=this.get_chart_data(),e={legend:"top",chartArea:{height:"75%",width:"85%"},colors:["#606C38","#E85D75","#EF8354","#C64191","#731963"],height:560,lineWidth:4,seriesType:"bars",series:this.get_chart_series_options(),vAxes:{0:{format:this.options.currency_format||"currency"},1:{format:""}}},a.length&&((a=google.visualization.arrayToDataTable(a)).sort([{column:0}]),t.draw(a,e))))},this.is_loading_finished=function(){return!l(".llms-widget.is-loading").length},this.load_widgets=function(){var t=this;this.$widgets.each(function(){t.load_widget(l(this))})},this.load_widget=function(a){var e,i=this,s=a.attr("data-method"),r=a.find(".llms-widget-content"),n=a.find(".llms-reload-widget"),d=LLMS.l10n.translate("Error");a.addClass("is-loading"),l.ajax({data:{action:"llms_widget_"+s,dates:i.query.dates,courses:i.query.current_courses,memberships:i.query.current_memberships,students:i.query.current_students},method:"POST",timeout:i.timeout,url:window.ajaxurl,success:function(t){e="success",void 0!==t.response&&(d=t.response,i.data[s]={chart_data:t.chart_data,response:t.response,results:t.results},n.remove())},error:function(t){e="error"},complete:function(t){"error"===e&&(d="timeout"===t.statusText?LLMS.l10n.translate("Request timed out"):LLMS.l10n.translate("Error"),n.length||((n=l(''+LLMS.l10n.translate("Retry")+"")).on("click",function(t){t.preventDefault(),i.load_widget(a)}),a.append(n))),a.removeClass("is-loading"),r.html(d),i.widget_finished(a)}})},this.get_date_diff=function(){var t=new Date(this.query.dates.end),a=new Date(this.query.dates.start);return Math.abs(t.getTime()-a.getTime())},this.get_chart_data_object=function(){var t,a,e,i,s=this,r=this.get_date_diff(),n={};for(i in s.data)if(s.data.hasOwnProperty(i)&&"object"==typeof s.data[i].chart_data&&"object"==typeof s.data[i].results&&(t=s.data[i].results))for(a=0;a'+LLMS.l10n.translate("Retry")+"")).on("click",function(t){t.preventDefault(),s.load_widget(a)}),a.append(n))),a.removeClass("is-loading"),r.html(l),s.widget_finished(a)}})},this.get_date_diff=function(){var t=new Date(this.query.dates.end),a=new Date(this.query.dates.start);return Math.abs(t.getTime()-a.getTime())},this.get_chart_data_object=function(){var t,a,e,s,i=this,r=this.get_date_diff(),n={};for(s in i.data)if(i.data.hasOwnProperty(s)&&"object"==typeof i.data[s].chart_data&&"object"==typeof i.data[s].results&&(t=i.data[s].results))for(a=0;a=e},this.init_plan=function(){var e;this.has_plan_limit_been_reached()||(e=c("#llms-new-access-plan-model").clone(),$existing_plans=c("#llms-access-plans .llms-access-plan"),$editor=e.find("#_llms_plans_content_llms-new-access-plan-model"),e.removeAttr("id"),$editor.removeAttr("id").attr("id","_llms_plans_content_"+this.temp_id),this.temp_id++,e.find("select, input, textarea").each(function(){c(this).removeAttr("disabled")}),e.find(".llms-access-plan-datepicker").datepicker({dateFormat:"mm/dd/yy"}),e.appendTo("#llms-access-plans"),this.update_plan_orders(),e.find(".llms-collapsible-header").trigger("click"),this.has_plan_limit_been_reached()&&this.toggle_create_button("disable"),window.llms.metaboxes.post_select(e.find(".llms-availability-restrictions")),window.llms.metaboxes.post_select(e.find(".llms-checkout-redirect-page")),e.find("[data-controller-id]").trigger("change"),c(document).trigger("llms-plan-init",e))},this.save_plans=function(){var t=this;t.$plans.find(".llms-access-plan").not("#llms-new-access-plan-model").each(function(){c(this).trigger("llms-validate-plan")}),t.$plans.find("."+t.validation_class).length?(t.$plans.find(".llms-access-plan."+t.validation_class).not(".opened").first().find(".llms-collapsible-header").trigger("click"),c(document).trigger("llms-access-plan-validation-errors")):(LLMS.Spinner.start(t.$plans),t.$save.attr("disabled","disabled"),window.LLMS.Ajax.call({data:{action:"llms_update_access_plans",plans:t.get_plans_array()},complete:function(){LLMS.Spinner.stop(t.$plans),t.$save.removeAttr("disabled")},error:function(e,t,a){console.error("llms access plan save error encounterd:",e),alert(LLMS.l10n.translate("An error was encountered during the save attempt. Please try again.")+" ["+t+": "+a+"]")},success:function(e){!e.success&&e.code&&"error"===e.code?alert(e.message):e.data&&e.data.html&&(c("#llms-product-options-access-plans").replaceWith(e.data.html),t.init(!0),window.llms.metaboxes.init(),t.update_plan_orders(),t.trigger_update_hook())}}))},this.toggle_button=function(e,t){"disable"===t?e.attr("disabled","disabled"):e.removeAttr("disabled")},this.toggle_create_button=function(e){this.toggle_button(c("#llms-new-access-plan"),e)},this.toggle_save_button=function(e){this.toggle_button(this.$save,e)},this.remove_plan_el=function(e){var t=this;e.fadeOut(400),setTimeout(function(){e.remove(),t.has_plan_limit_been_reached()||t.toggle_create_button("enable"),0===t.get_current_plan_count()&&t.toggle_save_button("disable")},450)},this.trigger_update_hook=function(){c(document).trigger("llms-access-plans-updated")},this.update_plan_orders=function(){c("#llms-access-plans .llms-access-plan").each(function(){var e=c(this),t=e.find(".plan-order"),a=e.find('textarea[id^="_llms_plans_content_"]').attr("id"),l=+t.val(),s=e.index(),n=tinyMCE.EditorManager.get(a),n=(n||tinyMCE.EditorManager).settings;n.selector="#"+a,tinyMCE.EditorManager.execCommand("mceRemoveEditor",!0,a),e.find("select, input, textarea").each(function(){var e=c(this).attr("name");e&&c(this).attr("name",e.replace(l,s))}),tinyMCE.EditorManager.init(n),t.val(s)})},this.init()};new window.llms.metabox_product}(jQuery); +!function(c){window.llms=window.llms||{},window.llms.metabox_product=function(){this.$plans=null,this.$save=null,this.temp_id=Math.floor(7777*Math.random()+777),this.validation_class="llms-invalid",this.init=function(e){var t,a,l=this,s=(l.$plans=c("#llms-access-plans"),l.$save=c("#llms-save-access-plans"),l.bind_visibility(),c("#lifterlms-product #llms-product-options-access-plans"));s.length&&(l.requiresAttention(),e?l.bind():(LLMS.Spinner.start(s),t=0,a=setInterval(function(){if(300<=t)s.html(LLMS.l10n.translate("There was an error loading the necessary resources. Please try again."));else{if("undefined"==typeof tinyMCE)return void t++;l.bind()}clearInterval(a),LLMS.Spinner.stop(s)},100)))},this.bind=function(){var l=this;setTimeout(function(){l.has_plan_limit_been_reached()&&l.toggle_create_button("disable")},500),0===l.get_current_plan_count()&&l.toggle_save_button("disable"),l.$save.on("click",function(e){e.preventDefault(),l.save_plans()}),l.$plans.on("change","[data-controller-id]",function(){l.controller_change(c(this))}),l.$plans.on("change",'select[name$="[availability]"]',function(){var e=c(this).closest(".llms-access-plan"),t=e.find('input[name$="[checkout_redirect_forced]"]'),a=e.find(".llms-checkout-redirect-settings");"members"===c(this).val()?(t.prop("checked")?a.show():a.hide(),t.on("change",function(){a.toggle()})):(t.off("change"),a.show())}),c("#llms-access-plans .llms-access-plan-datepicker").datepicker({dateFormat:"mm/dd/yy"}),c("#llms-access-plans [data-controller-id]").trigger("change"),c("#llms-new-access-plan").on("click",function(){l.init_plan(),l.toggle_create_button("disable"),l.toggle_save_button("enable"),setTimeout(function(){l.has_plan_limit_been_reached()||l.toggle_create_button("enable")},500)}),l.$plans.sortable({handle:".llms-drag-handle",items:".llms-access-plan",start:function(e,t){l.$plans.addClass("dragging")},stop:function(e,t){l.$plans.removeClass("dragging"),l.update_plan_orders()}}),l.$plans.on("keyup","input.llms-plan-title",function(){var e=c(this),t=e.closest(".llms-access-plan").find("span.llms-plan-title"),e=e.val(),e=e||t.attr("data-default");t.text(e)}),l.$plans.on("focusin","input",function(e,t){c(this).addClass("llms-has-been-focused")}),l.$plans.on("keyup focusout llms-validate-plan-field","input",function(e,t){var a=c(this);a[0].checkValidity()?a.removeClass(l.validation_class):(a.addClass(l.validation_class),"keyup"===e.type&&a[0].reportValidity()),t&&!t.cascade||a.closest(".llms-access-plan").trigger("llms-validate-plan",{original_event:e.type})}),l.$plans.on("llms-validate-plan",".llms-access-plan",function(e,t){t=t||{};var a=c(this),t=t.original_event?"input.llms-has-been-focused":"input";a.find(t).each(function(){c(this).trigger("llms-validate-plan-field",{cascade:!1})}),a.find("."+l.validation_class).length?a.addClass(l.validation_class):a.removeClass(l.validation_class)}),l.$plans.on("llms-collapsible-toggled",".llms-access-plan",function(){var e=c(this);e.hasClass("opened")&&setTimeout(function(){e.find("input.llms-invalid").each(function(){c(this)[0].reportValidity()})},500)}),l.$plans.on("click",".llms-plan-delete",function(e){e.stopPropagation(),l.delete_plan(c(this))}),window.llms.metaboxes.post_select(c("#llms-access-plans .llms-availability-restrictions")),window.llms.metaboxes.post_select(c("#llms-access-plans .llms-checkout-redirect-page")),c("#_llms_plans_content_llms-new-access-plan-model").attr("disabled","disabled"),tinyMCE.EditorManager.execCommand("mceRemoveEditor",!0,"_llms_plans_content_llms-new-access-plan-model")},this.bind_visibility=function(){var t=c("#llms-catalog-visibility-select"),a=c("a.llms-edit-catalog-visibility"),e=c("a.llms-save-catalog-visibility"),l=c("a.llms-cancel-catalog-visibility");a.on("click",function(e){e.preventDefault(),t.slideDown("fast"),a.hide()}),e.on("click",function(e){e.preventDefault(),t.slideUp("fast"),a.show(),c("#llms-catalog-visibility-display").text(c('input[name="_llms_visibility"]:checked').attr("data-label"))}),l.on("click",function(e){e.preventDefault(),t.slideUp("fast"),a.show()})},this.requiresAttention=function(){this.$plans.find(".llms-access-plan").each(function(){c(this).toggleClass("llms-needs-attention",0=e},this.init_plan=function(){var e;this.has_plan_limit_been_reached()||(e=c("#llms-new-access-plan-model").clone(),$existing_plans=c("#llms-access-plans .llms-access-plan"),$editor=e.find("#_llms_plans_content_llms-new-access-plan-model"),e.removeAttr("id"),$editor.removeAttr("id").attr("id","_llms_plans_content_"+this.temp_id),this.temp_id++,e.find("select, input, textarea").each(function(){c(this).removeAttr("disabled")}),e.find(".llms-access-plan-datepicker").datepicker({dateFormat:"mm/dd/yy"}),e.appendTo("#llms-access-plans"),this.update_plan_orders(),e.find(".llms-collapsible-header").trigger("click"),this.has_plan_limit_been_reached()&&this.toggle_create_button("disable"),window.llms.metaboxes.post_select(e.find(".llms-availability-restrictions")),window.llms.metaboxes.post_select(e.find(".llms-checkout-redirect-page")),e.find("[data-controller-id]").trigger("change"),c(document).trigger("llms-plan-init",e))},this.save_plans=function(){var t=this;t.$plans.find(".llms-access-plan").not("#llms-new-access-plan-model").each(function(){c(this).trigger("llms-validate-plan")}),t.$plans.find("."+t.validation_class).length?(t.$plans.find(".llms-access-plan."+t.validation_class).not(".opened").first().find(".llms-collapsible-header").trigger("click"),c(document).trigger("llms-access-plan-validation-errors")):(LLMS.Spinner.start(t.$plans),t.$save.attr("disabled","disabled"),window.LLMS.Ajax.call({data:{action:"llms_update_access_plans",plans:t.get_plans_array()},complete:function(){LLMS.Spinner.stop(t.$plans),t.$save.removeAttr("disabled")},error:function(e,t,a){console.error("llms access plan save error encounterd:",e),alert(LLMS.l10n.translate("An error was encountered during the save attempt. Please try again.")+" ["+t+": "+a+"]")},success:function(e){!e.success&&e.code&&"error"===e.code?alert(e.message):e.data&&e.data.html&&(c("#llms-product-options-access-plans").replaceWith(e.data.html),t.init(!0),window.llms.metaboxes.init(),t.update_plan_orders(),t.trigger_update_hook())}}))},this.toggle_button=function(e,t){"disable"===t?e.attr("disabled","disabled"):e.removeAttr("disabled")},this.toggle_create_button=function(e){this.toggle_button(c("#llms-new-access-plan"),e)},this.toggle_save_button=function(e){this.toggle_button(this.$save,e)},this.remove_plan_el=function(e){var t=this;e.fadeOut(400),setTimeout(function(){e.remove(),t.has_plan_limit_been_reached()||t.toggle_create_button("enable"),0===t.get_current_plan_count()&&t.toggle_save_button("disable")},450)},this.trigger_update_hook=function(){c(document).trigger("llms-access-plans-updated")},this.update_plan_orders=function(){c("#llms-access-plans .llms-access-plan").each(function(){var e=c(this),t=e.find(".plan-order"),a=e.find('textarea[id^="_llms_plans_content_"]').attr("id"),l=+t.val(),s=e.index(),n=tinyMCE.EditorManager.get(a),n=(n||tinyMCE.EditorManager).settings;n.selector="#"+a,tinyMCE.EditorManager.execCommand("mceRemoveEditor",!0,a),e.find("select, input, textarea").each(function(){var e=c(this).attr("name");e&&c(this).attr("name",e.replace(l,s))}),tinyMCE.EditorManager.init(n),t.val(s)})},this.init()};new window.llms.metabox_product}(jQuery); //# sourceMappingURL=../maps/js/llms-metabox-product.min.js.map diff --git a/assets/js/llms.js b/assets/js/llms.js index 8408a28103..3852f35838 100644 --- a/assets/js/llms.js +++ b/assets/js/llms.js @@ -1713,6 +1713,42 @@ var LLMS = window.LLMS || {}; }; + /** + * Quiz Attempt + * + * @package LifterLMS/Scripts + * + * @since 7.3.0 + * @version 7.3.0 + */ + + LLMS.Quiz_Attempt = { + /** + * Initialize + * + * @return void + */ + init: function() { + + $( '.llms-quiz-attempt-question-header a.toggle-answer' ).on( 'click', function( e ) { + + e.preventDefault(); + + var $curr = $( this ).closest( 'header' ).next( '.llms-quiz-attempt-question-main' ); + + $( this ).closest( 'li' ).siblings().find( '.llms-quiz-attempt-question-main' ).slideUp( 200 ); + + if ( $curr.is( ':visible' ) ) { + $curr.slideUp( 200 ); + } else { + $curr.slideDown( 200 ); + } + + } ); + } + + } + /** * LifterLMS Reviews JS * diff --git a/assets/js/llms.min.js b/assets/js/llms.min.js index a1722a59f4..79ead4df80 100644 --- a/assets/js/llms.min.js +++ b/assets/js/llms.min.js @@ -1,2 +1,2 @@ -var LLMS=window.LLMS||{};!function(l){"use strict";var t,e,n;LLMS.Achievements={init:function(){var t;l(".llms-achievement").length&&(t=this,l(function(){t.bind(),t.maybe_open()}))},bind:function(){var n=this;l(".llms-achievement").each(function(){n.create_modal(l(this))}),l(".llms-achievement").on("click",function(){var t=l(this),e="achievement-"+t.attr("data-id"),e=l("#"+e);e.length||n.create_modal(t),e.iziModal("open")})},create_modal:function(e){var t="achievement-"+e.attr("data-id"),n=l("#"+t);n.length||(n=l('
    '),l("body").append(n)),n.iziModal({headerColor:"#3a3a3a",group:"achievements",history:!0,loop:!0,overlayColor:"rgba( 0, 0, 0, 0.6 )",transitionIn:"fadeInDown",transitionOut:"fadeOutDown",width:340,onOpening:function(t){t.setTitle(e.find(".llms-achievement-title").html()),t.setSubtitle(e.find(".llms-achievement-date").html()),t.setContent('
    '+e.html()+"
    ")},onClosing:function(){window.history.pushState("",document.title,window.location.pathname+window.location.search)}})},maybe_open:function(){var t=window.location.hash.split("-");2===t.length&&(t[1]=parseInt(t[1]),"#achievement-"===t[0]&&Number.isInteger(t[1])&&(t=document.querySelector(`a[href="${t.join("-")}"]`))&&t.click())}},LLMS.Ajax={url:window.ajaxurl||window.llms.ajaxurl,type:"post",data:[],cache:!1,dataType:"json",async:!0,response:[],init:function(t){if(null===t||"object"!=typeof t)return!1;t.url=("url"in t?t:this).url,t.type=("type"in t?t:this).type,t.data=("data"in t?t:this).data,t.cache=("cache"in t?t:this).cache,t.dataType=("dataType"in t?t:this).dataType,t.async=("async"in t?t:this).async,t.data._ajax_nonce=window.llms.ajax_nonce||wp_ajax_data.nonce;var e=LLMS.Rest.get_query_vars();return t.data.post_id="post"in e?e.post:null,!t.data.post_id&&l("input#post_ID").length&&(t.data.post_id=l("input#post_ID").val()),t},call:function(t){t=this.init(t);return!!t&&(this.request(t),this)},request:function(t){return l.ajax(t),this}},LLMS.Donut=function(t){function e(t){this.settings=l.extend({element:t.element,percent:100},t),this.circle=this.settings.element.find("path"),this.settings.stroke_width=parseInt(this.circle.css("stroke-width")),this.radius=(parseInt(this.settings.element.css("width"))-this.settings.stroke_width)/2,this.angle=l("body").hasClass("rtl")?82.5:97.5,this.i=Math.round(.75*this.settings.percent),this.first=!0,this.increment=l("body").hasClass("rtl")?-5:5,this.animate=function(){this.timer=setInterval(this.loop.bind(this),10)},this.loop=function(){this.angle+=this.increment,this.angle%=360;var t,e=this.angle/180*Math.PI,n=this.radius+this.settings.stroke_width/2+Math.cos(e)*this.radius,e=this.radius+this.settings.stroke_width/2+Math.sin(e)*this.radius;!0===this.first?(t=this.circle.attr("d")+" M "+n+" "+e,this.first=!1):t=this.circle.attr("d")+" L "+n+" "+e,this.circle.attr("d",t),this.i--,this.i<=0&&clearInterval(this.timer)}}(t=t).append(''),new e({element:t,percent:t.attr("data-perc")}).animate()},LLMS.Forms={address_info:{},$cities:null,$countries:null,$states:null,$states_holder:null,init:function(){var t;l("body").hasClass("wp-admin")&&!l("body").hasClass("profile-php")&&!l("body").hasClass("user-edit-php")||((t=this).bind_matching_fields(),t.bind_voucher_field(),t.bind_edit_account(),t.bind_l10n_selects())},bind_edit_account:function(){l("form.llms-person-form.edit-account").length&&l(".llms-toggle-fields").on("click",this.handle_toggle_click)},bind_l10n_selects:function(){var e=this;e.$cities=l("#llms_billing_city"),e.$countries=l(".llms-l10n-country-select select"),e.$states=l(".llms-l10n-state-select select"),e.$zips=l("#llms_billing_zip"),e.$countries.length&&LLMS.wait_for(function(){return void 0!==l.fn.llmsSelect2},function(){e.$states.length&&e.prep_state_field(),e.$countries.add(e.$states).llmsSelect2({width:"100%"}),window.llms.address_info&&(e.address_info=JSON.parse(window.llms.address_info)),e.$countries.on("change",function(){var t=l(this).val();e.update_locale_info(t)}).trigger("change")},"llmsSelect2")},bind_matching_fields:function(){l("input[data-match]").not('[type="password"]').each(function(){var n,i=l(this),s=l("#"+i.attr("data-match"));s.length&&(n=i.closest(".llms-form-field").add(s.closest(".llms-form-field")),i.on("input change",function(){var t=i.val(),e=s.val();t&&e&&t!==e?n.addClass("invalid"):n.removeClass("invalid")}))})},bind_voucher_field:function(){l("#llms-voucher-toggle").on("click",function(t){t.preventDefault(),l("#llms_voucher").toggle()})},get_field_parent:function(t){return t.closest(".llms-form-field")},get_label_text:function(t){t=t.clone();return t.find("*").remove(),t.text().trim()},handle_toggle_click:function(t){t.preventDefault();var t=l(this),e=l(l(this).attr("data-fields")),n=t.attr("data-is-showing")||"no",i="yes"===n?"hide":"show",s="yes"===n?"disabled":null,o="yes"===n?"data-change-text":"data-cancel-text";e.each(function(){l(this).closest(".llms-form-field")[i](),l(this).attr("disabled",s)}),t.text(t.attr(o)),t.attr("data-is-showing","yes"===n?"no":"yes")},prep_state_field:function(){var t=this.$states.closest(".llms-form-field");this.$holder=l('",{name:t.attr("name"),class:t.attr("class")+" hidden",type:"hidden"}).insertAfter(t),t.attr("disabled","disabled"),this.get_field_parent(t).hide()},enable_field:function(t){t.removeAttr("disabled"),t.next(".hidden[name="+t.attr("name")+"]").detach(),this.get_field_parent(t).show()}},LLMS.Instructors={init:function(){var t=this;l("body").hasClass("wp-admin")||l(".llms-instructors").length&&LLMS.wait_for_matchHeight(function(){t.bind()})},bind:function(){l(".llms-instructors .llms-author").matchHeight()}},LLMS.l10n=LLMS.l10n||{},LLMS.l10n.translate=function(t){return this.strings[t]||t},LLMS.l10n.replace=function(t,e){var n=this.translate(t);return l.each(e,function(t,e){-1!==t.indexOf("s")?e=e.toString():-1!==t.indexOf("d")&&(e=+e),n=n.replace(t,e)}),n},LLMS.LessonPreview={$els:null,init:function(){var t=this;this.$locked=l('a[href="#llms-lesson-locked"]'),this.$locked.length&&t.bind(),l(".llms-course-navigation").length&&LLMS.wait_for_matchHeight(function(){t.match_height()})},bind:function(){var n=this;this.$locked.on("click",function(){return!1}),this.$locked.on("mouseenter",function(){var t,e=l(this).find(".llms-tooltip");e.length||(t=(t=l(this).attr("data-tooltip-msg"))||LLMS.l10n.translate("You do not have permission to access this content"),e=n.get_tooltip(t),l(this).append(e)),setTimeout(function(){e.addClass("show")},10)}),this.$locked.on("mouseleave",function(){l(this).find(".llms-tooltip").removeClass("show")})},match_height:function(){l(".llms-course-navigation .llms-lesson-link").matchHeight()},get_tooltip:function(t){var e=l('
    ');return e.append('
    '+t+"
    "),e}},LLMS.Loops={init:function(){var t=this;l(".llms-loop").length&&LLMS.wait_for_matchHeight(function(){t.match_height()})},match_height:function(){l(".llms-loop-item .llms-loop-item-content").matchHeight(),l(".llms-achievement-loop-item .llms-achievement").matchHeight(),l(".llms-certificate-loop-item .llms-certificate").matchHeight()}},LLMS.OutlineCollapse={$outlines:null,init:function(){this.$outlines=l(".llms-widget-syllabus--collapsible"),this.$outlines.length&&this.bind()},bind:function(){var i=this;this.$outlines.each(function(){var t=l(this),e=t.find(".llms-section .section-header");e.on("click",function(t){t.preventDefault();var e=l(this).closest(".llms-section");switch(i.get_section_state(e)){case"closed":i.open_section(e);break;case"opened":i.close_section(e)}}),t.find(".llms-collapse-toggle").on("click",function(t){t.preventDefault();var n="close"===l(this).attr("data-action")?"opened":"closed";e.each(function(){var t=l(this).closest(".llms-section"),e=i.get_section_state(t);if(n!==e)return!0;switch(e){case"closed":i.close_section(t);break;case"opened":i.open_section(t)}l(this).trigger("click")})})})},close_section:function(t){t.removeClass("llms-section--opened").addClass("llms-section--closed")},open_section:function(t){t.removeClass("llms-section--closed").addClass("llms-section--opened")},get_section_state:function(t){return t.hasClass("llms-section--opened")?"opened":"closed"}},l.extend(LLMS.PasswordStrength,{$meter:l(".llms-password-strength-meter"),$pass:null,$conf:null,$form:null,init:function(){var t;l("body").hasClass("wp-admin")||this.setup_references()&&(t=this,LLMS.wait_for(function(){return"undefined"!=typeof wp&&void 0!==wp.passwordStrength},function(){t.bind(),t.$form.trigger("llms-password-strength-ready")}))},bind:function(){var t=this;this.$form.hasClass("llms-checkout")||t.$form.on("submit",t,t.submit),t.$pass.add(t.$conf).on("keyup",function(){t.check_strength()})},check_strength:function(){var t=this.$pass.closest(".llms-form-field"),e=this.$conf&&this.$conf.length?this.$conf.closest(".llms-form-field"):null,n=this.$pass.val().length,i=this.$conf&&this.$conf.length?this.$conf.val().length:0;n||i?(this.get_current_strength_status()?(t.removeClass("invalid").addClass("valid"),i&&e.removeClass("invalid").addClass("valid")):(t.removeClass("valid").addClass("invalid"),i&&e.removeClass("valid").addClass("invalid")),this.$meter.removeClass("too-short very-weak weak medium strong mismatch"),this.$meter.show().addClass(this.get_current_strength("slug")),this.$meter.html(this.get_current_strength("text"))):(t.removeClass("valid invalid"),e&&e.removeClass("valid invalid"),this.$meter.hide())},checkout:function(t,e){t.get_current_strength_status()?e(!0):e(LLMS.l10n.translate("There is an issue with your chosen password."))},get_blocklist:function(){var e=wp.passwordStrength.userInputDisallowedList().concat(this.get_setting("blocklist",[]));return this.$form.find('input[type="text"], input[type="email"], input[type="tel"], input[type="number"]').each(function(){var t=l(this).val();t&&e.push(t)}),e},get_current_strength:function(t){t=t||"int";var e,n=this.$pass.val(),i=this.$conf&&this.$conf.length?this.$conf.val():"";return n.length');return e.append(t.$element.closest(".llms-access-plan").find(".llms-access-plan-restrictions ul").clone()),e},placement:"top",style:"inverse",title:LLMS.l10n.translate("Members Only Pricing"),width:"280px"})})}},LLMS.Review={init:function(){this.bind()},bind:function(){l("#llms_review_submit_button").click(function(){""!==l("#review_title").val()&&""!==l("#review_text").val()?jQuery.ajax({type:"post",dataType:"json",url:window.llms.ajaxurl,data:{action:"LLMSSubmitReview",review_title:l("#review_title").val(),review_text:l("#review_text").val(),pageID:l("#post_ID").val()},success:function(){console.log("Review success"),l("#review_box").hide("swing"),l("#thank_you_box").show("swing")},error:function(t,e,n){console.log(t),console.log(e),console.log(n)}}):(""===l("#review_title").val()?l("#review_title_error").show("swing"):l("#review_title_error").hide("swing"),""===l("#review_text").val()?l("#review_text_error").show("swing"):l("#review_text_error").hide("swing"))}),l("#_llms_display_reviews").attr("checked")?(l(".llms-num-reviews-top").addClass("top"),l(".llms-num-reviews-bottom").show()):l(".llms-num-reviews-bottom").hide(),l("#_llms_display_reviews").change(function(){l("#_llms_display_reviews").attr("checked")?(l(".llms-num-reviews-top").addClass("top"),l(".llms-num-reviews-bottom").show()):(l(".llms-num-reviews-top").removeClass("top"),l(".llms-num-reviews-bottom").hide())})}},t=function(){function a(){for(var t=0,e={};ts.get("events",[]).length&&(e=s.getAll(),s.clear("events"),e.events.push(t),LLMS.Ajax.call({data:{action:"persist_tracking_events","llms-tracking":JSON.stringify(e)},error:function(t,e,n){console.log(t,e,n)},success:function(t){"error"===t.code&&console.log(t.code,t.message)}})))},this.getSettings=function(){return n},this.makeEventObj=function(t){return l.extend(t,{url:window.location.href,time:Math.round((new Date).getTime()/1e3)})},l("body").hasClass("wp-admin")||(i.addEvent("page.load"),window.addEventListener("beforeunload",t),window.addEventListener("unload",e),document.addEventListener("visibilitychange",o))},llms.tracking=new LLMS.Tracking(llms.tracking),LLMS.Rest={init:function(){this.bind()},bind:function(){},is_path:function(t){for(var e=!1,n=window.location.href,i=0;ie.push(t)),e}function o(t){var e,n,i=1n===t.parentNode):null)||function(t,e){var e=1${i}`,n.classList.add(h),t.appendChild(n),n}(e,i),s&&"undefined"!=typeof jQuery?jQuery(o):o):null}function c(t){let e=1{t=o(t,e,!1);t&&(t.style.display="block")})}function d(t){r(t).forEach(t=>{t=o(t,u,!1);t&&(t.style.display="none")})}window.LLMS=window.LLMS||{},window.LLMS.Spinner=s}LLMS.init=function(){for(var t in LLMS)"object"==typeof LLMS[t]&&null!==LLMS[t]&&void 0!==LLMS[t].init&&"function"==typeof LLMS[t].init&&LLMS[t].init()},LLMS.is_touch_device=function(){var t=" -webkit- -moz- -o- -ms- ".split(" ");return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)||(t=["(",t.join("touch-enabled),("),"heartz",")"].join(""),window.matchMedia(t).matches)},LLMS.wait_for_matchHeight=function(t){this.wait_for(function(){return void 0!==l.fn.matchHeight},t,"matchHeight")},LLMS.wait_for_popover=function(t){this.wait_for(function(){return void 0!==l.fn.webuiPopover},t,"webuiPopover")},LLMS.wait_for=function(t,e,n){var i,s=0;n=n||"unnamed",i=setInterval(function(){if(300<=s)console.log("Unable to load dependency: "+n);else{if(!t())return void s++;e()}clearInterval(i)},100)},LLMS.init(l)}(jQuery); +var LLMS=window.LLMS||{};!function(l){"use strict";var t,e,n;LLMS.Achievements={init:function(){var t;l(".llms-achievement").length&&(t=this,l(function(){t.bind(),t.maybe_open()}))},bind:function(){var n=this;l(".llms-achievement").each(function(){n.create_modal(l(this))}),l(".llms-achievement").on("click",function(){var t=l(this),e="achievement-"+t.attr("data-id"),e=l("#"+e);e.length||n.create_modal(t),e.iziModal("open")})},create_modal:function(e){var t="achievement-"+e.attr("data-id"),n=l("#"+t);n.length||(n=l('
    '),l("body").append(n)),n.iziModal({headerColor:"#3a3a3a",group:"achievements",history:!0,loop:!0,overlayColor:"rgba( 0, 0, 0, 0.6 )",transitionIn:"fadeInDown",transitionOut:"fadeOutDown",width:340,onOpening:function(t){t.setTitle(e.find(".llms-achievement-title").html()),t.setSubtitle(e.find(".llms-achievement-date").html()),t.setContent('
    '+e.html()+"
    ")},onClosing:function(){window.history.pushState("",document.title,window.location.pathname+window.location.search)}})},maybe_open:function(){var t=window.location.hash.split("-");2===t.length&&(t[1]=parseInt(t[1]),"#achievement-"===t[0]&&Number.isInteger(t[1])&&(t=document.querySelector(`a[href="${t.join("-")}"]`))&&t.click())}},LLMS.Ajax={url:window.ajaxurl||window.llms.ajaxurl,type:"post",data:[],cache:!1,dataType:"json",async:!0,response:[],init:function(t){if(null===t||"object"!=typeof t)return!1;t.url=("url"in t?t:this).url,t.type=("type"in t?t:this).type,t.data=("data"in t?t:this).data,t.cache=("cache"in t?t:this).cache,t.dataType=("dataType"in t?t:this).dataType,t.async=("async"in t?t:this).async,t.data._ajax_nonce=window.llms.ajax_nonce||wp_ajax_data.nonce;var e=LLMS.Rest.get_query_vars();return t.data.post_id="post"in e?e.post:null,!t.data.post_id&&l("input#post_ID").length&&(t.data.post_id=l("input#post_ID").val()),t},call:function(t){t=this.init(t);return!!t&&(this.request(t),this)},request:function(t){return l.ajax(t),this}},LLMS.Donut=function(t){function e(t){this.settings=l.extend({element:t.element,percent:100},t),this.circle=this.settings.element.find("path"),this.settings.stroke_width=parseInt(this.circle.css("stroke-width")),this.radius=(parseInt(this.settings.element.css("width"))-this.settings.stroke_width)/2,this.angle=l("body").hasClass("rtl")?82.5:97.5,this.i=Math.round(.75*this.settings.percent),this.first=!0,this.increment=l("body").hasClass("rtl")?-5:5,this.animate=function(){this.timer=setInterval(this.loop.bind(this),10)},this.loop=function(){this.angle+=this.increment,this.angle%=360;var t,e=this.angle/180*Math.PI,n=this.radius+this.settings.stroke_width/2+Math.cos(e)*this.radius,e=this.radius+this.settings.stroke_width/2+Math.sin(e)*this.radius;!0===this.first?(t=this.circle.attr("d")+" M "+n+" "+e,this.first=!1):t=this.circle.attr("d")+" L "+n+" "+e,this.circle.attr("d",t),this.i--,this.i<=0&&clearInterval(this.timer)}}(t=t).append(''),new e({element:t,percent:t.attr("data-perc")}).animate()},LLMS.Forms={address_info:{},$cities:null,$countries:null,$states:null,$states_holder:null,init:function(){var t;l("body").hasClass("wp-admin")&&!l("body").hasClass("profile-php")&&!l("body").hasClass("user-edit-php")||((t=this).bind_matching_fields(),t.bind_voucher_field(),t.bind_edit_account(),t.bind_l10n_selects())},bind_edit_account:function(){l("form.llms-person-form.edit-account").length&&l(".llms-toggle-fields").on("click",this.handle_toggle_click)},bind_l10n_selects:function(){var e=this;e.$cities=l("#llms_billing_city"),e.$countries=l(".llms-l10n-country-select select"),e.$states=l(".llms-l10n-state-select select"),e.$zips=l("#llms_billing_zip"),e.$countries.length&&LLMS.wait_for(function(){return void 0!==l.fn.llmsSelect2},function(){e.$states.length&&e.prep_state_field(),e.$countries.add(e.$states).llmsSelect2({width:"100%"}),window.llms.address_info&&(e.address_info=JSON.parse(window.llms.address_info)),e.$countries.on("change",function(){var t=l(this).val();e.update_locale_info(t)}).trigger("change")},"llmsSelect2")},bind_matching_fields:function(){l("input[data-match]").not('[type="password"]').each(function(){var n,i=l(this),s=l("#"+i.attr("data-match"));s.length&&(n=i.closest(".llms-form-field").add(s.closest(".llms-form-field")),i.on("input change",function(){var t=i.val(),e=s.val();t&&e&&t!==e?n.addClass("invalid"):n.removeClass("invalid")}))})},bind_voucher_field:function(){l("#llms-voucher-toggle").on("click",function(t){t.preventDefault(),l("#llms_voucher").toggle()})},get_field_parent:function(t){return t.closest(".llms-form-field")},get_label_text:function(t){t=t.clone();return t.find("*").remove(),t.text().trim()},handle_toggle_click:function(t){t.preventDefault();var t=l(this),e=l(l(this).attr("data-fields")),n=t.attr("data-is-showing")||"no",i="yes"===n?"hide":"show",s="yes"===n?"disabled":null,o="yes"===n?"data-change-text":"data-cancel-text";e.each(function(){l(this).closest(".llms-form-field")[i](),l(this).attr("disabled",s)}),t.text(t.attr(o)),t.attr("data-is-showing","yes"===n?"no":"yes")},prep_state_field:function(){var t=this.$states.closest(".llms-form-field");this.$holder=l('",{name:t.attr("name"),class:t.attr("class")+" hidden",type:"hidden"}).insertAfter(t),t.attr("disabled","disabled"),this.get_field_parent(t).hide()},enable_field:function(t){t.removeAttr("disabled"),t.next(".hidden[name="+t.attr("name")+"]").detach(),this.get_field_parent(t).show()}},LLMS.Instructors={init:function(){var t=this;l("body").hasClass("wp-admin")||l(".llms-instructors").length&&LLMS.wait_for_matchHeight(function(){t.bind()})},bind:function(){l(".llms-instructors .llms-author").matchHeight()}},LLMS.l10n=LLMS.l10n||{},LLMS.l10n.translate=function(t){return this.strings[t]||t},LLMS.l10n.replace=function(t,e){var n=this.translate(t);return l.each(e,function(t,e){-1!==t.indexOf("s")?e=e.toString():-1!==t.indexOf("d")&&(e=+e),n=n.replace(t,e)}),n},LLMS.LessonPreview={$els:null,init:function(){var t=this;this.$locked=l('a[href="#llms-lesson-locked"]'),this.$locked.length&&t.bind(),l(".llms-course-navigation").length&&LLMS.wait_for_matchHeight(function(){t.match_height()})},bind:function(){var n=this;this.$locked.on("click",function(){return!1}),this.$locked.on("mouseenter",function(){var t,e=l(this).find(".llms-tooltip");e.length||(t=(t=l(this).attr("data-tooltip-msg"))||LLMS.l10n.translate("You do not have permission to access this content"),e=n.get_tooltip(t),l(this).append(e)),setTimeout(function(){e.addClass("show")},10)}),this.$locked.on("mouseleave",function(){l(this).find(".llms-tooltip").removeClass("show")})},match_height:function(){l(".llms-course-navigation .llms-lesson-link").matchHeight()},get_tooltip:function(t){var e=l('
    ');return e.append('
    '+t+"
    "),e}},LLMS.Loops={init:function(){var t=this;l(".llms-loop").length&&LLMS.wait_for_matchHeight(function(){t.match_height()})},match_height:function(){l(".llms-loop-item .llms-loop-item-content").matchHeight(),l(".llms-achievement-loop-item .llms-achievement").matchHeight(),l(".llms-certificate-loop-item .llms-certificate").matchHeight()}},LLMS.OutlineCollapse={$outlines:null,init:function(){this.$outlines=l(".llms-widget-syllabus--collapsible"),this.$outlines.length&&this.bind()},bind:function(){var i=this;this.$outlines.each(function(){var t=l(this),e=t.find(".llms-section .section-header");e.on("click",function(t){t.preventDefault();var e=l(this).closest(".llms-section");switch(i.get_section_state(e)){case"closed":i.open_section(e);break;case"opened":i.close_section(e)}}),t.find(".llms-collapse-toggle").on("click",function(t){t.preventDefault();var n="close"===l(this).attr("data-action")?"opened":"closed";e.each(function(){var t=l(this).closest(".llms-section"),e=i.get_section_state(t);if(n!==e)return!0;switch(e){case"closed":i.close_section(t);break;case"opened":i.open_section(t)}l(this).trigger("click")})})})},close_section:function(t){t.removeClass("llms-section--opened").addClass("llms-section--closed")},open_section:function(t){t.removeClass("llms-section--closed").addClass("llms-section--opened")},get_section_state:function(t){return t.hasClass("llms-section--opened")?"opened":"closed"}},l.extend(LLMS.PasswordStrength,{$meter:l(".llms-password-strength-meter"),$pass:null,$conf:null,$form:null,init:function(){var t;l("body").hasClass("wp-admin")||this.setup_references()&&(t=this,LLMS.wait_for(function(){return"undefined"!=typeof wp&&void 0!==wp.passwordStrength},function(){t.bind(),t.$form.trigger("llms-password-strength-ready")}))},bind:function(){var t=this;this.$form.hasClass("llms-checkout")||t.$form.on("submit",t,t.submit),t.$pass.add(t.$conf).on("keyup",function(){t.check_strength()})},check_strength:function(){var t=this.$pass.closest(".llms-form-field"),e=this.$conf&&this.$conf.length?this.$conf.closest(".llms-form-field"):null,n=this.$pass.val().length,i=this.$conf&&this.$conf.length?this.$conf.val().length:0;n||i?(this.get_current_strength_status()?(t.removeClass("invalid").addClass("valid"),i&&e.removeClass("invalid").addClass("valid")):(t.removeClass("valid").addClass("invalid"),i&&e.removeClass("valid").addClass("invalid")),this.$meter.removeClass("too-short very-weak weak medium strong mismatch"),this.$meter.show().addClass(this.get_current_strength("slug")),this.$meter.html(this.get_current_strength("text"))):(t.removeClass("valid invalid"),e&&e.removeClass("valid invalid"),this.$meter.hide())},checkout:function(t,e){t.get_current_strength_status()?e(!0):e(LLMS.l10n.translate("There is an issue with your chosen password."))},get_blocklist:function(){var e=wp.passwordStrength.userInputDisallowedList().concat(this.get_setting("blocklist",[]));return this.$form.find('input[type="text"], input[type="email"], input[type="tel"], input[type="number"]').each(function(){var t=l(this).val();t&&e.push(t)}),e},get_current_strength:function(t){t=t||"int";var e,n=this.$pass.val(),i=this.$conf&&this.$conf.length?this.$conf.val():"";return n.length');return e.append(t.$element.closest(".llms-access-plan").find(".llms-access-plan-restrictions ul").clone()),e},placement:"top",style:"inverse",title:LLMS.l10n.translate("Members Only Pricing"),width:"280px"})})}},LLMS.Quiz_Attempt={init:function(){l(".llms-quiz-attempt-question-header a.toggle-answer").on("click",function(t){t.preventDefault();t=l(this).closest("header").next(".llms-quiz-attempt-question-main");l(this).closest("li").siblings().find(".llms-quiz-attempt-question-main").slideUp(200),t.is(":visible")?t.slideUp(200):t.slideDown(200)})}},LLMS.Review={init:function(){this.bind()},bind:function(){l("#llms_review_submit_button").click(function(){""!==l("#review_title").val()&&""!==l("#review_text").val()?jQuery.ajax({type:"post",dataType:"json",url:window.llms.ajaxurl,data:{action:"LLMSSubmitReview",review_title:l("#review_title").val(),review_text:l("#review_text").val(),pageID:l("#post_ID").val()},success:function(){console.log("Review success"),l("#review_box").hide("swing"),l("#thank_you_box").show("swing")},error:function(t,e,n){console.log(t),console.log(e),console.log(n)}}):(""===l("#review_title").val()?l("#review_title_error").show("swing"):l("#review_title_error").hide("swing"),""===l("#review_text").val()?l("#review_text_error").show("swing"):l("#review_text_error").hide("swing"))}),l("#_llms_display_reviews").attr("checked")?(l(".llms-num-reviews-top").addClass("top"),l(".llms-num-reviews-bottom").show()):l(".llms-num-reviews-bottom").hide(),l("#_llms_display_reviews").change(function(){l("#_llms_display_reviews").attr("checked")?(l(".llms-num-reviews-top").addClass("top"),l(".llms-num-reviews-bottom").show()):(l(".llms-num-reviews-top").removeClass("top"),l(".llms-num-reviews-bottom").hide())})}},t=function(){function a(){for(var t=0,e={};ts.get("events",[]).length&&(e=s.getAll(),s.clear("events"),e.events.push(t),LLMS.Ajax.call({data:{action:"persist_tracking_events","llms-tracking":JSON.stringify(e)},error:function(t,e,n){console.log(t,e,n)},success:function(t){"error"===t.code&&console.log(t.code,t.message)}})))},this.getSettings=function(){return n},this.makeEventObj=function(t){return l.extend(t,{url:window.location.href,time:Math.round((new Date).getTime()/1e3)})},l("body").hasClass("wp-admin")||(i.addEvent("page.load"),window.addEventListener("beforeunload",t),window.addEventListener("unload",e),document.addEventListener("visibilitychange",o))},llms.tracking=new LLMS.Tracking(llms.tracking),LLMS.Rest={init:function(){this.bind()},bind:function(){},is_path:function(t){for(var e=!1,n=window.location.href,i=0;ie.push(t)),e}function o(t){var e,n,i=1n===t.parentNode):null)||function(t,e){var e=1${i}`,n.classList.add(h),t.appendChild(n),n}(e,i),s&&"undefined"!=typeof jQuery?jQuery(o):o):null}function c(t){let e=1{t=o(t,e,!1);t&&(t.style.display="block")})}function d(t){r(t).forEach(t=>{t=o(t,u,!1);t&&(t.style.display="none")})}window.LLMS=window.LLMS||{},window.LLMS.Spinner=s}LLMS.init=function(){for(var t in LLMS)"object"==typeof LLMS[t]&&null!==LLMS[t]&&void 0!==LLMS[t].init&&"function"==typeof LLMS[t].init&&LLMS[t].init()},LLMS.is_touch_device=function(){var t=" -webkit- -moz- -o- -ms- ".split(" ");return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)||(t=["(",t.join("touch-enabled),("),"heartz",")"].join(""),window.matchMedia(t).matches)},LLMS.wait_for_matchHeight=function(t){this.wait_for(function(){return void 0!==l.fn.matchHeight},t,"matchHeight")},LLMS.wait_for_popover=function(t){this.wait_for(function(){return void 0!==l.fn.webuiPopover},t,"webuiPopover")},LLMS.wait_for=function(t,e,n){var i,s=0;n=n||"unnamed",i=setInterval(function(){if(300<=s)console.log("Unable to load dependency: "+n);else{if(!t())return void s++;e()}clearInterval(i)},100)},LLMS.init(l)}(jQuery); //# sourceMappingURL=../maps/js/llms.min.js.map diff --git a/assets/maps/css/admin.css.map b/assets/maps/css/admin.css.map index f472999b50..f1eaa3acff 100644 --- a/assets/maps/css/admin.css.map +++ b/assets/maps/css/admin.css.map @@ -1 +1 @@ -{"version":3,"sources":["admin.css","_includes/_extends.scss","_includes/_buttons.scss","_includes/_vars.scss","_includes/_vars-brand-colors.scss","_includes/_tooltip.scss","admin/_wp-menu.scss","admin/partials/_grid.scss","admin/modules/_forms.scss","admin/modules/_voucher.scss","admin/modules/_widgets.scss","_includes/_mixins.scss","admin/modules/_icons.scss","admin/modules/_mb-tabs.scss","admin/modules/_top-modal.scss","admin/modules/_merge-codes.scss","admin/breakpoints/_base.scss","admin.scss","admin/breakpoints/_481up.scss","admin/breakpoints/_768up.scss","admin/breakpoints/_1030up.scss","admin/breakpoints/_1240up.scss","admin/_main.scss","admin/_llms-table.scss","admin/modules/_llms-order-note.scss","admin/metaboxes/_llms-metabox.scss","admin/metaboxes/_metabox-instructors.scss","admin/metaboxes/_metabox-orders.scss","admin/metaboxes/_metabox-engagements-type.scss","admin/metaboxes/_metabox-product.scss","admin/metaboxes/_metabox-students.scss","admin/metaboxes/_metabox-field-repeater.scss","admin/metaboxes/_builder-launcher.scss","admin/post-tables/_llms_orders.scss","admin/post-tables/_post-tables.scss","admin/_tabs.scss","admin/_fonts.scss","admin/_reporting.scss","_includes/_quiz-result-question-list.scss","admin/_settings.scss","admin/_dashboard.scss","admin/_dashboard-widget.scss","admin/_quiz-attempt-review.scss","_includes/_llms-form-field.scss","_includes/vendor/_font-awesome.scss"],"names":[],"mappings":"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5C6sIF;;A4C3sIA;EACE,gBAAA;A5C8sIF;;A4C5sIA;EACE,gBAAA;A5C+sIF;;A4C7sIA;EACE,gBAAA;A5CgtIF;;A4C9sIA;EACE,gBAAA;A5CitIF;;A4C/sIA;EACE,gBAAA;A5CktIF;;A4ChtIA;EACE,gBAAA;A5CmtIF;;A4CjtIA;EACE,gBAAA;A5CotIF;;A4CltIA;EACE,gBAAA;A5CqtIF;;A4CntIA;;EAEE,gBAAA;A5CstIF;;A4CptIA;EACE,gBAAA;A5CutIF;;A4CrtIA;EACE,gBAAA;A5CwtIF;;A4CttIA;EACE,gBAAA;A5CytIF;;A4CvtIA;EACE,gBAAA;A5C0tIF;;A4CxtIA;EACE,gBAAA;A5C2tIF;;A4CztIA;EACE,gBAAA;A5C4tIF;;A4C1tIA;EACE,gBAAA;A5C6tIF;;A4C3tIA;EACE,gBAAA;A5C8tIF;;A4C5tIA;EACE,gBAAA;A5C+tIF;;A4C7tIA;EACE,gBAAA;A5CguIF;;A4C9tIA;EACE,gBAAA;A5CiuIF;;A4C/tIA;EACE,gBAAA;A5CkuIF;;A4ChuIA;EACE,gBAAA;A5CmuIF;;A4CjuIA;EACE,gBAAA;A5CouIF;;A4CluIA;EACE,gBAAA;A5CquIF;;A4CnuIA;EACE,gBAAA;A5CsuIF;;A4CpuIA;EACE,gBAAA;A5CuuIF;;A4CruIA;EACE,gBAAA;A5CwuIF;;A4CtuIA;EACE,gBAAA;A5CyuIF;;A4CvuIA;EACE,gBAAA;A5C0uIF;;A4CxuIA;EACE,gBAAA;A5C2uIF;;A4CzuIA;EACE,gBAAA;A5C4uIF;;A4C1uIA;EACE,gBAAA;A5C6uIF;;A4C3uIA;EACE,gBAAA;A5C8uIF;;A4C5uIA;EACE,gBAAA;A5C+uIF;;A4C7uIA;EACE,gBAAA;A5CgvIF;;A4C9uIA;;EAEE,gBAAA;A5CivIF;;A4C/uIA;EACE,gBAAA;A5CkvIF;;A4ChvIA;EACE,gBAAA;A5CmvIF;;A4CjvIA;;;EAGE,gBAAA;A5CovIF;;A4ClvIA;EACE,gBAAA;A5CqvIF;;A4CnvIA;EACE,gBAAA;A5CsvIF;;A4CpvIA;EACE,gBAAA;A5CuvIF;;A4CrvIA;EACE,gBAAA;A5CwvIF;;A4CtvIA;;EAEE,gBAAA;A5CyvIF;;A4CvvIA;EACE,gBAAA;A5C0vIF;;A4CxvIA;EACE,gBAAA;A5C2vIF;;A4CzvIA;EACE,gBAAA;A5C4vIF;;A4C1vIA;EACE,gBAAA;A5C6vIF;;A4C3vIA;EACE,gBAAA;A5C8vIF;;A4C5vIA;EACE,gBAAA;A5C+vIF;;A4C7vIA;EACE,gBAAA;A5CgwIF;;A4C9vIA;EACE,gBAAA;A5CiwIF;;A4C/vIA;EACE,gBAAA;A5CkwIF;;A4ChwIA;EACE,gBAAA;A5CmwIF;;A4CjwIA;EACE,gBAAA;A5CowIF;;A4ClwIA;EACE,gBAAA;A5CqwIF;;A4CnwIA;EACE,gBAAA;A5CswIF;;A4CpwIA;EACE,gBAAA;A5CuwIF;;A4CrwIA;EACE,gBAAA;A5CwwIF;;A4CtwIA;EACE,gBAAA;A5CywIF;;A4CvwIA;EACE,gBAAA;A5C0wIF;;A4CxwIA;EACE,gBAAA;A5C2wIF;;A4CzwIA;EACE,gBAAA;A5C4wIF;;A4C1wIA;EACE,gBAAA;A5C6wIF;;A4C3wIA;EACE,gBAAA;A5C8wIF;;A4C5wIA;EACE,gBAAA;A5C+wIF;;A4C7wIA;EACE,gBAAA;A5CgxIF;;A4C9wIA;EACE,gBAAA;A5CixIF;;A4C/wIA;EACE,gBAAA;A5CkxIF;;A4ChxIA;EACE,gBAAA;A5CmxIF;;A4CjxIA;EACE,gBAAA;A5CoxIF;;A4ClxIA;EACE,gBAAA;A5CqxIF;;A4CnxIA;EACE,gBAAA;A5CsxIF;;A4CpxIA;;EAEE,gBAAA;A5CuxIF;;A4CrxIA;EACE,gBAAA;A5CwxIF;;A4CtxIA;EACE,gBAAA;A5CyxIF;;A4CvxIA;EACE,gBAAA;A5C0xIF;;A4CxxIA;EACE,gBAAA;A5C2xIF;;A4CzxIA;EACE,gBAAA;A5C4xIF;;A4C1xIA;EACE,gBAAA;A5C6xIF;;A4C3xIA;EACE,gBAAA;A5C8xIF;;A4C5xIA;EACE,gBAAA;A5C+xIF;;A4C7xIA;EACE,gBAAA;A5CgyIF;;A4C9xIA;EACE,gBAAA;A5CiyIF;;A4C/xIA;EACE,gBAAA;A5CkyIF;;A4ChyIA;;EAEE,gBAAA;A5CmyIF;;A4CjyIA;EACE,gBAAA;A5CoyIF;;A4ClyIA;EACE,gBAAA;A5CqyIF;;A4CnyIA;EACE,gBAAA;A5CsyIF;;A4CpyIA;EACE,gBAAA;A5CuyIF;;A4CryIA;EACE,gBAAA;A5CwyIF;;A4CtyIA;EACE,gBAAA;A5CyyIF;;A4CvyIA;EACE,gBAAA;A5C0yIF;;A4CxyIA;EACE,gBAAA;A5C2yIF;;A4CzyIA;EACE,gBAAA;A5C4yIF;;A4C1yIA;EACE,gBAAA;A5C6yIF;;A4C3yIA;EACE,gBAAA;A5C8yIF;;A4C5yIA;EACE,gBAAA;A5C+yIF;;A4C7yIA;EACE,gBAAA;A5CgzIF;;A4C9yIA;;EAEE,gBAAA;A5CizIF;;A4C/yIA;EACE,gBAAA;A5CkzIF;;A4ChzIA;EACE,gBAAA;A5CmzIF;;A4CjzIA;EACE,gBAAA;A5CozIF;;A4ClzIA;EACE,gBAAA;A5CqzIF;;A4CnzIA;;EAEE,gBAAA;A5CszIF;;A4CpzIA;EACE,gBAAA;A5CuzIF;;A4CrzIA;EACE,gBAAA;A5CwzIF;;A4CtzIA;EACE,gBAAA;A5CyzIF;;A4CvzIA;EACE,gBAAA;A5C0zIF;;A4CxzIA;EACE,gBAAA;A5C2zIF;;A4CzzIA;EACE,gBAAA;A5C4zIF;;A4C1zIA;EACE,gBAAA;A5C6zIF;;A4C3zIA;EACE,gBAAA;A5C8zIF;;A4C5zIA;EACE,gBAAA;A5C+zIF;;A4C7zIA;EACE,gBAAA;A5Cg0IF;;A4C9zIA;EACE,gBAAA;A5Ci0IF;;A4C/zIA;EACE,gBAAA;A5Ck0IF;;A4Ch0IA;EACE,gBAAA;A5Cm0IF;;A4Cj0IA;EACE,gBAAA;A5Co0IF;;A4Cl0IA;EACE,gBAAA;A5Cq0IF;;A4Cn0IA;EACE,gBAAA;A5Cs0IF;;A4Cp0IA;EACE,gBAAA;A5Cu0IF;;A4Cr0IA;EACE,gBAAA;A5Cw0IF;;A4Ct0IA;EACE,gBAAA;A5Cy0IF;;A4Cv0IA;;EAEE,gBAAA;A5C00IF;;A4Cx0IA;EACE,gBAAA;A5C20IF;;A4Cz0IA;EACE,gBAAA;A5C40IF;;A4C10IA;EACE,gBAAA;A5C60IF;;A4C30IA;;EAEE,gBAAA;A5C80IF;;A4C50IA;EACE,gBAAA;A5C+0IF;;A4C70IA;EACE,gBAAA;A5Cg1IF;;A4C90IA;EACE,gBAAA;A5Ci1IF;;A4C/0IA;EACE,gBAAA;A5Ck1IF;;A4Ch1IA;EACE,gBAAA;A5Cm1IF;;A4Cj1IA;EACE,gBAAA;A5Co1IF;;A4Cl1IA;EACE,gBAAA;A5Cq1IF;;A4Cn1IA;EACE,gBAAA;A5Cs1IF;;A4Cp1IA;EACE,gBAAA;A5Cu1IF;;A4Cr1IA;EACE,gBAAA;A5Cw1IF;;A4Ct1IA;EACE,gBAAA;A5Cy1IF;;A4Cv1IA;EACE,gBAAA;A5C01IF;;A4Cx1IA;EACE,gBAAA;A5C21IF;;A4Cz1IA;EACE,gBAAA;A5C41IF;;A4C11IA;EACE,gBAAA;A5C61IF;;A4C31IA;EACE,gBAAA;A5C81IF;;A4C51IA;EACE,gBAAA;A5C+1IF;;A4C71IA;EACE,gBAAA;A5Cg2IF;;A4C91IA;;EAEE,gBAAA;A5Ci2IF;;A4C/1IA;;EAEE,gBAAA;A5Ck2IF;;A4Ch2IA;EACE,gBAAA;A5Cm2IF;;A4Cj2IA;EACE,gBAAA;A5Co2IF;;A4Cl2IA;;EAEE,gBAAA;A5Cq2IF;;A4Cn2IA;;EAEE,gBAAA;A5Cs2IF;;A4Cp2IA;EACE,gBAAA;A5Cu2IF;;A4Cr2IA;;EAEE,gBAAA;A5Cw2IF;;A4Ct2IA;EACE,gBAAA;A5Cy2IF;;A4Cv2IA;;;EAGE,gBAAA;A5C02IF;;A4Cx2IA;EACE,gBAAA;A5C22IF;;A4Cz2IA;EACE,gBAAA;A5C42IF;;A4C12IA;EACE,gBAAA;A5C62IF;;A4C32IA;EACE,gBAAA;A5C82IF;;A4C52IA;EACE,gBAAA;A5C+2IF;;A4C72IA;EACE,gBAAA;A5Cg3IF;;A4C92IA;EACE,gBAAA;A5Ci3IF;;A4C/2IA;EACE,gBAAA;A5Ck3IF;;A4Ch3IA;EACE,gBAAA;A5Cm3IF;;A4Cj3IA;EACE,gBAAA;A5Co3IF;;A4Cl3IA;EACE,gBAAA;A5Cq3IF;;A4Cn3IA;EACE,gBAAA;A5Cs3IF;;A4Cp3IA;EACE,gBAAA;A5Cu3IF;;A4Cr3IA;EACE,gBAAA;A5Cw3IF;;A4Ct3IA;EACE,gBAAA;A5Cy3IF;;A4Cv3IA;EACE,gBAAA;A5C03IF;;A4Cx3IA;EACE,gBAAA;A5C23IF;;A4Cz3IA;;EAEE,gBAAA;A5C43IF;;A4C13IA;;EAEE,gBAAA;A5C63IF;;A4C33IA;;EAEE,gBAAA;A5C83IF;;A4C53IA;EACE,gBAAA;A5C+3IF;;A4C73IA;EACE,gBAAA;A5Cg4IF;;A4C93IA;;EAEE,gBAAA;A5Ci4IF;;A4C/3IA;;EAEE,gBAAA;A5Ck4IF;;A4Ch4IA;;EAEE,gBAAA;A5Cm4IF;;A4Cj4IA;EACE,gBAAA;A5Co4IF;;A4Cl4IA;EACE,gBAAA;A5Cq4IF;;A4Cn4IA;;EAEE,gBAAA;A5Cs4IF;;A4Cp4IA;EACE,gBAAA;A5Cu4IF;;A4Cr4IA;EACE,gBAAA;A5Cw4IF;;A4Ct4IA;;EAEE,gBAAA;A5Cy4IF;;A4Cv4IA;EACE,gBAAA;A5C04IF;;A4Cx4IA;EACE,gBAAA;A5C24IF;;A4Cz4IA;EACE,gBAAA;A5C44IF;;A4C14IA;EACE,gBAAA;A5C64IF;;A4C34IA;EACE,gBAAA;A5C84IF;;A4C54IA;EACE,gBAAA;A5C+4IF;;A4C74IA;EACE,gBAAA;A5Cg5IF;;A4C94IA;EACE,gBAAA;A5Ci5IF;;A4C/4IA;EACE,gBAAA;A5Ck5IF;;A4Ch5IA;EACE,gBAAA;A5Cm5IF;;A4Cj5IA;EACE,gBAAA;A5Co5IF;;A4Cl5IA;EACE,gBAAA;A5Cq5IF;;A4Cn5IA;EACE,gBAAA;A5Cs5IF;;A4Cp5IA;EACE,gBAAA;A5Cu5IF;;A4Cr5IA;EACE,gBAAA;A5Cw5IF;;A4Ct5IA;EACE,gBAAA;A5Cy5IF;;A4Cv5IA;EACE,gBAAA;A5C05IF;;A4Cx5IA;EACE,gBAAA;A5C25IF;;A4Cz5IA;EACE,gBAAA;A5C45IF;;A4C15IA;EACE,gBAAA;A5C65IF;;A4C35IA;EACE,gBAAA;A5C85IF;;A4C55IA;EACE,gBAAA;A5C+5IF;;A4C75IA;EACE,gBAAA;A5Cg6IF;;A4C95IA;EACE,gBAAA;A5Ci6IF;;A4C/5IA;EACE,gBAAA;A5Ck6IF;;A4Ch6IA;EACE,gBAAA;A5Cm6IF;;A4Cj6IA;EACE,gBAAA;A5Co6IF;;A4Cl6IA;EACE,gBAAA;A5Cq6IF;;A4Cn6IA;EACE,gBAAA;A5Cs6IF;;A4Cp6IA;EACE,gBAAA;A5Cu6IF;;A4Cr6IA;;EAEE,gBAAA;A5Cw6IF;;A4Ct6IA;EACE,gBAAA;A5Cy6IF;;A4Cv6IA;EACE,gBAAA;A5C06IF;;A4Cx6IA;EACE,gBAAA;A5C26IF;;A4Cz6IA;EACE,gBAAA;A5C46IF;;A4C16IA;EACE,gBAAA;A5C66IF;;A4C36IA;;EAEE,gBAAA;A5C86IF;;A4C56IA;EACE,gBAAA;A5C+6IF;;A4C76IA;EACE,gBAAA;A5Cg7IF;;A4C96IA;EACE,gBAAA;A5Ci7IF;;A4C/6IA;EACE,gBAAA;A5Ck7IF;;A4Ch7IA;EACE,gBAAA;A5Cm7IF;;A4Cj7IA;EACE,gBAAA;A5Co7IF;;A4Cl7IA;EACE,gBAAA;A5Cq7IF;;A4Cn7IA;EACE,gBAAA;A5Cs7IF;;A4Cp7IA;EACE,gBAAA;A5Cu7IF;;A4Cr7IA;EACE,gBAAA;A5Cw7IF;;A4Ct7IA;EACE,gBAAA;A5Cy7IF;;A4Cv7IA;EACE,gBAAA;A5C07IF;;A4Cx7IA;;EAEE,gBAAA;A5C27IF;;A4Cz7IA;;;EAGE,gBAAA;A5C47IF;;A4C17IA;EACE,gBAAA;A5C67IF;;A4C37IA;EACE,gBAAA;A5C87IF;;A4C57IA;EACE,gBAAA;A5C+7IF;;A4C77IA;;EAEE,gBAAA;A5Cg8IF;;A4C97IA;EACE,gBAAA;A5Ci8IF;;A4C/7IA;EACE,gBAAA;A5Ck8IF;;A4Ch8IA;EACE,gBAAA;A5Cm8IF;;A4Cj8IA;EACE,gBAAA;A5Co8IF;;A4Cl8IA;EACE,gBAAA;A5Cq8IF;;A4Cn8IA;EACE,gBAAA;A5Cs8IF;;A4Cp8IA;EACE,gBAAA;A5Cu8IF;;A4Cr8IA;EACE,gBAAA;A5Cw8IF;;A4Ct8IA;EACE,gBAAA;A5Cy8IF;;A4Cv8IA;EACE,gBAAA;A5C08IF;;A4Cx8IA;EACE,gBAAA;A5C28IF;;A4Cz8IA;EACE,gBAAA;A5C48IF;;A4C18IA;EACE,gBAAA;A5C68IF;;A4C38IA;EACE,gBAAA;A5C88IF;;A4C58IA;EACE,gBAAA;A5C+8IF;;A4C78IA;EACE,gBAAA;A5Cg9IF;;A4C98IA;EACE,gBAAA;A5Ci9IF;;A4C/8IA;EACE,gBAAA;A5Ck9IF;;A4Ch9IA;EACE,gBAAA;A5Cm9IF;;A4Cj9IA;EACE,gBAAA;A5Co9IF;;A4Cl9IA;EACE,gBAAA;A5Cq9IF;;A4Cn9IA;EACE,gBAAA;A5Cs9IF;;A4Cp9IA;EACE,gBAAA;A5Cu9IF;;A4Cr9IA;EACE,gBAAA;A5Cw9IF;;A4Ct9IA;EACE,gBAAA;A5Cy9IF;;A4Cv9IA;EACE,gBAAA;A5C09IF;;A4Cx9IA;EACE,gBAAA;A5C29IF;;A4Cz9IA;EACE,gBAAA;A5C49IF;;A4C19IA;EACE,gBAAA;A5C69IF;;A4C39IA;EACE,gBAAA;A5C89IF;;A4C59IA;EACE,gBAAA;A5C+9IF;;A4C79IA;EACE,gBAAA;A5Cg+IF;;A4C99IA;EACE,gBAAA;A5Ci+IF;;A4C/9IA;EACE,gBAAA;A5Ck+IF;;A4Ch+IA;EACE,gBAAA;A5Cm+IF;;A4Cj+IA;EACE,gBAAA;A5Co+IF;;A4Cl+IA;EACE,gBAAA;A5Cq+IF;;A4Cn+IA;;EAEE,gBAAA;A5Cs+IF;;A4Cp+IA;;EAEE,gBAAA;A5Cu+IF;;A4Cr+IA;;EAEE,gBAAA;A5Cw+IF;;A4Ct+IA;;EAEE,gBAAA;A5Cy+IF;;A4Cv+IA;EACE,gBAAA;A5C0+IF;;A4Cx+IA;;EAEE,gBAAA;A5C2+IF;;A4Cz+IA;;EAEE,gBAAA;A5C4+IF;;A4C1+IA;;;;EAIE,gBAAA;A5C6+IF;;A4C3+IA;;;EAGE,gBAAA;A5C8+IF;;A4C5+IA;;EAEE,gBAAA;A5C++IF;;A4C7+IA;;EAEE,gBAAA;A5Cg/IF;;A4C9+IA;EACE,gBAAA;A5Ci/IF;;A4C/+IA;EACE,gBAAA;A5Ck/IF;;A4Ch/IA;EACE,gBAAA;A5Cm/IF;;A4Cj/IA;EACE,gBAAA;A5Co/IF;;A4Cl/IA;EACE,gBAAA;A5Cq/IF;;A4Cn/IA;EACE,gBAAA;A5Cs/IF;;A4Cp/IA;EACE,gBAAA;A5Cu/IF;;A4Cr/IA;EACE,gBAAA;A5Cw/IF;;A4Ct/IA;EACE,gBAAA;A5Cy/IF;;A4Cv/IA;EACE,gBAAA;A5C0/IF;;A4Cx/IA;EACE,gBAAA;A5C2/IF;;A4Cz/IA;EACE,gBAAA;A5C4/IF;;A4C1/IA;EACE,gBAAA;A5C6/IF;;A4C3/IA;EACE,gBAAA;A5C8/IF;;A4C5/IA;EACE,gBAAA;A5C+/IF;;A4C7/IA;EACE,gBAAA;A5CggJF;;A4C9/IA;EACE,gBAAA;A5CigJF;;A4C//IA;EACE,gBAAA;A5CkgJF;;A4ChgJA;EACE,gBAAA;A5CmgJF;;A4CjgJA;EACE,gBAAA;A5CogJF;;A4ClgJA;EACE,gBAAA;A5CqgJF;;A4CngJA;EACE,gBAAA;A5CsgJF;;A4CpgJA;EACE,gBAAA;A5CugJF;;A4CrgJA;EACE,gBAAA;A5CwgJF;;A4CtgJA;EACE,gBAAA;A5CygJF;;A4CvgJA;EACE,gBAAA;A5C0gJF;;A4CxgJA;EACE,gBAAA;A5C2gJF;;A4CzgJA;EACE,gBAAA;A5C4gJF;;A4C1gJA;EACE,gBAAA;A5C6gJF;;A4C3gJA;EACE,gBAAA;A5C8gJF;;A4C5gJA;EACE,gBAAA;A5C+gJF;;A4C7gJA;EACE,gBAAA;A5CghJF;;A4C9gJA;EACE,gBAAA;A5CihJF;;A4C/gJA;EACE,gBAAA;A5CkhJF;;A4ChhJA;EACE,gBAAA;A5CmhJF;;A4CjhJA;EACE,gBAAA;A5CohJF;;A4ClhJA;EACE,gBAAA;A5CqhJF;;A4CnhJA;EACE,gBAAA;A5CshJF;;A4CphJA;;EAEE,gBAAA;A5CuhJF;;A4CrhJA;EACE,gBAAA;A5CwhJF;;A4CthJA;EACE,gBAAA;A5CyhJF;;A4CvhJA;EACE,gBAAA;A5C0hJF;;A4CxhJA;EACE,gBAAA;A5C2hJF;;A4CzhJA;EACE,gBAAA;A5C4hJF;;A4C1hJA;EACE,gBAAA;A5C6hJF;;A4C3hJA;EACE,gBAAA;A5C8hJF;;A4C5hJA;EACE,gBAAA;A5C+hJF;;A4C7hJA;EACE,gBAAA;A5CgiJF;;A4C9hJA;EACE,gBAAA;A5CiiJF;;A4C/hJA;EACE,gBAAA;A5CkiJF;;A4ChiJA;;EAEE,gBAAA;A5CmiJF;;A4CjiJA;EACE,gBAAA;A5CoiJF;;A4CliJA;EACE,gBAAA;A5CqiJF;;A4CniJA;EACE,gBAAA;A5CsiJF;;A4CpiJA;;EAEE,gBAAA;A5CuiJF;;A4CriJA;EACE,gBAAA;A5CwiJF;;A4CtiJA;EACE,gBAAA;A5CyiJF;;A4CviJA;EACE,gBAAA;A5C0iJF;;A4CxiJA;EACE,gBAAA;A5C2iJF;;A4CziJA;EACE,gBAAA;A5C4iJF;;A4C1iJA;EACE,gBAAA;A5C6iJF;;A4C3iJA;;;EAGE,gBAAA;A5C8iJF;;A4C5iJA;;EAEE,gBAAA;A5C+iJF;;A4C7iJA;EACE,gBAAA;A5CgjJF;;A4C9iJA;EACE,gBAAA;A5CijJF;;A4C/iJA;EACE,gBAAA;A5CkjJF;;A4ChjJA;EACE,gBAAA;A5CmjJF;;A4CjjJA;EACE,gBAAA;A5CojJF;;A4CljJA;EACE,gBAAA;A5CqjJF;;A4CnjJA;EACE,gBAAA;A5CsjJF;;A4CpjJA;EACE,gBAAA;A5CujJF;;A4CrjJA;EACE,gBAAA;A5CwjJF;;A4CtjJA;EACE,gBAAA;A5CyjJF;;A4CvjJA;EACE,gBAAA;A5C0jJF;;A4CxjJA;EACE,gBAAA;A5C2jJF;;A4CzjJA;EACE,gBAAA;A5C4jJF;;A4C1jJA;EACE,gBAAA;A5C6jJF;;A4C3jJA;EACE,gBAAA;A5C8jJF;;A4C5jJA;EACE,gBAAA;A5C+jJF;;A4C7jJA;EACE,gBAAA;A5CgkJF;;A4C9jJA;EACE,gBAAA;A5CikJF;;A4C/jJA;EACE,gBAAA;A5CkkJF;;A4ChkJA;EACE,gBAAA;A5CmkJF;;A4CjkJA;EACE,gBAAA;A5CokJF;;A4ClkJA;EACE,gBAAA;A5CqkJF;;A4CnkJA;EACE,gBAAA;A5CskJF;;A4CpkJA;EACE,gBAAA;A5CukJF;;A4CrkJA;EACE,gBAAA;A5CwkJF;;A4CtkJA;;EAEE,gBAAA;A5CykJF;;A4CvkJA;;EAEE,gBAAA;A5C0kJF;;A4CxkJA;EACE,gBAAA;A5C2kJF;;A4CzkJA;EACE,gBAAA;A5C4kJF;;A4C1kJA;EACE,gBAAA;A5C6kJF;;A4C3kJA;EACE,gBAAA;A5C8kJF;;A4C5kJA;EACE,gBAAA;A5C+kJF;;A4C7kJA;EACE,gBAAA;A5CglJF;;A4C9kJA;EACE,gBAAA;A5CilJF;;A4C/kJA;EACE,gBAAA;A5CklJF;;A4ChlJA;EACE,gBAAA;A5CmlJF;;A4CjlJA;;;EAGE,gBAAA;A5ColJF;;A4CllJA;;EAEE,gBAAA;A5CqlJF;;A4CnlJA;;EAEE,gBAAA;A5CslJF;;A4CplJA;;EAEE,gBAAA;A5CulJF;;A4CrlJA;EACE,gBAAA;A5CwlJF;;A4CtlJA;EACE,gBAAA;A5CylJF;;A4CvlJA;EACE,gBAAA;A5C0lJF;;A4CxlJA;EACE,gBAAA;A5C2lJF;;A4CzlJA;;;;;EAKE,gBAAA;A5C4lJF;;A4C1lJA;EACE,gBAAA;A5C6lJF;;A4C3lJA;;;EAGE,gBAAA;A5C8lJF;;A4C5lJA;;EAEE,gBAAA;A5C+lJF;;A4C7lJA;EACE,gBAAA;A5CgmJF;;A4C9lJA;EACE,gBAAA;A5CimJF;;A4C/lJA;;;EAGE,gBAAA;A5CkmJF;;A4ChmJA;EACE,gBAAA;A5CmmJF;;A4CjmJA;EACE,gBAAA;A5ComJF;;A4ClmJA;;EAEE,gBAAA;A5CqmJF;;A4CnmJA;;EAEE,gBAAA;A5CsmJF;;A4CpmJA;;EAEE,gBAAA;A5CumJF;;A4CrmJA;EACE,gBAAA;A5CwmJF;;A4CtmJA;EACE,gBAAA;A5CymJF;;A4CvmJA;EACE,gBAAA;A5C0mJF;;A4CxmJA;EACE,gBAAA;A5C2mJF;;A4CzmJA;EACE,gBAAA;A5C4mJF;;A4C1mJA;EACE,gBAAA;A5C6mJF;;A4C3mJA;EACE,gBAAA;A5C8mJF;;A4C5mJA;EACE,gBAAA;A5C+mJF;;A4C7mJA;;EAEE,gBAAA;A5CgnJF;;A4C9mJA;EACE,gBAAA;A5CinJF;;A4C/mJA;EACE,gBAAA;A5CknJF;;A4ChnJA;EACE,gBAAA;A5CmnJF;;A4CjnJA;EACE,gBAAA;A5ConJF;;A4ClnJA;EACE,gBAAA;A5CqnJF;;A4CnnJA;EACE,gBAAA;A5CsnJF;;A4CpnJA;EACE,gBAAA;A5CunJF;;A4CrnJA;EACE,gBAAA;A5CwnJF;;A4CtnJA;EACE,gBAAA;A5CynJF;;A4CvnJA;EACE,gBAAA;A5C0nJF;;A4CxnJA;EACE,gBAAA;A5C2nJF;;A4CznJA;EACE,gBAAA;A5C4nJF;;A4C1nJA;EACE,gBAAA;A5C6nJF;;A4C3nJA;EACE,gBAAA;A5C8nJF;;A4C5nJA;EACE,gBAAA;A5C+nJF;;A4C7nJA;EACE,gBAAA;A5CgoJF;;A4C9nJA;EACE,gBAAA;A5CioJF;;A4C/nJA;EACE,gBAAA;A5CkoJF;;A4ChoJA;EACE,gBAAA;A5CmoJF;;A4CjoJA;EACE,gBAAA;A5CooJF;;A4CloJA;EACE,gBAAA;A5CqoJF;;A4CnoJA;EACE,gBAAA;A5CsoJF;;A4CpoJA;EACE,gBAAA;A5CuoJF;;A4CroJA;EACE,gBAAA;A5CwoJF;;A4CtoJA;EACE,gBAAA;A5CyoJF;;A4CvoJA;EACE,gBAAA;A5C0oJF;;A4CxoJA;EACE,gBAAA;A5C2oJF;;A4CzoJA;EACE,gBAAA;A5C4oJF;;A4C1oJA;EACE,gBAAA;A5C6oJF;;A4C3oJA;EACE,gBAAA;A5C8oJF;;A4C5oJA;EACE,gBAAA;A5C+oJF;;A4C7oJA;EACE,gBAAA;A5CgpJF;;A4C9oJA;EACE,gBAAA;A5CipJF;;A4C/oJA;EACE,gBAAA;A5CkpJF;;A4ChpJA;EACE,gBAAA;A5CmpJF;;A4CjpJA;EACE,gBAAA;A5CopJF;;A4ClpJA;EACE,gBAAA;A5CqpJF;;A4CnpJA;;;EAGE,gBAAA;A5CspJF;;A4CppJA;EACE,gBAAA;A5CupJF;;A4CrpJA;EACE,gBAAA;A5CwpJF;;A4CtpJA;EACE,gBAAA;A5CypJF;;A4CvpJA;EACE,gBAAA;A5C0pJF;;A4CxpJA;EACE,gBAAA;A5C2pJF;;A4CzpJA;EACE,gBAAA;A5C4pJF;;A4C1pJA;EACE,gBAAA;A5C6pJF;;A4C3pJA;EACE,gBAAA;A5C8pJF;;A4C5pJA;EACE,gBAAA;A5C+pJF;;A4C7pJA;EACE,gBAAA;A5CgqJF;;A4C9pJA;EACE,gBAAA;A5CiqJF;;A4C/pJA;EACE,gBAAA;A5CkqJF;;A4ChqJA;EACE,gBAAA;A5CmqJF;;A4CjqJA;EACE,gBAAA;A5CoqJF;;A4ClqJA;EACE,gBAAA;A5CqqJF;;A4CnqJA;EACE,gBAAA;A5CsqJF;;A4CpqJA;EACE,gBAAA;A5CuqJF;;A4CrqJA;EACE,gBAAA;A5CwqJF;;A4CtqJA;EACE,gBAAA;A5CyqJF;;A4CvqJA;EACE,gBAAA;A5C0qJF;;A4CxqJA;EACE,gBAAA;A5C2qJF;;A4CzqJA;;EAEE,gBAAA;A5C4qJF;;A4C1qJA;EACE,gBAAA;A5C6qJF;;A4C3qJA;EACE,gBAAA;A5C8qJF;;A4C5qJA;EACE,gBAAA;A5C+qJF;;A4C7qJA;EACE,gBAAA;A5CgrJF;;A4C9qJA;EACE,gBAAA;A5CirJF;;A4C/qJA;EACE,gBAAA;A5CkrJF;;A4ChrJA;EACE,gBAAA;A5CmrJF;;A4CjrJA;EACE,gBAAA;A5CorJF;;A4ClrJA;EACE,gBAAA;A5CqrJF;;A4CnrJA;EACE,gBAAA;A5CsrJF;;A4CprJA;EACE,gBAAA;A5CurJF;;A4CrrJA;EACE,gBAAA;A5CwrJF;;A4CtrJA;EACE,gBAAA;A5CyrJF;;A4CvrJA;EACE,gBAAA;A5C0rJF;;A4CxrJA;EACE,gBAAA;A5C2rJF;;A4CzrJA;;EAEE,gBAAA;A5C4rJF;;A4C1rJA;EACE,gBAAA;A5C6rJF;;A4C3rJA;EACE,gBAAA;A5C8rJF;;A4C5rJA;EACE,gBAAA;A5C+rJF;;A4C7rJA;EACE,gBAAA;A5CgsJF;;A4C9rJA;;EAEE,gBAAA;A5CisJF;;A4C/rJA;EACE,gBAAA;A5CksJF;;A4ChsJA;EACE,gBAAA;A5CmsJF;;A4CjsJA;EACE,gBAAA;A5CosJF;;A4ClsJA;;;EAGE,gBAAA;A5CqsJF;;A4CnsJA;;EAEE,gBAAA;A5CssJF;;A4CpsJA;;EAEE,gBAAA;A5CusJF;;A4CrsJA;;EAEE,gBAAA;A5CwsJF;;A4CtsJA;;EAEE,gBAAA;A5CysJF;;A4CvsJA;EACE,gBAAA;A5C0sJF;;A4CxsJA;EACE,gBAAA;A5C2sJF;;A4CzsJA;EACE,gBAAA;A5C4sJF;;A4C1sJA;EACE,gBAAA;A5C6sJF;;A4C3sJA;EACE,gBAAA;A5C8sJF;;A4C5sJA;EACE,gBAAA;A5C+sJF;;A4C7sJA;EACE,gBAAA;A5CgtJF;;A4C9sJA;EACE,gBAAA;A5CitJF;;A4C/sJA;EACE,gBAAA;A5CktJF;;A4ChtJA;EACE,gBAAA;A5CmtJF;;A4CjtJA;EACE,gBAAA;A5CotJF;;A4CltJA;;EAEE,gBAAA;A5CqtJF;;A4CntJA;;EAEE,gBAAA;A5CstJF;;A4CptJA;;EAEE,gBAAA;A5CutJF;;A4CrtJA;EACE,gBAAA;A5CwtJF;;A4CttJA;;EAEE,gBAAA;A5CytJF;;A4CvtJA;;EAEE,gBAAA;A5C0tJF;;A4CxtJA;EACE,gBAAA;A5C2tJF;;A4CztJA;EACE,gBAAA;A5C4tJF;;A4C1tJA;EACE,gBAAA;A5C6tJF;;A4C3tJA;EACE,gBAAA;A5C8tJF;;A4C5tJA;EACE,gBAAA;A5C+tJF;;A4C7tJA;EACE,gBAAA;A5CguJF;;A4C9tJA;EACE,gBAAA;A5CiuJF;;A4C/tJA;EACE,gBAAA;A5CkuJF;;A4ChuJA;EACE,gBAAA;A5CmuJF;;A4CjuJA;EACE,gBAAA;A5CouJF;;A4CluJA;EACE,gBAAA;A5CquJF;;A4CnuJA;EACE,gBAAA;A5CsuJF;;A4CpuJA;EACE,gBAAA;A5CuuJF;;A4CruJA;EACE,gBAAA;A5CwuJF;;A4CtuJA;EACE,gBAAA;A5CyuJF;;A4CvuJA;EACE,gBAAA;A5C0uJF;;A4CxuJA;EACE,gBAAA;A5C2uJF;;A4CzuJA;EACE,gBAAA;A5C4uJF;;A4C1uJA;EACE,gBAAA;A5C6uJF;;A4C3uJA;EACE,gBAAA;A5C8uJF;;A4C5uJA;;EAEE,gBAAA;A5C+uJF;;A4C7uJA;EACE,gBAAA;A5CgvJF;;A4C9uJA;EACE,gBAAA;A5CivJF;;A4C/uJA;EACE,gBAAA;A5CkvJF;;A4ChvJA;EACE,gBAAA;A5CmvJF;;A4CjvJA;EACE,gBAAA;A5CovJF;;A4ClvJA;EACE,gBAAA;A5CqvJF;;A4CnvJA;EACE,gBAAA;A5CsvJF;;A4CpvJA;EACE,gBAAA;A5CuvJF;;A4CrvJA;EACE,gBAAA;A5CwvJF;;A4CtvJA;EACE,gBAAA;A5CyvJF;;A4CvvJA;EACE,gBAAA;A5C0vJF;;A4CxvJA;EACE,gBAAA;A5C2vJF;;A4CzvJA;EACE,gBAAA;A5C4vJF;;A4C1vJA;EACE,gBAAA;A5C6vJF;;A4C3vJA;EACE,gBAAA;A5C8vJF;;A4C5vJA;EACE,gBAAA;A5C+vJF;;A4C7vJA;EACE,gBAAA;A5CgwJF;;A4C9vJA;EACE,gBAAA;A5CiwJF;;A4C/vJA;EACE,gBAAA;A5CkwJF;;A4ChwJA;EACE,gBAAA;A5CmwJF;;A4CjwJA;EACE,gBAAA;A5CowJF;;A4ClwJA;EACE,gBAAA;A5CqwJF;;A4CnwJA;EACE,gBAAA;A5CswJF;;A4CpwJA;EACE,gBAAA;A5CuwJF;;A4CrwJA;EACE,gBAAA;A5CwwJF;;A4CtwJA;EACE,gBAAA;A5CywJF;;A4CvwJA;EACE,gBAAA;A5C0wJF;;A4CxwJA;EACE,gBAAA;A5C2wJF;;A4CzwJA;EACE,gBAAA;A5C4wJF;;A4C1wJA;EACE,gBAAA;A5C6wJF;;A4C3wJA;EACE,gBAAA;A5C8wJF;;A4C5wJA;EACE,gBAAA;A5C+wJF;;A4C7wJA;EACE,gBAAA;A5CgxJF;;A4C9wJA;EACE,gBAAA;A5CixJF;;A4C/wJA;EACE,gBAAA;A5CkxJF;;A4ChxJA;EACE,gBAAA;A5CmxJF;;A4CjxJA;EACE,gBAAA;A5CoxJF;;A4ClxJA;EACE,gBAAA;A5CqxJF;;A4CnxJA;EACE,gBAAA;A5CsxJF;;A4CpxJA;EACE,gBAAA;A5CuxJF;;A4CrxJA;EACE,gBAAA;A5CwxJF;;A4CtxJA;EACE,gBAAA;A5CyxJF;;A4CvxJA;EACE,gBAAA;A5C0xJF;;A4CxxJA;EACE,gBAAA;A5C2xJF;;A4CzxJA;EACE,gBAAA;A5C4xJF;;A4C1xJA;EACE,gBAAA;A5C6xJF;;A4C3xJA;EACE,gBAAA;A5C8xJF;;A4C5xJA;EACE,gBAAA;A5C+xJF;;A4C7xJA;EACE,gBAAA;A5CgyJF;;A4C9xJA;EACE,gBAAA;A5CiyJF;;A4C/xJA;;EAEE,gBAAA;A5CkyJF;;A4ChyJA;;;EAGE,gBAAA;A5CmyJF;;A4CjyJA;EACE,gBAAA;A5CoyJF;;A4ClyJA;EACE,gBAAA;A5CqyJF;;A4CnyJA;;EAEE,gBAAA;A5CsyJF;;A4CpyJA;EACE,gBAAA;A5CuyJF;;A4CryJA;EACE,gBAAA;A5CwyJF;;A4CtyJA;EACE,gBAAA;A5CyyJF;;A4CvyJA;EACE,gBAAA;A5C0yJF;;A4CxyJA;EACE,gBAAA;A5C2yJF;;A4CzyJA;EACE,gBAAA;A5C4yJF;;A4C1yJA;EACE,gBAAA;A5C6yJF;;A4C3yJA;EACE,gBAAA;A5C8yJF;;A4C5yJA;EACE,gBAAA;A5C+yJF;;A4C7yJA;EACE,gBAAA;A5CgzJF;;A4C9yJA;;EAEE,gBAAA;A5CizJF;;A4C/yJA;;EAEE,gBAAA;A5CkzJF;;A4ChzJA;EACE,gBAAA;A5CmzJF;;A4CjzJA;EACE,gBAAA;A5CozJF;;A4ClzJA;EACE,gBAAA;A5CqzJF;;A4CnzJA;EACE,gBAAA;A5CszJF;;A4CpzJA;EACE,gBAAA;A5CuzJF;;A4CrzJA;EACE,gBAAA;A5CwzJF;;A4CtzJA;;EAEE,gBAAA;A5CyzJF;;A4CvzJA;;EAEE,gBAAA;A5C0zJF;;A4CxzJA;EACE,gBAAA;A5C2zJF;;A4CzzJA;EACE,gBAAA;A5C4zJF;;A4C1zJA;EACE,gBAAA;A5C6zJF;;A4C3zJA;EACE,gBAAA;A5C8zJF;;A4C5zJA;;EAEE,gBAAA;A5C+zJF;;A4C7zJA;;EAEE,gBAAA;A5Cg0JF;;A4C9zJA;EACE,gBAAA;A5Ci0JF;;A4C/zJA;EACE,gBAAA;A5Ck0JF;;A4Ch0JA;EACE,gBAAA;A5Cm0JF;;A4Cj0JA;;;EAGE,gBAAA;A5Co0JF;;A4Cl0JA;;EAEE,gBAAA;A5Cq0JF;;A4Cn0JA;;EAEE,gBAAA;A5Cs0JF;;A4Cp0JA;;EAEE,gBAAA;A5Cu0JF;;A4Cr0JA;;EAEE,gBAAA;A5Cw0JF;;A4Ct0JA;EACE,gBAAA;A5Cy0JF;;A4Cv0JA;;;EAGE,gBAAA;A5C00JF;;A4Cx0JA;EACE,gBAAA;A5C20JF;;A4Cz0JA;EACE,gBAAA;A5C40JF;;A4C10JA;EACE,gBAAA;A5C60JF;;A4C30JA;EACE,gBAAA;A5C80JF;;A4C50JA;;EAEE,gBAAA;A5C+0JF;;A4C70JA;;EAEE,gBAAA;A5Cg1JF;;A4C90JA;EACE,gBAAA;A5Ci1JF;;A4C/0JA;EACE,gBAAA;A5Ck1JF;;A4Ch1JA;EACE,gBAAA;A5Cm1JF;;A4Cj1JA;EACE,gBAAA;A5Co1JF;;A4Cl1JA;EACE,gBAAA;A5Cq1JF;;A4Cn1JA;EACE,gBAAA;A5Cs1JF;;A4Cp1JA;EACE,gBAAA;A5Cu1JF;;A4Cr1JA;EACE,gBAAA;A5Cw1JF;;A4Ct1JA;EACE,gBAAA;A5Cy1JF;;A4Cv1JA;EACE,gBAAA;A5C01JF;;A4Cx1JA;EACE,gBAAA;A5C21JF;;A4Cz1JA;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,sBAAA;EACA,SAAA;A5C41JF;;A4C11JA;;EAEE,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;A5C61JF","file":"../../css/admin.css","sourcesContent":["@charset \"UTF-8\";\n#poststuff .llms-metabox:before, #poststuff .llms-metabox:after,\n.llms-form-fields:before,\n.llms-metabox .llms-access-plans:before,\n.llms-collapsible .llms-collapsible-body:before,\n.llms-collapsible .llms-collapsible-header:before,\n.llms-collapsible:before,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n content: \" \";\n display: table;\n}\n#poststuff .llms-metabox:after,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n clear: both;\n}\n\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #466dd8;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #2b55cb;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #6888df;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n#adminmenu .toplevel_page_lifterlms .wp-menu-image img {\n padding-top: 6px;\n width: 20px;\n}\n#adminmenu .toplevel_page_lifterlms a[href*=\"page=llms-add-ons\"],\n#adminmenu .opensub .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a[href*=\"page=llms-add-ons\"] {\n color: #ff922b;\n}\n\n/******************************************************************\n\nGrids for Breakpoints\n\n******************************************************************/\n.last-col {\n float: right;\n padding-right: 0 !important;\n}\n\n.last-col:after {\n clear: both;\n}\n\n/*\nMobile Grid Styles\nThese are the widths for the mobile grid.\nThere are four types, but you can add or customize\nthem however you see fit.\n*/\n@media (max-width: 767px) {\n .m-all {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .m-1of2 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 50%;\n }\n .m-1of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 33.33%;\n }\n .m-2of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 66.66%;\n }\n .m-1of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 25%;\n }\n .m-3of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 75%;\n }\n .m-right {\n text-align: center;\n }\n .m-center {\n text-align: center;\n }\n .m-left {\n text-align: center;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Portrait tablet to landscape */\n@media (min-width: 768px) and (max-width: 1029px) {\n .t-all {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .t-1of2 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 50%;\n }\n .t-1of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 33.33%;\n }\n .t-2of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 66.66%;\n }\n .t-1of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 25%;\n }\n .t-3of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 75%;\n }\n .t-1of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 20%;\n }\n .t-2of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 40%;\n }\n .t-3of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 60%;\n }\n .t-4of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 80%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Landscape to small desktop */\n@media (min-width: 1030px) {\n .d-all {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .d-1of2 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 50%;\n }\n .d-1of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 33.33%;\n }\n .d-2of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 66.66%;\n }\n .d-1of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 25%;\n }\n .d-3of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 75%;\n }\n .d-1of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 20%;\n }\n .d-2of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 40%;\n }\n .d-3of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 60%;\n }\n .d-4of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 80%;\n }\n .d-1of6 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 16.6666666667%;\n }\n .d-1of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 14.2857142857%;\n }\n .d-2of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 28.5714286%;\n }\n .d-3of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 42.8571429%;\n }\n .d-4of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 57.1428572%;\n }\n .d-5of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 71.4285715%;\n }\n .d-6of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 85.7142857%;\n }\n .d-1of8 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 12.5%;\n }\n .d-1of9 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 11.1111111111%;\n }\n .d-1of10 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 10%;\n }\n .d-1of11 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 9.0909090909%;\n }\n .d-1of12 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 8.33%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/******************************************************************\n\nForm Styles\n\n******************************************************************/\n#llms-form-wrapper .llms-search-form-wrapper {\n border-bottom: 1px solid #999;\n margin: 20px 0;\n}\n#llms-form-wrapper #llms_analytics_search {\n border: none !important;\n text-shadow: none !important;\n border: none !important;\n outline: none !important;\n box-shadow: none !important;\n margin: 0 !important;\n color: #fefefe !important;\n background: #466dd8 !important;\n border-radius: 0;\n transition: 0.5s;\n}\n#llms-form-wrapper #llms_analytics_search:hover {\n background: #0185a3 !important;\n}\n#llms-form-wrapper #llms_analytics_search:active {\n background: #33b1cb !important;\n}\n\n#llms-skip-setup-form .llms-admin-link {\n background: none !important;\n border: none;\n padding: 0 !important;\n color: #0074a2;\n cursor: pointer;\n}\n#llms-skip-setup-form .llms-admin-link:hover {\n color: #2ea2cc;\n}\n#llms-skip-setup-form .llms-admin-link:focus {\n color: #124964;\n}\n\n/**\n * Toggle Switch ( replaces checkbox on admin panels )\n */\n.llms-switch {\n position: relative;\n}\n.llms-switch .llms-toggle {\n position: absolute;\n margin-left: -9999px;\n visibility: hidden;\n}\n.llms-switch .llms-toggle + label {\n box-sizing: border-box;\n display: block;\n position: relative;\n cursor: pointer;\n outline: none;\n user-select: none;\n}\n.llms-switch input.llms-toggle-round + label {\n border: 2px solid #6c7781;\n border-radius: 10px;\n height: 20px;\n width: 36px;\n}\n.llms-switch input.llms-toggle-round + label:before,\n.llms-switch input.llms-toggle-round + label:after {\n box-sizing: border-box;\n content: \"\";\n display: block;\n position: absolute;\n transition: background 0.4s;\n}\n.llms-switch input.llms-toggle-round:checked + label {\n border-color: #11a0d2;\n background-color: #11a0d2;\n}\n.llms-switch input.llms-toggle-round + label:after {\n height: 12px;\n left: 2px;\n top: 2px;\n background-color: #6c7781;\n border-radius: 50%;\n transition: margin 0.4s;\n width: 12px;\n z-index: 3;\n}\n.llms-switch input.llms-toggle-round:checked + label:after {\n background-color: #fefefe;\n margin-left: 16px;\n}\n.llms-switch input.llms-toggle-round + label:before {\n height: 8px;\n top: 4px;\n border: 1px solid #6c7781;\n border-radius: 50%;\n right: 4px;\n width: 8px;\n z-index: 2;\n}\n.llms-switch input.llms-toggle-round:checked + label:before {\n border-color: #fefefe;\n border-radius: 0;\n left: 6px;\n right: auto;\n width: 2px;\n}\n\n#llms-profile-fields {\n margin: 50px 0;\n}\n#llms-profile-fields .llms-form-field {\n padding-left: 0;\n}\n#llms-profile-fields label {\n display: block;\n font-weight: bold;\n padding: 8px 0 2px;\n}\n#llms-profile-fields .type-checkbox .type-checkbox label {\n display: initial;\n font-weight: initial;\n padding: 0;\n}\n#llms-profile-fields .type-checkbox .type-checkbox input {\n display: inline-block;\n margin-bottom: 0;\n width: 1rem;\n}\n#llms-profile-fields select {\n max-width: 100%;\n}\n\na.llms-voucher-delete {\n background: #e5554e;\n color: #fefefe;\n display: block;\n padding: 4px 2px;\n text-decoration: none;\n transition: ease 0.3s all;\n}\na.llms-voucher-delete:hover {\n background: #af3a26;\n}\n\n.llms-voucher-codes-wrapper table,\n.llms-voucher-redemption-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td,\n.llms-voucher-redemption-wrapper table th,\n.llms-voucher-redemption-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead,\n.llms-voucher-redemption-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table thead th,\n.llms-voucher-redemption-wrapper table thead th {\n padding: 10px 10px;\n}\n.llms-voucher-codes-wrapper table tr,\n.llms-voucher-redemption-wrapper table tr {\n counter-increment: row-counter;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even),\n.llms-voucher-redemption-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td,\n.llms-voucher-redemption-wrapper table tr td {\n padding: 5px;\n}\n.llms-voucher-codes-wrapper table tr td:first-child:before,\n.llms-voucher-redemption-wrapper table tr td:first-child:before {\n content: counter(row-counter);\n}\n\n.llms-voucher-codes-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td span {\n display: inline-block;\n min-width: 30px;\n}\n.llms-voucher-codes-wrapper button {\n cursor: pointer;\n}\n.llms-voucher-codes-wrapper .llms-voucher-delete {\n float: right;\n margin-right: 15px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-uses {\n width: 50px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes {\n float: right;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text] {\n width: 30px;\n}\n\n.llms-voucher-export-wrapper .llms-voucher-export-type {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-export-type p {\n margin: 0 0 0 15px;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper {\n width: 100%;\n margin: 25px 0;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text] {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper p {\n margin: 0;\n}\n.llms-voucher-export-wrapper > button {\n float: right;\n}\n\n.postbox .inside {\n overflow: auto;\n}\n\n.llms-widget {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n box-sizing: border-box;\n margin-bottom: 20px;\n padding: 20px;\n position: relative;\n width: 100%;\n}\n.llms-widget.alt {\n border: 1px solid #ccc;\n background-color: #efefef;\n margin-bottom: 10px;\n}\n.llms-widget.alt .llms-label {\n color: #777;\n font-size: 14px;\n margin-bottom: 10px;\n padding-bottom: 5px;\n}\n.llms-widget.alt h2 {\n color: #444;\n font-weight: 300;\n}\n.llms-widget a {\n border-bottom: 1px dotted #466dd8;\n display: inline-block;\n text-decoration: none;\n}\n.llms-widget a:hover {\n border-bottom: 1px dotted #2b55cb;\n}\n.llms-widget .llms-widget-content {\n margin: 0.67em 0;\n color: #466dd8;\n font-size: 2.4em;\n font-weight: 700;\n line-height: 1;\n word-break: break-all;\n}\n.llms-widget h2 {\n font-size: 1.8em;\n}\n.llms-widget .llms-label {\n box-sizing: border-box;\n font-size: 18px;\n font-weight: 400;\n margin: 0 0 10px 0;\n text-align: center;\n}\n.llms-widget .llms-chart {\n width: 100%;\n padding: 10px;\n box-sizing: border-box;\n}\n.llms-widget mark.yes {\n background-color: #7ad03a;\n}\n.llms-widget .llms-subtitle {\n margin-bottom: 0;\n}\n.llms-widget .spinner {\n float: none;\n left: 50%;\n margin: -10px 0 0 -10px;\n position: absolute;\n top: 50%;\n z-index: 2;\n}\n.llms-widget.is-loading:before {\n background: #fefefe;\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0.9;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 1;\n}\n.llms-widget.is-loading .spinner {\n visibility: visible;\n}\n.llms-widget td[colspan=\"2\"] {\n padding-left: 0;\n}\n.llms-widget tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n\n.llms-widget-1-3,\n.llms-widget-1-4,\n.llms-widget-1-5 {\n text-align: center;\n}\n\n.llms-widget .llms-widget-info-toggle {\n color: #AAA;\n cursor: pointer;\n font-size: 16px;\n position: absolute;\n right: 20px;\n top: 20px;\n}\n.llms-widget.info-showing .llms-widget-info {\n display: block;\n}\n\n.llms-widget-info {\n background: #444;\n color: #fefefe;\n bottom: -50px;\n display: none;\n padding: 15px;\n position: absolute;\n text-align: center;\n left: 10px;\n right: 15px;\n z-index: 3;\n}\n.llms-widget-info:before {\n content: \"\";\n border: 12px solid transparent;\n border-bottom-color: #444;\n left: 50%;\n margin-left: -12px;\n position: absolute;\n top: -24px;\n}\n.llms-widget-info p {\n margin: 0;\n}\n\n.llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n}\n.llms-widget-row:after {\n clear: both;\n}\n\n.llms-widget-row .no-padding {\n padding: 0 !important;\n}\n\n/******************************************************************\n\nSVG Styles\n\n******************************************************************/\nsvg.icon {\n height: 24px;\n width: 24px;\n display: inline-block;\n fill: currentColor;\n vertical-align: baseline;\n}\nbutton svg.icon {\n height: 18px;\n width: 18px;\n margin: 4px -4px 0 4px;\n filter: drop-shadow(0 1px #eee);\n float: right;\n}\nsvg.icon.menu-icon {\n height: 20px;\n width: 20px;\n display: inline-block;\n fill: currentColor;\n vertical-align: text-bottom;\n margin-right: 10px;\n}\nsvg.icon.tree-icon {\n height: 13px;\n width: 13px;\n vertical-align: middle;\n}\nsvg.icon.section-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon-attr {\n height: 10px;\n width: 10px;\n vertical-align: middle;\n}\nsvg.icon.list-icon {\n height: 12px;\n width: 12px;\n vertical-align: middle;\n}\nsvg.icon.list-icon.on {\n color: #466dd8;\n}\nsvg.icon.list-icon.off {\n color: #444;\n}\nsvg.icon.detail-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n cursor: default;\n}\nsvg.icon.detail-icon.on {\n color: #466dd8;\n}\nsvg.icon.detail-icon.off {\n color: #ccc;\n}\nsvg.icon-ion-arrow-up {\n transform: rotate(90deg);\n}\nsvg use {\n pointer-events: none;\n}\n\n/******************************************************************\n\nMetabox Tabs\n\n******************************************************************/\n#side-sortables .tab-content {\n padding: 0;\n}\n\n.llms-mb-container .tab-content {\n display: none;\n background-color: #FFF;\n padding: 0 20px;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) {\n margin: 0 0 15px 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li {\n padding: 20px 0;\n margin: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.select:not([class*=d-]) {\n width: 100%;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li:last-child {\n border: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.top {\n border-bottom: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content .full-width {\n width: 100%;\n}\n.llms-mb-container .tab-content #wp-content-editor-tools {\n background: none;\n}\n\n.llms-mb-container .tab-content.llms-active {\n display: inherit;\n}\n\n.llms-mb-container .tab-content .no-border {\n border-bottom: 0px;\n}\n\n/******************************************************************\n\nStyles for topModal modal\n\n******************************************************************/\n/**\n * Base modal styles\n */\n.topModal {\n display: none;\n position: relative;\n border: 4px solid #808080;\n background: #fff;\n z-index: 1000001;\n padding: 2px;\n max-width: 500px;\n margin: 34px auto 0;\n box-sizing: border-box;\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-color: #ffffff;\n border-radius: 2px;\n border: 1px solid #dddddd;\n}\n\n.topModalClose {\n float: right;\n cursor: pointer;\n margin-right: 10px;\n margin-top: 10px;\n}\n\n.topModalContainer {\n display: none;\n overflow: auto;\n overflow-y: hidden;\n position: fixed;\n top: 0 !important;\n right: 0;\n bottom: 0;\n left: 0;\n -webkit-overflow-scrolling: touch;\n width: auto !important;\n margin-left: 0 !important;\n background-color: transparent !important;\n z-index: 100002 !important;\n}\n\n.topModalBackground {\n display: none;\n background: #000;\n position: fixed;\n height: 100%;\n width: 100%;\n top: 0 !important;\n left: 0;\n margin-left: 0 !important;\n z-index: 100002 !important;\n box-sizing: border-box;\n overflow: auto;\n overflow-y: hidden;\n}\n\nbody.modal-open {\n overflow: hidden;\n}\n\n.llms-modal-header {\n border-top-right-radius: 1px;\n border-top-left-radius: 1px;\n background: #466dd8;\n color: #eeeeee;\n padding: 10px 15px;\n font-size: 18px;\n}\n\n#llms-icon-modal-close {\n width: 16px;\n height: 16px;\n fill: #fefefe;\n}\n\n.llms-modal-content {\n padding: 20px;\n}\n.llms-modal-content h3 {\n margin-top: 0;\n}\n\n/**\n * Custom Modal Styles for LifterLMS\n */\n.llms-modal-form h1 {\n margin-top: 0;\n}\n.llms-modal-form input[type=text] {\n width: 100%;\n}\n.llms-modal-form textarea,\n.llms-modal-form input[type=text],\n.llms-modal-form input[type=password],\n.llms-modal-form input[type=file],\n.llms-modal-form input[type=datetime],\n.llms-modal-form input[type=datetime-local],\n.llms-modal-form input[type=date],\n.llms-modal-form input[type=month],\n.llms-modal-form input[type=time],\n.llms-modal-form input[type=week],\n.llms-modal-form input[type=number],\n.llms-modal-form input[type=email],\n.llms-modal-form input[type=url],\n.llms-modal-form input[type=search],\n.llms-modal-form input[type=tel],\n.llms-modal-form input[type=color] {\n padding: 0 0.4em 0 0.4em;\n margin-bottom: 2em;\n vertical-align: middle;\n border-radius: 3px;\n min-width: 50px;\n max-width: 635px;\n width: 100%;\n min-height: 32px;\n background-color: #fff;\n border: 1px solid #ccc;\n margin: 0 0 24px 0;\n outline: none;\n transition: border 0.3s ease-in-out 0s;\n}\n.llms-modal-form textarea:focus,\n.llms-modal-form input[type=text]:focus,\n.llms-modal-form input[type=password]:focus,\n.llms-modal-form input[type=file]:focus,\n.llms-modal-form input[type=datetime]:focus,\n.llms-modal-form input[type=datetime-local]:focus,\n.llms-modal-form input[type=date]:focus,\n.llms-modal-form input[type=month]:focus,\n.llms-modal-form input[type=time]:focus,\n.llms-modal-form input[type=week]:focus,\n.llms-modal-form input[type=number]:focus,\n.llms-modal-form input[type=email]:focus,\n.llms-modal-form input[type=url]:focus,\n.llms-modal-form input[type=search]:focus,\n.llms-modal-form input[type=tel]:focus,\n.llms-modal-form input[type=color]:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form textarea {\n padding: 0.4em !important;\n height: 100px !important;\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n outline: none;\n box-sizing: border-box;\n}\n.llms-modal-form textarea:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single {\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n border: 1px solid #ccc;\n width: 100%;\n background: #fefefe !important;\n outline: none;\n box-sizing: border-box;\n box-shadow: 0 0 0 #fff;\n line-height: 32px;\n margin: 0 0 24px 0;\n}\n.llms-modal-form .chosen-container-single .chosen-single:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single div b {\n margin-top: 4px;\n}\n.llms-modal-form .chosen-search input[type=text] {\n border: 1px solid #ccc;\n}\n.llms-modal-form .chosen-search input[type=text]:focus {\n background-color: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-drop {\n margin-top: -28px;\n}\n.llms-modal-form .llms-button-primary, .llms-modal-form .llms-button-secondary {\n padding: 10px 10px;\n border-radius: 0;\n transition: 0.5s;\n box-shadow: 0 1px 1px #ccc;\n}\n.llms-modal-form .llms-button-primary.full, .llms-modal-form .llms-button-secondary.full {\n width: 100%;\n}\n\n.modal-open .select2-dropdown {\n z-index: 1000005;\n}\n\n.button.llms-merge-code-button {\n vertical-align: middle;\n}\n.button.llms-merge-code-button svg {\n margin-right: 2px;\n position: relative;\n top: 4px;\n width: 16px;\n}\n.button.llms-merge-code-button svg g {\n fill: currentColor;\n}\n\n.llms-mb-container .llms-merge-code-wrapper {\n float: right;\n top: -5px;\n}\n\n.llms-merge-code-wrapper {\n display: inline;\n position: relative;\n}\n\n.llms-merge-codes {\n background: #f7f7f7;\n border: 1px solid #ccc;\n border-radius: 3px;\n box-shadow: 0 1px 0 #ccc;\n color: #555;\n display: none;\n left: 1px;\n overflow: hidden;\n position: absolute;\n top: 30px;\n width: 200px;\n}\n.llms-merge-codes ul {\n margin: 0;\n padding: 0;\n}\n.llms-merge-codes li {\n cursor: pointer;\n margin: 0;\n padding: 4px 8px !important;\n border-bottom: 1px solid #ccc;\n}\n.llms-merge-codes li:hover {\n color: #23282d;\n background: #fefefe;\n}\n.llms-merge-codes.active {\n display: block;\n z-index: 777;\n}\n\n/******************************************************************\n\nBase Mobile\n\n******************************************************************/\n.llms-nav-tab,\n.llms-nav-tab-filters {\n display: block;\n width: 100%;\n}\n\nform.llms-nav-tab-filters.full-width {\n width: 100%;\n}\nform.llms-nav-tab-filters.full-width label {\n display: inline-block;\n width: 10%;\n text-align: left;\n}\nform.llms-nav-tab-filters.full-width .select2-container {\n width: 85% !important;\n}\n\n.llms-nav-tab-settings {\n display: block;\n width: 100%;\n}\n\n#llms-form-wrapper .llms-select {\n width: 100%;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-checkbox {\n display: inline-block;\n width: 100%;\n text-align: left;\n}\n#llms-form-wrapper .llms-filter-options {\n width: 100%;\n}\n#llms-form-wrapper .llms-date-select {\n width: 100%;\n display: inline-block;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-date-select input[type=text] {\n width: 100%;\n}\nul.tabs li {\n display: block;\n}\n\n@media only screen and (min-width: 481px) {\n /******************************************************************\n\n Larger Phones\n\n ******************************************************************/\n #llms-form-wrapper .llms-checkbox {\n width: 33%;\n }\n}\n@media only screen and (min-width: 768px) {\n /******************************************************************\n\n Tablets and small computers\n\n ******************************************************************/\n ul.tabs li {\n display: inline-block;\n }\n .llms-nav-tab {\n display: inline-block;\n width: 33%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-filter-options {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget input[type=text],\n.llms-widget input[type=password],\n.llms-widget input[type=datetime],\n.llms-widget input[type=datetime-local],\n.llms-widget input[type=date],\n.llms-widget input[type=month],\n.llms-widget input[type=time],\n.llms-widget input[type=week],\n.llms-widget input[type=number],\n.llms-widget input[type=email],\n.llms-widget input[type=url],\n.llms-widget input[type=search],\n.llms-widget input[type=tel],\n.llms-widget input[type=color],\n.llms-widget select,\n.llms-widget textarea {\n width: 50%;\n }\n .llms-widget input[type=text].medium,\n.llms-widget input[type=password].medium,\n.llms-widget input[type=datetime].medium,\n.llms-widget input[type=datetime-local].medium,\n.llms-widget input[type=date].medium,\n.llms-widget input[type=month].medium,\n.llms-widget input[type=time].medium,\n.llms-widget input[type=week].medium,\n.llms-widget input[type=number].medium,\n.llms-widget input[type=email].medium,\n.llms-widget input[type=url].medium,\n.llms-widget input[type=search].medium,\n.llms-widget input[type=tel].medium,\n.llms-widget input[type=color].medium,\n.llms-widget select.medium,\n.llms-widget textarea.medium {\n width: 30%;\n }\n .llms-widget input[type=text].small,\n.llms-widget input[type=password].small,\n.llms-widget input[type=datetime].small,\n.llms-widget input[type=datetime-local].small,\n.llms-widget input[type=date].small,\n.llms-widget input[type=month].small,\n.llms-widget input[type=time].small,\n.llms-widget input[type=week].small,\n.llms-widget input[type=number].small,\n.llms-widget input[type=email].small,\n.llms-widget input[type=url].small,\n.llms-widget input[type=search].small,\n.llms-widget input[type=tel].small,\n.llms-widget input[type=color].small,\n.llms-widget select.small,\n.llms-widget textarea.small {\n width: 20%;\n }\n .llms-widget input[type=text].tiny,\n.llms-widget input[type=password].tiny,\n.llms-widget input[type=datetime].tiny,\n.llms-widget input[type=datetime-local].tiny,\n.llms-widget input[type=date].tiny,\n.llms-widget input[type=month].tiny,\n.llms-widget input[type=time].tiny,\n.llms-widget input[type=week].tiny,\n.llms-widget input[type=number].tiny,\n.llms-widget input[type=email].tiny,\n.llms-widget input[type=url].tiny,\n.llms-widget input[type=search].tiny,\n.llms-widget input[type=tel].tiny,\n.llms-widget input[type=color].tiny,\n.llms-widget select.tiny,\n.llms-widget textarea.tiny {\n width: 10%;\n }\n}\n@media only screen and (min-width: 1030px) {\n /******************************************************************\n\n Desktop Stylesheet\n\n ******************************************************************/\n .llms-nav-tab {\n display: inline-block;\n width: 33.333%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-select:first-child {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-filter-options.date-filter {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options .llms-date-select {\n margin-bottom: 0;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n }\n .llms-widget-row:after {\n clear: both;\n }\n .llms-widget-row .llms-widget-1-5 {\n vertical-align: top;\n width: 20%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-4 {\n vertical-align: top;\n width: 25%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-3 {\n width: 33.3%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-2 {\n width: 50%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n vertical-align: top;\n }\n}\n@media only screen and (min-width: 1240px) {\n /******************************************************************\n\n large Monitor Stylesheet\n\n ******************************************************************/\n .llms-nav-tab-filters,\n.llms-nav-tab-settings {\n float: left;\n width: 12.5%;\n }\n}\n.wrap.lifterlms {\n margin-top: 0;\n}\n\n.llms-header {\n background-color: #FFF;\n margin: 0 0 0 -20px;\n padding: 20px 10px;\n position: relative;\n z-index: 1;\n}\n.llms-header .llms-inside-wrap {\n display: flex;\n padding: 0 10px;\n}\n.llms-header .lifterlms-logo {\n flex: 0 0 190px;\n max-height: 52px;\n margin-right: 10px;\n}\n.llms-header .llms-meta {\n align-self: center;\n display: flex;\n flex: 1;\n font-size: 16px;\n justify-content: space-between;\n line-height: 1.5;\n}\n.llms-header .llms-meta .llms-version {\n background-color: #1d2327;\n color: #FFF;\n border-radius: 999px;\n font-size: 13px;\n font-weight: 700;\n padding: 6px 12px;\n}\n.llms-header .llms-meta a {\n display: inline-block;\n}\n.llms-header .llms-meta .llms-license {\n border-right: 1px solid #CCC;\n font-weight: 700;\n margin-right: 12px;\n padding-right: 12px;\n}\n.llms-header .llms-meta .llms-license a {\n text-decoration: none;\n}\n.llms-header .llms-meta .llms-license a:before {\n content: \"\\f534\";\n display: inline-block;\n font: 400 16px/1 dashicons;\n left: 0;\n padding-right: 3px;\n position: relative;\n text-decoration: none;\n vertical-align: text-bottom;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none {\n color: #888;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none:before {\n content: \"\\f335\";\n}\n.llms-header .llms-meta .llms-license a.llms-license-active {\n color: #008a20;\n}\n.llms-header .llms-meta .llms-license a.llms-license-active:before {\n content: \"\\f112\";\n}\n.llms-header .llms-meta .llms-support {\n font-weight: 700;\n}\n.llms-header .llms-meta .llms-support a {\n color: #1d2327;\n text-decoration: none;\n}\n\n.llms-subheader {\n align-items: center;\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n display: flex;\n flex-direction: row;\n margin-left: -20px;\n padding: 10px 20px;\n width: 100%;\n z-index: 1;\n}\n.llms-subheader h1 {\n font-weight: 700;\n padding: 0;\n}\n.llms-subheader h1 a {\n color: inherit;\n text-decoration: none;\n}\n\n#post_course_difficulty {\n min-width: 200px;\n}\n\n#_video-embed, #_audio-embed {\n width: 100%;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\nhr {\n background-color: #CCC;\n border: none;\n height: 1px;\n margin: 30px 0;\n padding: 0;\n}\n\n.llms_certificate_default_image, .llms_certificate_image {\n width: 300px;\n}\n\n.llms_achievement_default_image, .llms_achievement_image {\n width: 120px;\n}\n\ndiv[id^=lifterlms-] .inside {\n overflow: visible;\n}\n\n.notice.llms-admin-notice {\n background-color: #FFF;\n border: 1px solid #ccd0d4;\n box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);\n display: flex;\n padding: 0 !important;\n position: relative;\n}\n.notice.llms-admin-notice .notice-dismiss {\n text-decoration: none;\n}\n.notice.llms-admin-notice.notice-warning {\n border-left: 4px solid #F8954F;\n}\n.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon {\n background-color: #FEF4ED;\n}\n.notice.llms-admin-notice.notice-info {\n border-left: 4px solid #466DD8;\n}\n.notice.llms-admin-notice.notice-info h3 {\n color: #466DD8;\n}\n.notice.llms-admin-notice.notice-info .llms-admin-notice-icon {\n background-color: #EDF0FB;\n}\n.notice.llms-admin-notice.notice-success {\n border-left: 4px solid #18A957;\n}\n.notice.llms-admin-notice.notice-success h3 {\n color: #18A957;\n}\n.notice.llms-admin-notice.notice-success .llms-admin-notice-icon {\n background-color: #E8F6EE;\n}\n.notice.llms-admin-notice.notice-error {\n border-left: 4px solid #DF1642;\n}\n.notice.llms-admin-notice.notice-error h3 {\n color: #9C0F2E;\n}\n.notice.llms-admin-notice.notice-error .llms-admin-notice-icon {\n background-color: #FCE8EC;\n}\n.notice.llms-admin-notice .llms-admin-notice-icon {\n background-image: url(../../assets/images/lifterlms-icon-color.png);\n background-position: center center;\n background-repeat: no-repeat;\n background-size: 30px;\n min-width: 70px;\n}\n.notice.llms-admin-notice .llms-admin-notice-content {\n color: #111;\n padding: 20px;\n}\n.notice.llms-admin-notice h3 {\n font-size: 18px;\n font-weight: 700;\n line-height: 25px;\n margin: 0 0 15px 0;\n}\n.notice.llms-admin-notice button,\n.notice.llms-admin-notice .llms-button-primary {\n display: inline-block;\n}\n.notice.llms-admin-notice p {\n font-size: 14px;\n line-height: 22px;\n margin: 0 0 15px 0;\n max-width: 65em;\n padding: 0;\n}\n.notice.llms-admin-notice p:last-of-type {\n margin-bottom: 0;\n}\n\n.llms-button-action.small .dashicons,\n.llms-button-danger.small .dashicons,\n.llms-button-primary.small .dashicons,\n.llms-button-secondary.small .dashicons {\n font-size: 13px;\n height: 13px;\n width: 13px;\n}\n.llms-button-action:hover,\n.llms-button-danger:hover,\n.llms-button-primary:hover,\n.llms-button-secondary:hover {\n box-shadow: none;\n}\n\na.llms-view-as {\n line-height: 2;\n margin-right: 8px;\n}\n\n.llms-image-field-preview {\n max-height: 80px;\n vertical-align: middle;\n width: auto;\n}\n\n.llms-image-field-remove.hidden {\n display: none;\n}\n\n.llms-log-viewer {\n background: #fff;\n border: 1px solid #e5e5e5;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n margin: 20px 0;\n padding: 25px;\n}\n.llms-log-viewer pre {\n font-family: monospace;\n margin: 0;\n padding: 0;\n white-space: pre-wrap;\n}\n\n.llms-status--tools .llms-table {\n background: #fff;\n border: 1px solid #e5e5e5;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n}\n.llms-status--tools .llms-table td, .llms-status--tools .llms-table th {\n padding: 10px;\n vertical-align: top;\n}\n.llms-status--tools .llms-table th {\n width: 28%;\n}\n.llms-status--tools .llms-table p {\n margin: 0 0 10px;\n}\n\n.llms-error {\n color: #e5554e;\n font-style: italic;\n}\n\n.llms-rating-stars {\n color: #ffb900;\n text-decoration: none;\n}\n\n@media screen and (max-width: 782px) {\n .llms-header {\n top: 46px;\n }\n .llms-header .llms-inside-wrap {\n flex-direction: column;\n gap: 20px;\n }\n .llms-header .llms-inside-wrap .lifterlms-logo {\n align-self: center;\n flex: inherit;\n max-height: initial;\n max-width: 200px;\n }\n .llms-header .llms-inside-wrap .llms-meta {\n column-gap: 10px;\n }\n}\n.llms-table-wrap {\n position: relative;\n}\n\n.llms-table-header {\n padding: 0;\n}\n.llms-table-header:before, .llms-table-header:after {\n content: \" \";\n display: table;\n}\n.llms-table-header:after {\n clear: both;\n}\n.llms-table-header h2 {\n font-size: 20px;\n padding: 0;\n display: inline-block;\n line-height: 1.5;\n margin: 0 0 20px 0;\n vertical-align: middle;\n}\n.llms-table-header .llms-table-search,\n.llms-table-header .llms-table-filters {\n float: right;\n padding-left: 10px;\n}\n.llms-table-header .llms-table-search input {\n margin: 0;\n padding: 0 8px;\n}\n\n.llms-table {\n border: 1px solid #c3c4c7;\n border-collapse: collapse;\n width: 100%;\n}\n.llms-table a:not(.small) {\n color: #466dd8;\n}\n.llms-table a:not(.small):hover {\n color: #2b55cb;\n}\n.llms-table td, .llms-table th {\n border-bottom: 1px solid #c3c4c7;\n padding: 10px 12px;\n text-align: center;\n}\n.llms-table td.expandable.closed, .llms-table th.expandable.closed {\n display: none;\n}\n.llms-table td .llms-button-primary,\n.llms-table td .llms-button-secondary,\n.llms-table td .llms-button-action,\n.llms-table td .llms-button-danger, .llms-table th .llms-button-primary,\n.llms-table th .llms-button-secondary,\n.llms-table th .llms-button-action,\n.llms-table th .llms-button-danger {\n display: inline-block;\n}\n.llms-table tr.llms-quiz-pending td {\n font-weight: 700;\n}\n.llms-table thead th,\n.llms-table tfoot th {\n background-color: #FFF;\n font-weight: 700;\n}\n.llms-table thead th a.llms-sortable,\n.llms-table tfoot th a.llms-sortable {\n padding-right: 16px;\n position: relative;\n text-decoration: none;\n width: 100%;\n}\n.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable .dashicons,\n.llms-table tfoot th a.llms-sortable .dashicons {\n color: #444;\n font-size: 16px;\n height: 16px;\n opacity: 0;\n position: absolute;\n width: 16px;\n}\n.llms-table tfoot th {\n border-bottom: none;\n}\n.llms-table tfoot th .llms-table-export {\n float: left;\n}\n.llms-table tfoot th .llms-table-export .llms-table-progress {\n background: #efefef;\n display: none;\n margin-left: 8px;\n vertical-align: middle;\n width: 100px;\n}\n.llms-table tfoot th .llms-table-pagination {\n float: right;\n}\n.llms-table.zebra tbody tr:nth-child(even) th, .llms-table.zebra tbody tr:nth-child(even) td {\n background-color: #fff;\n}\n.llms-table.zebra tbody tr:nth-child(odd) th, .llms-table.zebra tbody tr:nth-child(odd) td {\n background-color: #f6f7f7;\n}\n.llms-table.text-left td, .llms-table.text-left th {\n text-align: left;\n}\n.llms-table.size-large td, .llms-table.size-large th {\n font-size: 14px;\n padding: 10px 12px;\n}\n.llms-table .llms-drag-handle {\n color: #777;\n cursor: pointer;\n -webkit-transition: color 0.4s ease;\n transition: color 0.4s ease;\n}\n.llms-table .llms-action-icon {\n color: #777;\n text-decoration: none;\n}\n.llms-table .llms-action-icon .tooltip {\n cursor: pointer;\n}\n.llms-table .llms-action-icon:hover {\n color: #466dd8;\n}\n.llms-table .llms-action-icon.danger:hover {\n color: #e5554e;\n}\n.llms-table .llms-table-page-count {\n font-size: 12px;\n padding: 0 5px;\n}\n\n.llms-table-progress {\n text-align: center;\n}\n.llms-table-progress .llms-table-progress-bar {\n background: #eee;\n border-radius: 10px;\n height: 16px;\n overflow: hidden;\n position: relative;\n}\n.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner {\n background: #466dd8;\n height: 100%;\n transition: width 0.2s ease;\n}\n.llms-table-progress .llms-table-progress-text {\n color: #466dd8;\n font-size: 12px;\n font-weight: 700;\n line-height: 16px;\n}\n\n.llms-table.llms-gateway-table .status .fa,\n.llms-table.llms-integrations-table .status .fa {\n color: #466dd8;\n font-size: 22px;\n}\n.llms-table.llms-gateway-table .sort,\n.llms-table.llms-integrations-table .sort {\n cursor: move;\n text-align: center;\n width: 10px;\n}\n\n.llms-gb-table-notifications th, .llms-gb-table-notifications td {\n text-align: left;\n}\n\n.llms-order-note .llms-order-note-content {\n background: #efefef;\n margin-bottom: 10px;\n padding: 10px;\n position: relative;\n}\n.llms-order-note .llms-order-note-content:after {\n border-style: solid;\n border-color: #efefef transparent;\n border-width: 10px 10px 0 0;\n bottom: -10px;\n content: \"\";\n display: block;\n height: 0;\n left: 20px;\n position: absolute;\n width: 0;\n}\n.llms-order-note .llms-order-note-content p {\n font-size: 13px;\n margin: 0;\n line-height: 1.5;\n}\n.llms-order-note .llms-order-note-meta {\n color: #999;\n font-size: 11px;\n margin-left: 10px;\n}\n\n.llms-mb-list label {\n font-size: 15px;\n font-weight: 700;\n line-height: 1.5;\n display: block;\n width: 100%;\n}\n.llms-mb-list .description {\n margin-bottom: 8px;\n}\n.llms-mb-list .input-full {\n width: 100%;\n}\n\n#poststuff .llms-metabox h2, #poststuff .llms-metabox h3, #poststuff .llms-metabox h6 {\n margin: 0;\n padding: 0;\n}\n#poststuff .llms-metabox h2 {\n font-size: 18px;\n font-weight: 700;\n}\n#poststuff .llms-metabox h3 {\n color: #777;\n font-size: 16px;\n}\n#poststuff .llms-metabox h4 {\n border-bottom: 1px solid #e5e5e5;\n padding: 0;\n margin: 0;\n}\n#poststuff .llms-metabox .llms-transaction-test-mode {\n background: #ffffd7;\n font-style: italic;\n left: 0;\n padding: 2px;\n position: absolute;\n right: 0;\n top: 0;\n text-align: center;\n}\n#poststuff .llms-metabox a.llms-editable,\n#poststuff .llms-metabox .llms-metabox-icon,\n#poststuff .llms-metabox button.llms-editable {\n color: #999;\n text-decoration: none;\n}\n#poststuff .llms-metabox a.llms-editable:hover,\n#poststuff .llms-metabox .llms-metabox-icon:hover,\n#poststuff .llms-metabox button.llms-editable:hover {\n color: #466dd8;\n}\n#poststuff .llms-metabox button.llms-editable {\n border: none;\n background: none;\n cursor: pointer;\n padding: 0;\n vertical-align: top;\n}\n#poststuff .llms-metabox h4 button.llms-editable {\n float: right;\n}\n#poststuff .llms-metabox .llms-table {\n margin-top: 10px;\n}\n\n.llms-metabox-section {\n background: #fff;\n margin-top: 25px;\n position: relative;\n}\n.llms-metabox-section.no-top-margin {\n margin-top: 0;\n}\n.llms-metabox-section .llms-metabox-field {\n margin: 15px 0;\n position: relative;\n}\n.llms-metabox-section .llms-metabox-field label {\n color: #777;\n display: block;\n margin-bottom: 5px;\n font-weight: 500;\n vertical-align: baseline;\n}\n.llms-metabox-section .llms-metabox-field select,\n.llms-metabox-section .llms-metabox-field textarea,\n.llms-metabox-section .llms-metabox-field input[type=text],\n.llms-metabox-section .llms-metabox-field input[type=number] {\n width: 100%;\n}\n.llms-metabox-section .llms-metabox-field input.md-text {\n width: 105px;\n}\n.llms-metabox-section .llms-metabox-field input.sm-text {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input {\n width: 95px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field em {\n font-style: normal;\n padding: 0 3px;\n}\n\n.llms-collapsible {\n border: 1px solid #e5e5e5;\n position: relative;\n margin-top: 0;\n margin-bottom: -1px;\n}\n.llms-collapsible:last-child {\n margin-bottom: 0;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down {\n display: none;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header {\n padding: 10px;\n}\n.llms-collapsible .llms-collapsible-header h3 {\n color: #777;\n margin: 0;\n font-size: 16px;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: none;\n}\n.llms-collapsible .llms-collapsible-header a {\n text-decoration: none;\n}\n.llms-collapsible .llms-collapsible-header .dashicons {\n color: #777;\n cursor: pointer;\n transition: color 0.4s ease;\n}\n.llms-collapsible .llms-collapsible-header .dashicons:hover {\n color: #466dd8;\n}\n.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover {\n color: #e5554e;\n}\n.llms-collapsible .llms-collapsible-body {\n display: none;\n padding: 10px;\n}\n\n._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove {\n display: none;\n}\n._llms_instructors_data.repeater .llms-mb-list {\n padding: 0 5px !important;\n}\n\n.post-type-llms_order #post-body-content {\n display: none;\n}\n\n#lifterlms-order-details .handlediv,\n#lifterlms-order-details .handlediv.button-link,\n#lifterlms-order-details .postbox-header {\n display: none;\n}\n#lifterlms-order-details .inside {\n padding: 20px;\n margin-top: 0;\n}\n\n.llms-table tbody tr.llms-txn-failed td {\n background-color: rgba(229, 85, 78, 0.5);\n border-bottom-color: rgba(229, 85, 78, 0.5);\n}\n\n.llms-table tbody tr.llms-txn-refunded td {\n background-color: rgba(255, 165, 0, 0.5);\n border-bottom-color: rgba(255, 165, 0, 0.5);\n}\n\n.llms-txn-refund-form .llms-metabox-section,\n.llms-manual-txn-form .llms-metabox-section {\n margin-top: 0;\n}\n.llms-txn-refund-form .llms-metabox-field,\n.llms-manual-txn-form .llms-metabox-field {\n text-align: right;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=number],\n.llms-manual-txn-form .llms-metabox-field input[type=number] {\n max-width: 100px;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=text],\n.llms-manual-txn-form .llms-metabox-field input[type=text] {\n max-width: 340px;\n}\n\n.llms-manual-txn-form {\n background-color: #eaeaea;\n}\n.llms-manual-txn-form .llms-metabox-section {\n background-color: #eaeaea;\n}\n\n#llms-remaining-edit {\n display: none;\n}\n\n.llms-remaining-edit--content label, .llms-remaining-edit--content span, .llms-remaining-edit--content textarea {\n display: block;\n}\n.llms-remaining-edit--content label {\n margin-bottom: 20px;\n}\n.llms-remaining-edit--content textarea, .llms-remaining-edit--content input {\n width: 100%;\n}\n\n.submitbox .llms-mb-section,\n.llms-award-engagement-submitbox .llms-mb-list {\n margin-bottom: 12px;\n}\n.submitbox .llms-mb-section:last-of-type,\n.llms-award-engagement-submitbox .llms-mb-list:last-of-type {\n margin-bottom: 0;\n}\n.sync-action:before, .submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n font: normal 20px/1 dashicons;\n speak: never;\n display: inline-block;\n margin-left: -1px;\n padding-right: 3px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: relative;\n top: -1px;\n color: #8c8f94;\n}\nbody:not(.admin-color-fresh) .sync-action:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n color: currentColor;\n}\n\n.submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n content: \"\\f110\";\n}\n.sync-action:before {\n content: \"\\f113\";\n color: white;\n}\n\n.submitbox .llms-mb-section.post_author_override label,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label {\n display: inline-block;\n width: auto;\n}\n\n.llms-metabox #llms-new-access-plan-model {\n display: none;\n}\n.llms-metabox .llms-access-plans {\n margin-top: 10px;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg {\n display: none;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg:last-child {\n box-shadow: inset 0 0 0 1px #e5e5e5;\n display: block;\n text-align: center;\n padding: 10px;\n}\n.llms-metabox .llms-access-plans.dragging {\n background: #efefef;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-metabox .llms-access-plans .llms-spinning {\n z-index: 1;\n}\n.llms-metabox .llms-access-plans .llms-invalid {\n border-color: #e5554e;\n}\n.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning {\n display: inline;\n}\n.llms-metabox .llms-access-plans .dashicons-warning {\n display: none;\n}\n.llms-metabox .llms-access-plan {\n text-align: left;\n}\n.llms-metabox .llms-access-plan [data-tip]:before {\n text-align: center;\n}\n.llms-metabox .llms-access-plan .llms-plan-link,\n.llms-metabox .llms-access-plan [data-controller] {\n display: none;\n}\n.llms-metabox .llms-access-plan:hover .llms-plan-link, .llms-metabox .llms-access-plan.opened .llms-plan-link {\n display: inline-block;\n}\n.llms-metabox .llms-access-plan .llms-metabox-field {\n margin: 5px 0;\n}\n.llms-metabox .llms-access-plan .llms-required {\n color: #e5554e;\n margin-left: 3px;\n}\n\n.llms-metabox-students .llms-table tr .name {\n text-align: left;\n}\n.llms-metabox-students .llms-add-student:hover {\n color: #83c373;\n}\n.llms-metabox-students .llms-remove-student:hover {\n color: #e5554e;\n}\n\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields > li.llms-mb-list {\n border-bottom: none;\n padding: 0 0 10px;\n}\n\n.llms-mb-list.repeater .llms-repeater-rows {\n position: relative;\n margin-top: 10px;\n min-height: 10px;\n}\n.llms-mb-list.repeater .llms-repeater-rows.dragging {\n background: #efefef;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-mb-list.repeater .llms-repeater-row {\n background: #fff;\n}\n.llms-mb-list.repeater .llms-mb-repeater-footer {\n text-align: right;\n margin-top: 20px;\n}\n.llms-mb-list.repeater .tmce-active .wp-editor-area {\n color: #32373c;\n}\n\n.llms-builder-launcher p {\n margin-top: 0;\n}\n.llms-builder-launcher ol {\n margin-top: -6px;\n}\n.llms-builder-launcher .llms-button-primary {\n box-sizing: border-box;\n}\n\n.wp-list-table .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.wp-list-table .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.wp-list-table .llms-status.llms-active, .wp-list-table .llms-status.llms-completed, .wp-list-table .llms-status.llms-pass, .wp-list-table .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.wp-list-table .llms-status.llms-fail, .wp-list-table .llms-status.llms-failed, .wp-list-table .llms-status.llms-expired, .wp-list-table .llms-status.llms-cancelled, .wp-list-table .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.wp-list-table .llms-status.llms-incomplete, .wp-list-table .llms-status.llms-on-hold, .wp-list-table .llms-status.llms-pending, .wp-list-table .llms-status.llms-pending-cancel, .wp-list-table .llms-status.llms-refunded, .wp-list-table .llms-status.llms-txn-pending, .wp-list-table .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n\n#lifterlms-order-transactions .llms-table tfoot th {\n text-align: right;\n}\n\n.llms-post-table-post-filter {\n display: inline-block;\n margin-right: 6px;\n max-width: 100%;\n width: 220px;\n}\n\n.llms-nav-tab-wrapper {\n background: #466dd8;\n margin: 20px 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary {\n background: #e1e1e1;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover, .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #cdcdcd;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n color: #414141;\n font-size: 15px;\n padding: 8px 14px;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons {\n font-size: 15px;\n height: 15px;\n width: 15px;\n}\n.llms-nav-tab-wrapper.llms-nav-text {\n background: inherit;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items {\n padding-left: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item {\n background: inherit;\n color: #646970;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after {\n display: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after {\n content: \"|\";\n display: inline-block;\n margin: 0 8px 0 6px;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover {\n background: inherit;\n color: #466dd8;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link {\n background: inherit;\n color: #000;\n font-weight: 600;\n text-decoration: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link {\n color: #466dd8;\n display: inline-block;\n letter-spacing: 0;\n margin: 0;\n padding: 0;\n text-decoration: underline;\n text-transform: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs {\n background-color: #1c3987;\n margin: 0;\n padding-top: 8px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item {\n margin: 0 3px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link {\n background-color: #FFF;\n color: #466dd8;\n font-weight: 700;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters {\n background-color: #466dd8;\n border-radius: 12px;\n margin: 20px 0;\n overflow: hidden;\n padding: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n padding-left: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n flex-direction: row;\n }\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item {\n float: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link {\n padding: 14px;\n}\n.llms-nav-tab-wrapper .llms-nav-items {\n margin: 0;\n padding-left: 10px;\n}\n.llms-nav-tab-wrapper .llms-nav-items:before, .llms-nav-tab-wrapper .llms-nav-items:after {\n content: \" \";\n display: table;\n}\n.llms-nav-tab-wrapper .llms-nav-items:after {\n clear: both;\n}\n.llms-nav-tab-wrapper .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover {\n background: #466dd8;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n background: #1c3987;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 400;\n}\n@media only screen and (min-width: 768px) {\n .llms-nav-tab-wrapper .llms-nav-item {\n float: left;\n }\n .llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right {\n float: right;\n }\n}\n.llms-nav-tab-wrapper .llms-nav-link {\n color: #fff;\n cursor: pointer;\n display: block;\n font-weight: 400;\n font-size: 15px;\n padding: 9px 18px;\n text-align: center;\n text-decoration: none;\n transition: all 0.3s ease;\n}\n\n#llms-options-page-contents h2 {\n color: #999;\n font-weight: 500;\n letter-spacing: 2px;\n border-bottom: 1px solid #999;\n}\n\n.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0;\n padding: 0;\n}\n.llms-reporting.wrap .llms-stab-title {\n color: #1c3987;\n font-size: 36px;\n font-weight: 300;\n margin-bottom: 20px;\n}\n.llms-reporting.wrap td.id a {\n text-decoration: none;\n}\n.llms-reporting.wrap th.id, .llms-reporting.wrap td.id,\n.llms-reporting.wrap th.name, .llms-reporting.wrap td.name,\n.llms-reporting.wrap th.registered, .llms-reporting.wrap td.registered,\n.llms-reporting.wrap th.last_seen, .llms-reporting.wrap td.last_seen,\n.llms-reporting.wrap th.overall_progress, .llms-reporting.wrap td.overall_progress,\n.llms-reporting.wrap th.title, .llms-reporting.wrap td.title,\n.llms-reporting.wrap th.course, .llms-reporting.wrap td.course,\n.llms-reporting.wrap th.lesson, .llms-reporting.wrap td.lesson {\n text-align: left;\n}\n.llms-reporting.wrap td.section-title {\n background: #eaeaea;\n text-align: left;\n font-weight: 700;\n padding: 16px 4px;\n}\n.llms-reporting.wrap td.questions-table {\n text-align: left;\n}\n.llms-reporting.wrap td.questions-table .correct,\n.llms-reporting.wrap td.questions-table .question,\n.llms-reporting.wrap td.questions-table .selected {\n text-align: left;\n max-width: 300px;\n}\n.llms-reporting.wrap td.questions-table .correct img,\n.llms-reporting.wrap td.questions-table .question img,\n.llms-reporting.wrap td.questions-table .selected img {\n height: auto;\n max-width: 64px;\n}\n.llms-reporting.wrap table.quiz-attempts {\n margin-bottom: 40px;\n}\n.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary {\n background: #e1e1e1;\n border-radius: 8px;\n box-shadow: none;\n color: #414141;\n font-size: 13px;\n font-weight: 700;\n height: auto;\n padding: 8px 14px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary, .llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-bottom: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-options-page-contents, .llms-reporting.wrap.tab--sales .llms-options-page-contents {\n box-shadow: none;\n background: none;\n margin-top: 20px;\n padding: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form {\n align-items: center;\n align-self: center;\n color: #FFF;\n display: flex;\n font-size: 13px;\n gap: 5px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label {\n font-weight: 700;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input {\n border: 0;\n font-size: 13px;\n margin: 0;\n padding: 0 4px;\n vertical-align: middle;\n width: 110px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input {\n width: 100% !important;\n}\n.llms-reporting.wrap.tab--enrollments .button.small, .llms-reporting.wrap.tab--sales .button.small {\n height: 23px;\n line-height: 23px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters, .llms-reporting.wrap.tab--sales .llms-analytics-filters {\n display: none;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap {\n background-color: #FFF;\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: -20px 10px 20px 10px;\n padding: 20px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n display: flex;\n flex-direction: column;\n gap: 20px;\n justify-content: space-between;\n margin: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n flex-direction: row;\n }\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item {\n box-sizing: border-box;\n width: 100%;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label {\n display: block;\n font-weight: 700;\n margin: 0 0 5px 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered {\n word-wrap: break-word;\n text-overflow: inherit;\n white-space: normal;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p, .llms-reporting.wrap.tab--sales .llms-analytics-filters p {\n margin: 0;\n text-align: right;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary, .llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary {\n display: inline-block;\n}\n.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap {\n width: 160px;\n}\n\n.llms-charts-wrapper {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n padding: 20px;\n}\n\n.llms-reporting-tab h1, .llms-reporting-tab h2, .llms-reporting-tab h3, .llms-reporting-tab h4, .llms-reporting-tab h5, .llms-reporting-tab h6 {\n margin: 0;\n}\n.llms-reporting-tab h1 a, .llms-reporting-tab h2 a, .llms-reporting-tab h3 a, .llms-reporting-tab h4 a, .llms-reporting-tab h5 a, .llms-reporting-tab h6 a {\n color: #466dd8;\n text-decoration: none;\n}\n.llms-reporting-tab h1 a:hover, .llms-reporting-tab h2 a:hover, .llms-reporting-tab h3 a:hover, .llms-reporting-tab h4 a:hover, .llms-reporting-tab h5 a:hover, .llms-reporting-tab h6 a:hover {\n color: #466dd8;\n}\n.llms-reporting-tab h2 {\n font-size: 22px;\n line-height: 1.5;\n}\n.llms-reporting-tab h2.llms-table-title {\n margin-bottom: 20px;\n}\n.llms-reporting-tab h5 {\n font-size: 15px;\n line-height: 1.5;\n}\n.llms-reporting-tab .llms-reporting-body {\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header {\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-gb-tab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header {\n padding: 30px;\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img {\n border-radius: 50%;\n display: inline-block;\n margin-right: 10px;\n overflow: hidden;\n vertical-align: middle;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img {\n display: block;\n max-height: 64px;\n width: auto;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info {\n display: inline-block;\n vertical-align: middle;\n}\n\n.llms-reporting-breadcrumbs {\n margin: 0;\n padding: 0;\n}\n.llms-reporting-breadcrumbs a {\n color: #466dd8;\n font-size: 15px;\n text-decoration: none;\n}\n.llms-reporting-breadcrumbs a:hover {\n color: #2b55cb;\n}\n.llms-reporting-breadcrumbs a:after {\n content: \" > \";\n color: #646970;\n}\n.llms-reporting-breadcrumbs a:last-child {\n color: #000;\n font-weight: 700;\n}\n.llms-reporting-breadcrumbs a:last-child:after {\n display: none;\n}\n\n#llms-students-table .name {\n text-align: left;\n}\n\n.llms-reporting-tab-content {\n display: flex;\n}\n.llms-reporting-tab-content > header:before, .llms-reporting-tab-content > header:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-tab-content > header:after {\n clear: both;\n}\n.llms-reporting-tab-content h3 {\n margin-bottom: 20px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-filter {\n float: right;\n position: relative;\n margin-right: 0.75em;\n width: 180px;\n top: -3px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-main {\n flex: 3;\n max-width: 75%;\n}\n.llms-reporting-tab-content .llms-reporting-tab-side {\n flex: 1;\n margin-left: 20px;\n}\n.llms-reporting-tab-content > .llms-table-wrap {\n flex: 1;\n}\n\n.llms-reporting-widgets:before, .llms-reporting-widgets:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widgets:after {\n clear: both;\n}\n\n.llms-reporting-widget {\n border-top: 4px solid #466dd8;\n background: #fafafa;\n margin-bottom: 10px;\n padding: 30px;\n}\n.llms-reporting-widget:before, .llms-reporting-widget:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widget:after {\n clear: both;\n}\n.llms-reporting-widget .fa {\n color: #999;\n float: left;\n font-size: 32px;\n margin-right: 10px;\n}\n.llms-reporting-widget strong {\n color: #333;\n font-size: 20px;\n line-height: 1.2;\n}\n.llms-reporting-widget.llms-reporting-student-address strong {\n line-height: 1.1;\n}\n.llms-reporting-widget sup,\n.llms-reporting-widget .llms-price-currency-symbol {\n font-size: 75%;\n position: relative;\n top: -4px;\n vertical-align: baseline;\n}\n.llms-reporting-widget small {\n font-size: 13px;\n}\n.llms-reporting-widget small.compare {\n margin-left: 5px;\n}\n.llms-reporting-widget small.compare.positive {\n color: #83c373;\n}\n.llms-reporting-widget small.compare.negative {\n color: #e5554e;\n}\n\n.llms-reporting-event {\n border-left: 4px solid #555;\n background: #fafafa;\n font-size: 11px;\n line-height: 1.2;\n margin-bottom: 0.75em;\n padding: 10px;\n}\n.llms-reporting-event:before, .llms-reporting-event:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-event:after {\n clear: both;\n}\n.llms-reporting-event.color--blue {\n border-left-color: #466dd8;\n}\n.llms-reporting-event.color--green, .llms-reporting-event._enrollment_trigger, .llms-reporting-event._is_complete.yes {\n border-left-color: #83c373;\n}\n.llms-reporting-event.color--purple, .llms-reporting-event._status.enrolled {\n border-left-color: #845ef7;\n}\n.llms-reporting-event.color--red, .llms-reporting-event._status.expired, .llms-reporting-event._status.cancelled {\n border-left-color: #e5554e;\n}\n.llms-reporting-event.color--orange, .llms-reporting-event._achievement_earned, .llms-reporting-event._certificate_earned, .llms-reporting-event._email_sent {\n border-left-color: #ff922b;\n}\n.llms-reporting-event time {\n color: #888;\n}\n.llms-reporting-event .llms-student-avatar {\n margin-left: 10px;\n float: right;\n}\n.llms-reporting-event a {\n text-decoration: none;\n color: inherit;\n}\n\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-left: 0;\n margin-right: 0;\n }\n}\n.llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n\n.wrap.llms-reporting .llms-inside-wrap,\n.wrap.lifterlms-settings .llms-inside-wrap,\n.wrap.llms-status .llms-inside-wrap {\n box-sizing: border-box;\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,\n.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,\n.wrap.llms-status .llms-inside-wrap .llms-nav-text {\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-subheader .llms-save,\n.wrap.lifterlms-settings .llms-subheader .llms-save,\n.wrap.llms-status .llms-subheader .llms-save {\n flex: auto;\n text-align: right;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0 -20px 20px -10px;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover {\n background: #f0f0f1;\n color: #222222;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fafafa;\n color: #466dd8;\n border-top-color: #466dd8;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 700;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n border-top: 2px solid transparent;\n padding: 14px;\n}\n.wrap.llms-reporting .llms-setting-group,\n.wrap.lifterlms-settings .llms-setting-group,\n.wrap.llms-status .llms-setting-group {\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label,\n.wrap.lifterlms-settings .llms-setting-group .llms-label,\n.wrap.llms-status .llms-setting-group .llms-label {\n border-bottom: 1px solid #efefef;\n font-weight: 700;\n font-size: 20px;\n padding: 20px;\n margin: -20px -20px 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,\n.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,\n.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary {\n margin-left: 10px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons {\n color: #444;\n cursor: help;\n}\n.wrap.llms-reporting .llms-setting-group .form-table,\n.wrap.lifterlms-settings .llms-setting-group .form-table,\n.wrap.llms-status .llms-setting-group .form-table {\n margin: 0;\n}\n.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle {\n margin-top: 0;\n}\n.wrap.llms-reporting .llms-setting-group td[colspan=\"2\"],\n.wrap.lifterlms-settings .llms-setting-group td[colspan=\"2\"],\n.wrap.llms-status .llms-setting-group td[colspan=\"2\"] {\n padding-top: 0;\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,\n.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,\n.wrap.llms-status .llms-setting-group tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n.wrap.llms-reporting .llms-setting-group p,\n.wrap.lifterlms-settings .llms-setting-group p,\n.wrap.llms-status .llms-setting-group p {\n font-size: 14px;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text],\n.wrap.llms-reporting .llms-setting-group input[type=password],\n.wrap.llms-reporting .llms-setting-group input[type=datetime],\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local],\n.wrap.llms-reporting .llms-setting-group input[type=date],\n.wrap.llms-reporting .llms-setting-group input[type=month],\n.wrap.llms-reporting .llms-setting-group input[type=time],\n.wrap.llms-reporting .llms-setting-group input[type=week],\n.wrap.llms-reporting .llms-setting-group input[type=number],\n.wrap.llms-reporting .llms-setting-group input[type=email],\n.wrap.llms-reporting .llms-setting-group input[type=url],\n.wrap.llms-reporting .llms-setting-group input[type=search],\n.wrap.llms-reporting .llms-setting-group input[type=tel],\n.wrap.llms-reporting .llms-setting-group input[type=color],\n.wrap.llms-reporting .llms-setting-group select,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.lifterlms-settings .llms-setting-group input[type=text],\n.wrap.lifterlms-settings .llms-setting-group input[type=password],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],\n.wrap.lifterlms-settings .llms-setting-group input[type=date],\n.wrap.lifterlms-settings .llms-setting-group input[type=month],\n.wrap.lifterlms-settings .llms-setting-group input[type=time],\n.wrap.lifterlms-settings .llms-setting-group input[type=week],\n.wrap.lifterlms-settings .llms-setting-group input[type=number],\n.wrap.lifterlms-settings .llms-setting-group input[type=email],\n.wrap.lifterlms-settings .llms-setting-group input[type=url],\n.wrap.lifterlms-settings .llms-setting-group input[type=search],\n.wrap.lifterlms-settings .llms-setting-group input[type=tel],\n.wrap.lifterlms-settings .llms-setting-group input[type=color],\n.wrap.lifterlms-settings .llms-setting-group select,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.llms-status .llms-setting-group input[type=text],\n.wrap.llms-status .llms-setting-group input[type=password],\n.wrap.llms-status .llms-setting-group input[type=datetime],\n.wrap.llms-status .llms-setting-group input[type=datetime-local],\n.wrap.llms-status .llms-setting-group input[type=date],\n.wrap.llms-status .llms-setting-group input[type=month],\n.wrap.llms-status .llms-setting-group input[type=time],\n.wrap.llms-status .llms-setting-group input[type=week],\n.wrap.llms-status .llms-setting-group input[type=number],\n.wrap.llms-status .llms-setting-group input[type=email],\n.wrap.llms-status .llms-setting-group input[type=url],\n.wrap.llms-status .llms-setting-group input[type=search],\n.wrap.llms-status .llms-setting-group input[type=tel],\n.wrap.llms-status .llms-setting-group input[type=color],\n.wrap.llms-status .llms-setting-group select,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area) {\n width: 50%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].medium,\n.wrap.llms-reporting .llms-setting-group input[type=password].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-reporting .llms-setting-group input[type=date].medium,\n.wrap.llms-reporting .llms-setting-group input[type=month].medium,\n.wrap.llms-reporting .llms-setting-group input[type=time].medium,\n.wrap.llms-reporting .llms-setting-group input[type=week].medium,\n.wrap.llms-reporting .llms-setting-group input[type=number].medium,\n.wrap.llms-reporting .llms-setting-group input[type=email].medium,\n.wrap.llms-reporting .llms-setting-group input[type=url].medium,\n.wrap.llms-reporting .llms-setting-group input[type=search].medium,\n.wrap.llms-reporting .llms-setting-group input[type=tel].medium,\n.wrap.llms-reporting .llms-setting-group input[type=color].medium,\n.wrap.llms-reporting .llms-setting-group select.medium,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,\n.wrap.lifterlms-settings .llms-setting-group select.medium,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.llms-status .llms-setting-group input[type=text].medium,\n.wrap.llms-status .llms-setting-group input[type=password].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-status .llms-setting-group input[type=date].medium,\n.wrap.llms-status .llms-setting-group input[type=month].medium,\n.wrap.llms-status .llms-setting-group input[type=time].medium,\n.wrap.llms-status .llms-setting-group input[type=week].medium,\n.wrap.llms-status .llms-setting-group input[type=number].medium,\n.wrap.llms-status .llms-setting-group input[type=email].medium,\n.wrap.llms-status .llms-setting-group input[type=url].medium,\n.wrap.llms-status .llms-setting-group input[type=search].medium,\n.wrap.llms-status .llms-setting-group input[type=tel].medium,\n.wrap.llms-status .llms-setting-group input[type=color].medium,\n.wrap.llms-status .llms-setting-group select.medium,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium {\n width: 30%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].small,\n.wrap.llms-reporting .llms-setting-group input[type=password].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-reporting .llms-setting-group input[type=date].small,\n.wrap.llms-reporting .llms-setting-group input[type=month].small,\n.wrap.llms-reporting .llms-setting-group input[type=time].small,\n.wrap.llms-reporting .llms-setting-group input[type=week].small,\n.wrap.llms-reporting .llms-setting-group input[type=number].small,\n.wrap.llms-reporting .llms-setting-group input[type=email].small,\n.wrap.llms-reporting .llms-setting-group input[type=url].small,\n.wrap.llms-reporting .llms-setting-group input[type=search].small,\n.wrap.llms-reporting .llms-setting-group input[type=tel].small,\n.wrap.llms-reporting .llms-setting-group input[type=color].small,\n.wrap.llms-reporting .llms-setting-group select.small,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].small,\n.wrap.lifterlms-settings .llms-setting-group select.small,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.llms-status .llms-setting-group input[type=text].small,\n.wrap.llms-status .llms-setting-group input[type=password].small,\n.wrap.llms-status .llms-setting-group input[type=datetime].small,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-status .llms-setting-group input[type=date].small,\n.wrap.llms-status .llms-setting-group input[type=month].small,\n.wrap.llms-status .llms-setting-group input[type=time].small,\n.wrap.llms-status .llms-setting-group input[type=week].small,\n.wrap.llms-status .llms-setting-group input[type=number].small,\n.wrap.llms-status .llms-setting-group input[type=email].small,\n.wrap.llms-status .llms-setting-group input[type=url].small,\n.wrap.llms-status .llms-setting-group input[type=search].small,\n.wrap.llms-status .llms-setting-group input[type=tel].small,\n.wrap.llms-status .llms-setting-group input[type=color].small,\n.wrap.llms-status .llms-setting-group select.small,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small {\n width: 20%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=password].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=date].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=month].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=time].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=week].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=number].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=email].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=url].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=search].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=color].tiny,\n.wrap.llms-reporting .llms-setting-group select.tiny,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,\n.wrap.lifterlms-settings .llms-setting-group select.tiny,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.llms-status .llms-setting-group input[type=text].tiny,\n.wrap.llms-status .llms-setting-group input[type=password].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-status .llms-setting-group input[type=date].tiny,\n.wrap.llms-status .llms-setting-group input[type=month].tiny,\n.wrap.llms-status .llms-setting-group input[type=time].tiny,\n.wrap.llms-status .llms-setting-group input[type=week].tiny,\n.wrap.llms-status .llms-setting-group input[type=number].tiny,\n.wrap.llms-status .llms-setting-group input[type=email].tiny,\n.wrap.llms-status .llms-setting-group input[type=url].tiny,\n.wrap.llms-status .llms-setting-group input[type=search].tiny,\n.wrap.llms-status .llms-setting-group input[type=tel].tiny,\n.wrap.llms-status .llms-setting-group input[type=color].tiny,\n.wrap.llms-status .llms-setting-group select.tiny,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny {\n width: 10%;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fff;\n }\n}\n.wrap.llms-reporting #llms-mailhawk-connect,\n.wrap.lifterlms-settings #llms-mailhawk-connect,\n.wrap.llms-status #llms-mailhawk-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-mailhawk-connect .dashicons,\n.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,\n.wrap.llms-status #llms-mailhawk-connect .dashicons {\n margin: -4px 4px 0 0;\n vertical-align: middle;\n}\n.wrap.llms-reporting #llms-sendwp-connect,\n.wrap.lifterlms-settings #llms-sendwp-connect,\n.wrap.llms-status #llms-sendwp-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-sendwp-connect .fa,\n.wrap.lifterlms-settings #llms-sendwp-connect .fa,\n.wrap.llms-status #llms-sendwp-connect .fa {\n margin-right: 4px;\n}\n\n@media only screen and (min-width: 782px) {\n .wrap.lifterlms-settings .llms-subheader {\n height: 40px;\n position: sticky;\n top: 32px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n}\n.wrap.llms-dashboard .llms-inside-wrap {\n padding-top: 30px;\n}\n.wrap.llms-dashboard #poststuff h2 {\n padding: 12px 20px;\n}\n.wrap.llms-dashboard .llms-dashboard-activity h2 {\n font-size: 20px;\n font-weight: 700;\n line-height: 1.5;\n margin-top: 0;\n text-align: center;\n}\n.wrap.llms-dashboard .postbox {\n background-color: #FFF;\n border: none;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n}\n.wrap.llms-dashboard .postbox .postbox-header {\n border-bottom-color: #efefef;\n}\n.wrap.llms-dashboard .postbox .inside {\n padding: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p {\n text-align: left;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions {\n padding-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p {\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary {\n display: inline-block;\n margin-top: 15px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul {\n list-style: disc;\n margin: 5px 0 0 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul li {\n font-size: 15px;\n line-height: 1.5;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n display: grid;\n grid-template-columns: 1fr;\n grid-gap: 30px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a {\n display: inline-block;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3 {\n margin: 0 0 10px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul {\n margin-bottom: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist {\n list-style: none;\n margin-left: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa {\n text-align: center;\n width: 16px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check {\n color: #008a20;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times {\n color: #d63638;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action {\n display: block;\n text-align: center;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n grid-template-columns: 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n display: grid;\n grid-template-columns: 1fr 1fr;\n grid-gap: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons {\n color: #AAA;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n grid-template-columns: 1fr 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul,\n.wrap.llms-dashboard #llms_dashboard_podcast ul {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li {\n margin: 0 0 15px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li a,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li a {\n display: block;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p,\n.wrap.llms-dashboard #llms_dashboard_podcast p {\n margin: 15px 0;\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p a,\n.wrap.llms-dashboard #llms_dashboard_podcast p a {\n display: inline-block;\n}\n\n#llms_dashboard_widget .inside {\n margin: 0;\n padding-bottom: 8px;\n}\n#llms_dashboard_widget .llms-dashboard-widget-wrap {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding-top: 12px;\n}\n#llms_dashboard_widget .activity-block {\n padding-bottom: 8px;\n border-color: #e8e8e8;\n}\n#llms_dashboard_widget h3 {\n margin-bottom: 0;\n}\n#llms_dashboard_widget .llms-charts-wrapper {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-row {\n display: flex;\n justify-content: space-between;\n gap: 8px;\n width: 100%;\n align-items: stretch;\n padding: 4px 0;\n}\n#llms_dashboard_widget .llms-widget-row:before, #llms_dashboard_widget .llms-widget-row:after {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-1-4 {\n padding: 0;\n flex: 1;\n}\n#llms_dashboard_widget .llms-widget {\n padding: 8px 8px 12px;\n margin: 0;\n border-radius: 6px;\n border: 1px solid #e8e8e8;\n box-shadow: 0px 2px 4px rgb(246, 247, 247);\n height: 100%;\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-items: flex-end;\n}\n#llms_dashboard_widget .llms-label {\n font-size: 14px;\n width: 100%;\n align-self: flex-start;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n#llms_dashboard_widget .llms-widget-content {\n font-size: 20px;\n margin: 0;\n}\n#llms_dashboard_widget .llms-widget-info-toggle {\n display: none;\n}\n#llms_dashboard_widget a {\n border: 0;\n}\n#llms_dashboard_widget .subsubsub {\n color: #dcdcde;\n}\n\n.llms-dashboard-widget-feed {\n margin: 0 -12px;\n padding: 0;\n background-color: #f6f7f7;\n}\n.llms-dashboard-widget-feed li {\n margin: 0;\n padding: 8px 12px;\n border-bottom: 1px solid #e8e8e8;\n}\n.llms-dashboard-widget-feed span {\n display: block;\n}\n\n.llms-remarks .llms-remarks-field {\n height: 120px;\n width: 100%;\n}\n.llms-remarks input[type=number] {\n width: 60px;\n}\n\nbutton[name=llms_quiz_attempt_action] .save {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .default {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .save {\n display: inline;\n}\n\n.llms-form-fields {\n box-sizing: border-box;\n}\n.llms-form-fields * {\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}","%cf,\n%clearfix {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\n\t&:after {\n \tclear: both;\n\t}\n}\n\n\n\n%llms-element {\n\tbackground: $el-background;\n\tbox-shadow: $el-box-shadow;\n\tdisplay: block;\n\tcolor: #212121;\n\tmin-height: 85px;\n\tpadding: 15px;\n\ttext-decoration: none;\n\tposition: relative;\n\ttransition: background .4s ease;\n\n\t&:hover {\n\t\tbackground: $el-background-hover;\n\t}\n}\n",".llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n\tborder:none;\n\tborder-radius: 8px;\n\tcolor: $color-white;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: $color-white;\n\t}\n\t&:focus {\n\t\tcolor: $color-white;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n\t&.small {\n\t\tfont-size: 13px;\n\t\tpadding: 8px 14px;\n\t\t&.square { padding: 8px; }\n\t}\n\n\t&.large {\n\t\tfont-size: 18px;\n\t\tline-height: 1.2;\n\t\tpadding: 16px 32px;\n\t\t&.square { padding: 16px; }\n\t\t.fa {\n\t\t\tleft: -7px;\n\t\t\tposition: relative;\n\t\t}\n\t}\n\n}\n\n.llms-button-primary {\n\tbackground: $color-brand-blue;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-blue-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-blue-light;\n\t}\n}\n\n.llms-button-secondary {\n\tbackground: #e1e1e1;\n\tcolor: #414141;\n\t&:hover {\n\t\tcolor: #414141;\n\t\tbackground: darken( #e1e1e1, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tcolor: #414141;\n\t\tbackground: lighten( #e1e1e1, 4 );\n\t}\n}\n\n.llms-button-action {\n\tbackground: $color-brand-orange;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-orange-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-orange-light;\n\t}\n}\n\n.llms-button-danger {\n\tbackground: $color-danger;\n\t&:hover {\n\t\tbackground: darken( $color-danger, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: lighten( $color-danger, 4 );\n\t}\n}\n\n.llms-button-outline {\n\tbackground: transparent;\n\tborder: 3px solid #1D2327;\n\tborder-radius: 8px;\n\tcolor: #1D2327;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: #1D2327;\n\t}\n\t&:focus {\n\t\tcolor: #1D2327;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n}","// ----- LifterLMS Brand Colors ----- \\\\\n$color-brand-dark-blue: #243c56;\n\n$color-brand-blue: #2295ff;\n$color-brand-blue-dark: darken( $color-brand-blue, 12 ); // #0077e4\n$color-brand-blue-light: lighten( $color-brand-blue, 8 );\n\n$color-brand-orange: #f8954f;\n$color-brand-orange-dark: #f67d28;\n$color-brand-orange-light: lighten( $color-brand-orange, 8 );\n\n$color-brand-aqua: #17bebb;\n\n$color-brand-pink: #ef476f;\n\n\n\n// ----- name our versions of common colors ----- \\\\\n$color-black: #010101;\n$color-green: #83c373;\n$color-blue: $color-brand-blue;\n$color-red: #e5554e;\n$color-white: #fefefe;\n$color-aqua: #35bbaa;\n$color-purple: #845ef7;\n$color-orange: #ff922b;\n\n$color-red-hover: darken($color-red,5);\n\n\n// ----- state / action names ----- \\\\\n$color-success: $color-green;\n$color-danger: $color-red;\n\n\n\n\n\n\n\n\n$color-lightgrey:\t\t#ccc;\n$color-grey: \t\t\t#999;\n$color-darkgrey:\t\t#666;\n$color-cinder:\t\t\t#444;\n$color-lightblue:\t\t#33b1cb;\n$color-darkblue:\t\t#0185a3;\n\n\n\n\n\n\n\n\n\n\n\n\n$color-border: #efefef;\n\n$el-box-shadow: 0 1px 2px 0 rgba($color-black,0.4);\n$el-background: #f1f1f1;\n$el-background-hover: #eaeaea;\n\n$break-xsmall: 320px;\n$break-small: 641px;\n$break-medium: 768px;\n$break-large: 1024px;\n","//\n// LifterLMS Brand Colors\n// Currently overrides brand colors on the admin panel\n//\n\n$color-brand-blue: #466dd8;\n$color-brand-blue-dark: darken( $color-brand-blue, 8 );\n$color-brand-dark-blue: darken( $color-brand-blue, 24 );\n$color-brand-blue-light: lighten( $color-brand-blue, 8 );\n\n$color-brand-orange: #f8954f;\n$color-brand-orange-dark: #f67d28;\n$color-brand-orange-light: lighten( $color-brand-orange, 8 );\n\n$color-brand-aqua: #17bebb;\n\n$color-brand-pink: #ef476f;\n\n$color-blue: $color-brand-blue;\n",".lifterlms, // Settings & Course Builder.\n.llms-metabox, // Some Metaboxes.\n.llms-mb-container, // Other Metaboxes.\n.llms-quiz-wrapper { // Quiz results.\n\n\t[data-tip],\n\t[data-title-default],\n\t[data-title-active] {\n\n\t\t$bgcolor: #444;\n\n\t\tposition: relative;\n\n\t\t&.tip--top-right {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\t\t&.tip--top-left {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\n\t\t&.tip--bottom-left {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&.tip--bottom-right {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&:before {\n\t\t\tbackground: $bgcolor;\n\t\t\tborder-radius: 4px;\n\t\t\tcolor: #fff;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.2;\n\t\t\tpadding: 8px;\n\t\t\tmax-width: 300px;\n\t\t\twidth: max-content;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tborder: 6px solid transparent;\n\t\t\theight: 0;\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&:before,\n\t\t&:after {\n\t\t\topacity: 0;\n\t\t\ttransition: all 0.2s 0.1s ease;\n\t\t\tposition: absolute;\n\t\t\tpointer-events: none;\n\t\t\tvisibility: hidden;\n\t\t}\n\t\t&:hover:before,\n\t\t&:hover:after {\n\t\t\topacity: 1;\n\t\t\ttransition: all 0.2s 0.6s ease;\n\t\t\tvisibility: visible;\n\t\t\tz-index: 99999999;\n\t\t}\n\n\t}\n\n\t[data-tip] {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip);\n\t\t}\n\t}\n\t[data-tip].active {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip-active);\n\t\t}\n\t}\n\n}\n","#adminmenu {\n\n\t.toplevel_page_lifterlms .wp-menu-image img {\n\t\tpadding-top: 6px;\n\t\twidth: 20px;\n\t}\n\n\t.toplevel_page_lifterlms,\n\t.opensub .wp-submenu li.current,\n\t.wp-submenu li.current,\n\t.wp-submenu li.current,\n\t.wp-submenu li.current,\n\ta.wp-has-current-submenu:focus+.wp-submenu li.current {\n\t\ta[href*=\"page=llms-add-ons\"] {\n\t\t\tcolor: $color-orange;\n\t\t}\n\t}\n\n}\n\n\n","/******************************************************************\n\nGrids for Breakpoints\n\n******************************************************************/\n\n// using a mixin since we can't use placeholder selectors\n@mixin grid-col {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n\n}\n\n// the last column\n.last-col {\n float: right;\n padding-right: 0 !important;\n}\n.last-col:after {\n clear: both;\n}\n\n/*\nMobile Grid Styles\nThese are the widths for the mobile grid.\nThere are four types, but you can add or customize\nthem however you see fit.\n*/\n@media (max-width: 767px) {\n\n .m-all {\n @include grid-col;\n width: 100%;\n padding-right: 0;\n }\n\n .m-1of2 {\n @include grid-col;\n width: 50%;\n }\n\n .m-1of3 {\n @include grid-col;\n width: 33.33%;\n }\n\n .m-2of3 {\n @include grid-col;\n width: 66.66%;\n }\n\n .m-1of4 {\n @include grid-col;\n width: 25%;\n }\n\n .m-3of4 {\n @include grid-col;\n width: 75%;\n }\n\n\t.m-right {\n\t\ttext-align: center;\n\t}\n\t.m-center {\n\t\ttext-align: center;\n\t}\n\t.m-left {\n\t\ttext-align: center;\n\t}\n\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n\n} // end mobile styles\n\n\n/* Portrait tablet to landscape */\n@media (min-width: 768px) and (max-width: 1029px) {\n\n .t-all {\n @include grid-col;\n width: 100%;\n padding-right: 0;\n }\n\n .t-1of2 {\n @include grid-col;\n width: 50%;\n }\n\n .t-1of3 {\n @include grid-col;\n width: 33.33%;\n }\n\n .t-2of3 {\n @include grid-col;\n width: 66.66%;\n }\n\n .t-1of4 {\n @include grid-col;\n width: 25%;\n }\n\n .t-3of4 {\n @include grid-col;\n width: 75%;\n }\n\n .t-1of5 {\n @include grid-col;\n width: 20%;\n }\n\n .t-2of5 {\n @include grid-col;\n width: 40%;\n }\n\n .t-3of5 {\n @include grid-col;\n width: 60%;\n }\n\n .t-4of5 {\n @include grid-col;\n width: 80%;\n }\n\n\t.d-right {\n\t\ttext-align: right;\n\t}\n\t.d-center {\n\t\ttext-align: center;\n\t}\n\t.d-left {\n\t\ttext-align: left;\n\t}\n\n} // end tablet\n\n/* Landscape to small desktop */\n@media (min-width: 1030px) {\n\n .d-all {\n @include grid-col;\n width: 100%;\n padding-right: 0;\n }\n\n .d-1of2 {\n @include grid-col;\n width: 50%;\n }\n\n .d-1of3 {\n @include grid-col;\n width: 33.33%;\n }\n\n .d-2of3 {\n @include grid-col;\n width: 66.66%;\n }\n\n .d-1of4 {\n @include grid-col;\n width: 25%;\n }\n\n .d-3of4 {\n @include grid-col;\n width: 75%;\n }\n\n .d-1of5 {\n @include grid-col;\n width: 20%;\n }\n\n .d-2of5 {\n @include grid-col;\n width: 40%;\n }\n\n .d-3of5 {\n @include grid-col;\n width: 60%;\n }\n\n .d-4of5 {\n @include grid-col;\n width: 80%;\n }\n\n .d-1of6 {\n @include grid-col;\n width: 16.6666666667%;\n }\n\n .d-1of7 {\n @include grid-col;\n width: 14.2857142857%;\n }\n\n .d-2of7 {\n @include grid-col;\n width: 28.5714286%;\n }\n\n .d-3of7 {\n @include grid-col;\n width: 42.8571429%;\n }\n\n .d-4of7 {\n @include grid-col;\n width: 57.1428572%;\n }\n\n .d-5of7 {\n @include grid-col;\n width: 71.4285715%;\n }\n\n .d-6of7 {\n @include grid-col;\n width: 85.7142857%;\n }\n\n .d-1of8 {\n @include grid-col;\n width: 12.5%;\n }\n\n .d-1of9 {\n @include grid-col;\n width: 11.1111111111%;\n }\n\n .d-1of10 {\n @include grid-col;\n width: 10%;\n }\n\n .d-1of11 {\n @include grid-col;\n width: 9.09090909091%;\n }\n\n .d-1of12 {\n @include grid-col;\n width: 8.33%;\n }\n\n\t.d-right {\n\t\ttext-align: right;\n\t}\n\t.d-center {\n\t\ttext-align: center;\n\t}\n\t.d-left {\n\t\ttext-align: left;\n\t}\n\n} // end desktop styles\n","/******************************************************************\n\nForm Styles\n\n******************************************************************/\n\n// lifterlms form wrapper\n#llms-form-wrapper {\n\n\t// setup defaults\n\tinput[type=\"text\"],\n\tinput[type=\"password\"],\n\tinput[type=\"datetime\"],\n\tinput[type=\"datetime-local\"],\n\tinput[type=\"date\"],\n\tinput[type=\"month\"],\n\tinput[type=\"time\"],\n\tinput[type=\"week\"],\n\tinput[type=\"number\"],\n\tinput[type=\"email\"],\n\tinput[type=\"url\"],\n\tinput[type=\"search\"],\n\tinput[type=\"tel\"],\n\tinput[type=\"color\"],\n\tinput[type=\"checkbox\"],\n\tselect,\n\ttextarea,\n\t.llms-field {\n\n\t\t// a focused input (or hovered on)\n\t\t&:focus,\n\t\t&:active {\n\n\t\t} // end hover or focus\n\t}\n\n\t// sub wrapper for search filter form (analytics)\n\t.llms-search-form-wrapper {\n\t\tborder-bottom: 1px solid $color-grey;\n\t\tmargin: 20px 0;\n\n\t}\n\n\n\t#llms_analytics_search {\n\t\tborder:none !important;\n\t\ttext-shadow: none !important;\n\t\tborder: none !important;\n\t\toutline: none !important;\n\t\tbox-shadow: none !important;\n\t\tmargin: 0 !important;\n\t\tcolor: $color-white !important;\n\t\tbackground: $color-blue !important;\n\t\tborder-radius: 0;\n\t\ttransition: .5s;\n\n\t\t&:hover {\n\t\t\tbackground: $color-darkblue !important;\n\n\t\t}&:active {\n\t\t\tbackground: $color-lightblue !important;\n\t\t}\n\t}\n\n} // end input defaults\n\n\n#llms-skip-setup-form {\n\t.llms-admin-link {\n\t\tbackground:none!important;\n\t\tborder:none;\n\t\tpadding:0!important;\n\t\tcolor:#0074a2;\n\t\tcursor:pointer;\n\t\t&:hover {\n\t\t\tcolor:#2ea2cc\n\t\t}&:focus{\n\t\t\tcolor:#124964;\n\t\t}\n\n\t}\n\n}\n\n/**\n * Toggle Switch ( replaces checkbox on admin panels )\n */\n.llms-switch {\n\tposition: relative;\n\n\t.llms-toggle {\n\t\tposition: absolute;\n\t\tmargin-left: -9999px;\n\t\tvisibility: hidden;\n\t}\n\n\t.llms-toggle + label {\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tcursor: pointer;\n\t\toutline: none;\n\t\tuser-select: none;\n\t}\n\n\tinput.llms-toggle-round + label {\n\t\tborder: 2px solid #6c7781;\n\t\tborder-radius: 10px;\n\t\theight: 20px;\n\t\twidth: 36px;\n\t}\n\tinput.llms-toggle-round + label:before,\n\tinput.llms-toggle-round + label:after {\n\t\tbox-sizing: border-box;\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\ttransition: background 0.4s;\n\t}\n\n\tinput.llms-toggle-round:checked + label {\n\t\tborder-color: #11a0d2;\n\t \tbackground-color: #11a0d2;\n\t}\n\n\t// Primary dot (that moves.)\n\tinput.llms-toggle-round + label:after {\n\t\theight: 12px;\n\t\tleft: 2px;\n\t\ttop: 2px;\n\t\tbackground-color: #6c7781;\n\t\tborder-radius: 50%;\n\t\ttransition: margin 0.4s;\n\t\twidth: 12px;\n\t\tz-index: 3;\n\t}\n\n\t// Primary dot when toggle on.\n\tinput.llms-toggle-round:checked + label:after {\n\t\tbackground-color: $color-white;\n\t\tmargin-left: 16px;\n\t}\n\n\t// Secondary dot: empty on the right side of the toggle when toggled off.\n\tinput.llms-toggle-round + label:before {\n\t\theight: 8px;\n\t\ttop: 4px;\n\t\tborder: 1px solid #6c7781;\n\t\tborder-radius: 50%;\n\t\tright: 4px;\n\t\twidth: 8px;\n\t\tz-index: 2;\n\t}\n\n\tinput.llms-toggle-round:checked + label:before {\n\t\tborder-color: $color-white;\n\t\tborder-radius: 0;\n\t\tleft: 6px;\n\t\tright: auto;\n\t\twidth: 2px;\n\t}\n\n}\n\n#llms-profile-fields {\n\tmargin: 50px 0;\n\t.llms-form-field {\n\t\tpadding-left: 0;\n\t}\n\tlabel {\n\t\tdisplay: block;\n\t\tfont-weight: bold;\n\t\tpadding: 8px 0 2px;\n\t}\n\t.type-checkbox .type-checkbox {\n\t\tlabel {\n\t\t\tdisplay: initial;\n\t\t\tfont-weight: initial;\n\t\t\tpadding: 0;\n\t\t}\n\t\tinput {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-bottom: 0;\n\t\t\twidth: 1rem;\n\t\t}\n\t}\n\tselect {\n\t\tmax-width: 100%;\n\t}\n}\n","a.llms-voucher-delete {\n\tbackground: $color-danger;\n\tcolor: $color-white;\n\tdisplay: block;\n\tpadding: 4px 2px;\n\ttext-decoration: none;\n\ttransition: ease .3s all;\n\n\t&:hover {\n\t\tbackground: #af3a26;\n\t}\n}\n\n\n\n.llms-voucher-codes-wrapper,\n.llms-voucher-redemption-wrapper {\n\n table {\n width: 100%;\n border-collapse: collapse;\n\n th, td {\n border: none;\n }\n\n thead {\n background-color: $color-blue;\n color:#fff;\n th {\n padding: 10px 10px;\n }\n }\n\n tr {\n counter-increment: row-counter;\n &:nth-child(even) {\n background-color: #F1F1F1;\n }\n\n td {\n padding: 5px;\n &:first-child:before {\n content: counter( row-counter );\n }\n }\n }\n }\n}\n\n.llms-voucher-codes-wrapper {\n\n table {\n width: 100%;\n border-collapse: collapse;\n\n th, td {\n border: none;\n }\n\n thead {\n background-color: $color-blue;\n color:#fff;\n }\n\n tr {\n &:nth-child(even) {\n background-color: #F1F1F1;\n }\n\n td {\n\n span {\n display: inline-block;\n min-width: 30px;\n }\n }\n }\n }\n\n button {\n cursor: pointer;\n }\n\n .llms-voucher-delete {\n float: right;\n margin-right: 15px;\n }\n\n .llms-voucher-uses {\n width: 50px;\n }\n\n .llms-voucher-add-codes {\n float: right;\n\n input[type=\"text\"] {\n width: 30px;\n }\n }\n}\n\n.llms-voucher-export-wrapper {\n\n .llms-voucher-export-type {\n width: 100%;\n\n p {\n margin: 0 0 0 15px;\n }\n }\n\n .llms-voucher-email-wrapper {\n width: 100%;\n margin: 25px 0;\n\n input[type=\"text\"] {\n width: 100%;\n }\n\n p {\n margin: 0;\n }\n }\n\n > button {\n float: right;\n }\n}\n\n.postbox .inside {\n overflow: auto;\n}\n",".llms-widget {\n\tbackground-color: #FFF;\n\tborder: 1px solid #dedede;\n\tborder-radius: 12px;\n\tbox-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n\tbox-sizing: border-box;\n\tmargin-bottom: 20px;\n\tpadding: 20px;\n\tposition: relative;\n\twidth: 100%;\n\n\t&.alt {\n\n\t\tborder: 1px solid $color-lightgrey;\n\t\tbackground-color: #efefef;\n\t\tmargin-bottom: 10px;\n\n\t\t.llms-label {\n\t\t\tcolor: #777;\n\t\t\tfont-size: 14px;\n\t\t\tmargin-bottom: 10px;\n\t\t\tpadding-bottom: 5px;\n\t\t}\n\n\t\th2 {\n\t\t\tcolor: #444;\n\t\t\tfont-weight: 300;\n\t\t}\n\n\t}\n\n\ta {\n\t\tborder-bottom: 1px dotted $color-brand-blue;\n\t\tdisplay: inline-block;\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tborder-bottom: 1px dotted $color-brand-blue-dark;\n\t\t}\n\t}\n\n\t// Nested for specificity (matches h1).\n\t.llms-widget-content {\n\t\tmargin: .67em 0;\n\t\tcolor: $color-brand-blue;\n\t\tfont-size: 2.4em;\n\t\tfont-weight: 700;\n\t\tline-height: 1;\n\t\tword-break: break-all;\n\t}\n\n\th2 {\n\t\tfont-size: 1.8em;\n\t}\n\n\t.llms-label {\n\t\tbox-sizing: border-box;\n\t\tfont-size: 18px;\n\t\tfont-weight: 400;\n\t\tmargin: 0 0 10px 0;\n\t\ttext-align: center;\n\t}\n\n\t.llms-chart {\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tbox-sizing: border-box;\n\t}\n\n\tmark.yes {\n\t\tbackground-color: #7ad03a;\n\t}\n\n\t.llms-subtitle {\n\t\tmargin-bottom: 0;\n\t}\n\n\t.spinner {\n\t\tfloat: none;\n\t\tleft: 50%;\n\t\tmargin: -10px 0 0 -10px;\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\tz-index: 2;\n\t}\n\n\t&.is-loading {\n\n\t\t&:before {\n\t\t\tbackground: $color-white;\n\t\t\tbottom: 0;\n\t\t\tcontent: '';\n\t\t\tleft: 0;\n\t\t\topacity: 0.9;\n\t\t\tposition: absolute;\n\t\t\tright: 0;\n\t\t\ttop: 0;\n\t\t\tz-index: 1;\n\t\t}\n\n\t\t.spinner {\n\t\t\tvisibility: visible;\n\t\t}\n\n\t}\n\n\ttd[colspan=\"2\"] {\n\t\tpadding-left: 0;\n\t}\n\n\ttr.llms-disabled-field {\n\t\topacity: 0.5;\n\t\tpointer-events: none;\n\t}\n\n}\n\n.llms-widget-1-3,\n.llms-widget-1-4,\n.llms-widget-1-5 {\n\ttext-align: center;\n}\n\n\n.llms-widget {\n\t.llms-widget-info-toggle {\n\t\tcolor: #AAA;\n\t\tcursor: pointer;\n\t\tfont-size: 16px;\n\t\tposition: absolute;\n\t\tright: 20px;\n\t\ttop: 20px;\n\t}\n\n\t&.info-showing {\n\t\t.llms-widget-info {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n.llms-widget-info {\n\tbackground: $color-cinder;\n\tcolor: $color-white;\n\tbottom: -50px;\n\tdisplay: none;\n\tpadding: 15px;\n\tposition: absolute;\n\ttext-align: center;\n\tleft: 10px;\n\tright: 15px;\n\tz-index: 3;\n\t&:before {\n\t\tcontent: '';\n\t\tborder: 12px solid transparent;\n\t\tborder-bottom-color: $color-cinder;\n\t\tleft: 50%;\n\t\tmargin-left: -12px;\n\t\tposition: absolute;\n\t\ttop: -24px;\n\t}\n\n\tp {\n\t\tmargin: 0;\n\t}\n\n}\n\n.llms-widget-row {\n\t@include clearfix();\n}\n\n.llms-widget-row .no-padding {\n\tpadding: 0 !important;\n}\n","\n@mixin clearfix() {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\t&:after {\n\t clear: both;\n\t}\n}\n\n//\n// Positioning mixin\n//\n// @param [string] $position: position\n// @param [list] $args (()): offsets list\n//\n// @source http://hugogiraudel.com/2013/08/05/offsets-sass-mixin/\n//\n@mixin position($position, $args: ()) {\n\t$offsets: top right bottom left;\n\tposition: $position;\n\n\t@each $offset in $offsets {\n\t\t$index: index($args, $offset);\n\n\t\t@if $index {\n\t\t\t@if $index == length($args) {\n\t\t\t\t#{$offset}: 0;\n\t\t\t}\n\t\t\t@else {\n\t\t\t\t$next: nth($args, $index + 1);\n\t\t\t\t@if is-valid-length($next) {\n\t\t\t\t\t#{$offset}: $next;\n\t\t\t\t}\n\t\t\t\t@else if index($offsets, $next) {\n\t\t\t\t\t#{$offset}: 0;\n\t\t\t\t}\n\t\t\t\t@else {\n\t\t\t\t\t@warn \"Invalid value `#{$next}` for offset `#{$offset}`.\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n//\n// Function checking if $value is a valid length\n// @param [literal] $value: value to test\n// @return [bool]\n//\n@function is-valid-length($value) {\n\t$r: (type-of($value) == \"number\" and not unitless($value)) or (index(auto initial inherit 0, $value) != null);\n\t@return $r;\n}\n\n//\n// Shorthands\n//\n@mixin absolute($args: ()) {\n\t@include position(absolute, $args);\n}\n\n@mixin fixed($args: ()) {\n\t@include position(fixed, $args);\n}\n\n@mixin relative($args: ()) {\n\t@include position(relative, $args);\n}\n\n\n\n@mixin order_status_badges() {\n\n\t.llms-status {\n\t\tborder-radius: 3px;\n\t\tborder-bottom: 1px solid #fff;\n\t\tdisplay: inline-block;\n\t\tfont-size: 80%;\n\t\tpadding: 3px 6px;\n\t\tvertical-align: middle;\n\n\t\t&.llms-size--large {\n\t\t\tfont-size: 105%;\n\t\t\tpadding: 6px 12px;\n\t\t}\n\n\t\t&.llms-active,\n\t\t&.llms-completed,\n\t\t&.llms-pass, // quiz\n\t\t&.llms-txn-succeeded {\n\t\t\tcolor: darken( $color-green, 45 );\n\t\t\tbackground-color: $color-green;\n\t\t}\n\n\t\t&.llms-fail, // quiz\n\t\t&.llms-failed,\n\t\t&.llms-expired,\n\t\t&.llms-cancelled,\n\t\t&.llms-txn-failed {\n\t\t\tcolor: darken( $color-red, 40 );\n\t\t\tbackground-color: $color-red;\n\t\t}\n\n\t\t&.llms-incomplete, // assignment\n\t\t&.llms-on-hold,\n\t\t&.llms-pending,\n\t\t&.llms-pending-cancel,\n\t\t&.llms-refunded,\n\t\t&.llms-txn-pending,\n\t\t&.llms-txn-refunded {\n\t\t\tcolor: darken( orange, 30 );\n\t\t\tbackground-color: orange;\n\t\t}\n\n\t}\n\n}\n","/******************************************************************\n\nSVG Styles\n\n******************************************************************/\n\nsvg {\n &.icon {\n height: 24px;\n width: 24px;\n display: inline-block;\n fill: currentColor; // Inherit color\n vertical-align: baseline; // Options: baseline, sub, super, text-top, text-bottom, middle, top, bottom\n\n // Different styling for when an icon appears in a button element\n button & {\n height: 18px;\n width: 18px;\n margin: 4px -4px 0 4px;\n filter: drop-shadow( 0 1px #eee );\n float: right;\n \n }&.menu-icon {\n height: 20px;\n width: 20px;\n display: inline-block;\n fill: currentColor;\n vertical-align: text-bottom;\n margin-right: 10px;\n \n }&.tree-icon {\n height: 13px;\n width: 13px;\n vertical-align: middle;\n \n }&.section-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n \n }&.button-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n \n }&.button-icon-attr {\n height: 10px;\n width: 10px;\n vertical-align: middle;\n \n }&.list-icon {\n height: 12px;\n width: 12px;\n vertical-align: middle;\n \n &.on {\n color: $color-blue;\n\n }&.off {\n color: $color-cinder;\n }\n \n }&.detail-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n cursor:default;\n \n &.on {\n color: $color-blue;\n\n }&.off {\n color: $color-lightgrey;\n }\n }\n\n }\n\n &.icon-ion {}\n\n &.icon-ion-edit {}\n\n // rotate for arrow tips\n &.icon-ion-arrow-up {\n transform: rotate(90deg);\n }\n\n use {\n pointer-events: none;\n }\n\n}","/******************************************************************\n\nMetabox Tabs\n\n******************************************************************/\n\n// free space up if the metabox is on the side\n#side-sortables .tab-content {\n\tpadding: 0;\n}\n\n.llms-mb-container .tab-content{\n display: none;\n background-color: #FFF;\n padding: 0 20px;\n \n ul:not(.select2-selection__rendered) {\n margin: 0 0 15px 0;\n\n > li {\n padding: 20px 0;\n margin: 0;\n\n &.select:not([class*=\"d-\"]) {\n \twidth: 100%;\n }\n\n &:last-child {\n border: 0;\n padding-bottom: 0;\n\n }\n\n &.top {\n border-bottom: 0;\n padding-bottom: 0;\n }\n\n }\n }\n\n .full-width { width: 100%; }\n\n #wp-content-editor-tools {\n background: none;\n }\n\n}\n\n.llms-mb-container .tab-content.llms-active{\n display: inherit;\n}\n\n\n.llms-mb-container .tab-content .no-border {\n border-bottom: 0px;\n}\n","/******************************************************************\n\nStyles for topModal modal\n\n******************************************************************/\n\n/**\n * Base modal styles\n */\n.topModal {\n display:none;\n position:relative;\n border:4px solid #808080;\n background:#fff;\n z-index:1000001;\n padding:2px;\n max-width:500px;\n margin: 34px auto 0;\n box-sizing: border-box;\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-color: #ffffff;\n border-radius: 2px;\n border: 1px solid #dddddd;\n\n}.topModalClose {\n float:right;\n cursor:pointer;\n margin-right: 10px;\n margin-top: 10px;\n\n}.topModalContainer {\n display: none;\n overflow: auto;\n overflow-y: hidden;\n position: fixed;\n top: 0 !important;\n right: 0;\n bottom: 0;\n left: 0;\n -webkit-overflow-scrolling: touch;\n width: auto !important;\n margin-left: 0 !important;\n background-color: transparent !important;\n z-index: 100002 !important;\n\n}.topModalBackground {\n display:none;\n background:#000;\n position:fixed;\n height:100%;\n width:100%;\n top:0 !important;\n left:0;\n margin-left: 0 !important;\n z-index: 100002 !important;\n box-sizing: border-box;\n overflow: auto;\n overflow-y: hidden;\n\n}body.modal-open {\n overflow: hidden;\n\n}.llms-modal-header {\n border-top-right-radius: 1px;\n border-top-left-radius: 1px;\n background: $color-blue;\n color: #eeeeee;\n padding: 10px 15px;\n font-size: 18px;\n\n}#llms-icon-modal-close {\n width:16px;\n height: 16px;\n fill: $color-white;\n\n}.llms-modal-content {\n padding: 20px;\n\n h3 {\n margin-top: 0;\n }\n\n}\n\n/**\n * Custom Modal Styles for LifterLMS\n */\n.llms-modal-form {\n\n h1 {\n margin-top: 0;\n }\n\n input[type=text] {\n width: 100%;\n }\n\n textarea,\n input[type=\"text\"],\n input[type=\"password\"],\n input[type=\"file\"],\n input[type=\"datetime\"],\n input[type=\"datetime-local\"],\n input[type=\"date\"],\n input[type=\"month\"],\n input[type=\"time\"],\n input[type=\"week\"],\n input[type=\"number\"],\n input[type=\"email\"],\n input[type=\"url\"],\n input[type=\"search\"],\n input[type=\"tel\"],\n input[type=\"color\"] {\n padding: 0 .4em 0 .4em;\n margin-bottom: 2em;\n vertical-align: middle;\n border-radius: 3px;\n min-width: 50px;\n max-width: 635px;\n width: 100%;\n min-height: 32px;\n background-color: #fff;\n border: 1px solid $color-lightgrey;\n margin: 0 0 24px 0;\n outline: none;\n transition: border 0.3s ease-in-out 0s;\n\n &:focus {\n background: $color-white;\n border: 1px solid $color-blue;\n\n }\n }\n\n textarea {\n padding: .4em !important;\n height: 100px !important;\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n outline: none;\n box-sizing: border-box;\n\n &:focus {\n background: $color-white;\n border: 1px solid $color-blue;\n\n }\n\n }\n\n .chosen-container-single .chosen-single {\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n border: 1px solid $color-lightgrey;\n width: 100%;\n background: $color-white !important;\n outline: none;\n box-sizing: border-box;\n box-shadow: 0 0 0 #fff;\n line-height: 32px;\n margin: 0 0 24px 0;\n\n &:focus {\n background: $color-white;\n border: 1px solid $color-blue;\n }\n }\n\n .chosen-container-single .chosen-single div b {\n margin-top: 4px;\n }\n\n .chosen-search input[type=text] {\n border: 1px solid $color-lightgrey;\n\n &:focus {\n background-color: $color-white;\n border: 1px solid $color-blue;\n }\n\n }\n\n .chosen-container-single .chosen-drop {\n margin-top: -28px;\n }\n\n .llms-button-primary, .llms-button-secondary {\n padding: 10px 10px;\n border-radius: 0;\n transition: .5s;\n box-shadow: 0 1px 1px #ccc;\n\n &.full {\n width: 100%;\n }\n }\n}\n\n.modal-open .select2-dropdown {\n z-index: 1000005;\n}\n",".button.llms-merge-code-button {\n\tvertical-align: middle;\n\tsvg {\n\t\tmargin-right: 2px;\n\t\tposition: relative;\n\t\ttop: 4px;\n\t\twidth: 16px;\n\t\tg {\n\t\t\tfill: currentColor;\n\t\t}\n\t}\n}\n\n.llms-mb-container {\n\t.llms-merge-code-wrapper {\n\t\tfloat: right;\n\t\ttop: -5px;\n\t}\n}\n\n.llms-merge-code-wrapper {\n\tdisplay: inline;\n\tposition: relative;\n}\n\n.llms-merge-codes {\n background: #f7f7f7;\n\tborder: 1px solid #ccc;\n\tborder-radius: 3px;\n box-shadow: 0 1px 0 #ccc;\n color: #555;\n\tdisplay: none;\n\tleft: 1px;\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 30px;\n\twidth: 200px;\n\n\tul {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\tli {\n\t\tcursor: pointer;\n\t\tmargin: 0;\n\t\tpadding: 4px 8px !important;\n\t\tborder-bottom: 1px solid #ccc;\n\t}\n\n\tli:hover {\n\t\tcolor: #23282d;\n\t\tbackground: #fefefe;\n\t}\n\n\t&.active {\n\t\tdisplay: block;\n\t\tz-index: 777;\n\t}\n\n}\n","/******************************************************************\n\nBase Mobile\n\n******************************************************************/\n\n.llms-nav-tab,\n.llms-nav-tab-filters {\n\tdisplay: block;\n\twidth: 100%;\n}\n\nform.llms-nav-tab-filters.full-width {\n\twidth: 100%;\n\n\tlabel {\n\t\tdisplay: inline-block;\n\t\twidth: 10%;\n\t\ttext-align: left;\n\t}\n\n\t.select2-container {\n\t\twidth: 85% !important;\n\t}\n}\n\n.llms-nav-tab-settings {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n//select box form wrapper\n#llms-form-wrapper {\n\t.llms-select {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\n\t}.llms-checkbox {\n\t\tdisplay: inline-block;\n\t\twidth: 100%;\n\t\ttext-align: left;\n\n\t}.llms-filter-options {\n\t\twidth: 100%;\n\t\t//margin-bottom: 20px;\n\n\t}.llms-date-select {\n\t\twidth: 100%;\n\t\tdisplay: inline-block;\n\t\tmargin-bottom: 20px;\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 100%;\n\t\t}\n\n\t}.llms-search-button {\n\t\t//display: inline-block;\n\t\t//width: 30%;\n\t\t#llms-search-button {\n\n\t\t//float: right;\n\t}\n\n\t}\n\n}\n\n// .llms-widget-full {\n// \t&.top {\n// \t\tmargin-top: 20px;\n// \t}\n// }\n// .llms-widget {\n// \t.form-table td {\n// \t\tpadding: 15px 0;\n// \t\tul { margin: 5px 0 0; }\n\n\n// \t\t.conditional-field {\n// \t\t\tdisplay: none;\n// \t\t\tmargin-left: 25px;\n// \t\t}\n// \t\t.conditional-radio:checked ~ .conditional-field {\n// \t\t\tdisplay: block;\n// \t\t}\n\n\n// \t}\n// }\n\nul.tabs li{\n display: block;\n }\n\n","//\n// Main Admin CSS File\n//\n\n@import \"_includes/vars\";\n@import \"_includes/vars-brand-colors\";\n\n@import \"_includes/extends\";\n@import \"_includes/buttons\";\n@import \"_includes/mixins\";\n\n@import \"_includes/tooltip\";\n\n// wp menu item\n@import \"admin/_wp-menu\";\n\n// grid layout for breakpoints\n@import \"admin/partials/grid\";\n\n// forms\n@import \"admin/modules/forms\";\n\n// voucher\n@import \"admin/modules/voucher\";\n\n// widgets\n@import \"admin/modules/widgets\";\n\n// icons\n@import \"admin/modules/icons\";\n\n// icons\n@import \"admin/modules/mb-tabs\";\n\n// icons\n@import \"admin/modules/top-modal\";\n\n@import \"admin/modules/merge-codes\";\n\n// Base (mobile)\n@import \"admin/breakpoints/base\";\n\n// Larger mobile devices\n@media only screen and (min-width: 481px) {\n\t@import \"admin/breakpoints/481up\";\n}\n\n// Tablets and smaller laptops\n@media only screen and (min-width: 768px) {\n\t@import \"admin/breakpoints/768up\";\n}\n\n// Desktops\n@media only screen and (min-width: 1030px) {\n\t@import \"admin/breakpoints/1030up\";\n}\n\n// Larger Monitors and TVs\n@media only screen and (min-width: 1240px) {\n\t@import \"admin/breakpoints/1240up\";\n}\n\n@import \"admin/main\";\n\n@import \"admin/llms-table\";\n@import \"admin/modules/llms-order-note\";\n\n// metabox related\n@import \"admin/metaboxes/llms-metabox\";\n@import \"admin/metaboxes/metabox-instructors\";\n@import \"admin/metaboxes/metabox-orders\";\n@import \"admin/metaboxes/metabox-engagements-type\";\n@import \"admin/metaboxes/metabox-product\";\n@import \"admin/metaboxes/metabox-students\";\n@import \"admin/metaboxes/metabox-field-repeater\";\n@import \"admin/metaboxes/builder-launcher\";\n\n@import \"admin/post-tables/llms_orders\";\n@import \"admin/post-tables/post-tables\";\n\n@import \"admin/tabs\";\n@import \"admin/fonts\";\n@import \"admin/reporting\";\n\n@import \"admin/settings\";\n\n@import \"admin/dashboard\";\n@import \"admin/dashboard-widget\";\n\n@import \"admin/quiz-attempt-review\";\n\n@import \"_includes/llms-form-field\";\n@import \"_includes/vendor/_font-awesome\";\n","/******************************************************************\n\nLarger Phones\n\n******************************************************************/\n\n//select box form wrapper\n#llms-form-wrapper {\n\t\n\t.llms-checkbox {\n\t\twidth: 33%;\n\t\t//text-align: center;\n\t\t\t\n\t}\n}\n","/******************************************************************\n\nTablets and small computers\n\n******************************************************************/\n\nul.tabs li{\n display: inline-block;\n }\n\n//option page tab menu\n.llms-nav-tab {\n\tdisplay: inline-block;\n\twidth: 33%;\n}\n.llms-nav-tab-settings {\n\tdisplay: inline-block;\n\twidth: 25%;\n}\n\n//select box form wrapper\n#llms-form-wrapper {\n\t.llms-select {\n\t\twidth: 50%;\n\t\tmax-width: 500px;\n\n\t}.llms-filter-options {\n\t\twidth: 50%;\n\t\t//display: inline-block;\n\t\tmax-width: 500px;\n\n\t}.llms-date-select {\n\t\twidth: 47.5%;\n\n\t\t&:first-child {\n\t\t\tmargin-right: 5%\n\t\t}\n\n\t}\n}\n\n.llms-widget {\n\tinput[type=\"text\"],\n\tinput[type=\"password\"],\n\tinput[type=\"datetime\"],\n\tinput[type=\"datetime-local\"],\n\tinput[type=\"date\"],\n\tinput[type=\"month\"],\n\tinput[type=\"time\"],\n\tinput[type=\"week\"],\n\tinput[type=\"number\"],\n\tinput[type=\"email\"],\n\tinput[type=\"url\"],\n\tinput[type=\"search\"],\n\tinput[type=\"tel\"],\n\tinput[type=\"color\"],\n\tselect,\n\ttextarea, {\n\t\twidth: 50%;\n\n\t\t&.medium { width: 30%; }\n\t\t&.small { width: 20%; }\n\t\t&.tiny { width: 10%; }\n\t}\n\n\t// .form-table th {\n\t// \twidth: 140px;\n\t// }\n\n}\n\n\n\n","/******************************************************************\n\nDesktop Stylesheet\n\n******************************************************************/\n\n//option page tab menu\n.llms-nav-tab {\n\tdisplay: inline-block;\n\twidth: 33.333%;\n}\n.llms-nav-tab-settings {\n\tdisplay: inline-block;\n\twidth: 25%;\n}\n\n//select box form wrapper\n#llms-form-wrapper {\n\t.llms-select {\n\t\tdisplay: inline-block;\n\t\twidth: 47.5%;\n\t\t&:first-child {\n\t\t\tmargin-right: 5%;\n\t\t}\n\n\t}.llms-filter-options {\n\t\tdisplay: inline-block;\n\t\twidth: 47.5%;\n\n\t\t&.date-filter {\n\t\t\tmargin-right: 5%;\n\t\t}.llms-date-select {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}.llms-date-select {\n\t\twidth: 47.5%;\n\n\t\t&:first-child {\n\t\t\tmargin-right: 5%\n\t\t}\n\n\t}\n}\n\n.llms-widget-row {\n\t@include clearfix;\n\t.llms-widget-1-5 {\n\t\tvertical-align: top;\n\t\twidth: 20%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t}\n\t.llms-widget-1-4 {\n\t\tvertical-align: top;\n\t\twidth: 25%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t}\n\t.llms-widget-1-3 {\n\t\twidth: 33.3%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t}\n\t.llms-widget-1-2 {\n\t\twidth: 50%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t\tvertical-align: top;\n\t}\n\n}\n","/******************************************************************\n\nlarge Monitor Stylesheet\n\n******************************************************************/\n\n.llms-nav-tab-filters,\n.llms-nav-tab-settings {\n\tfloat: left;\n\twidth: 12.5%;\n}\n",".wrap.lifterlms {\n\tmargin-top: 0;\n}\n\n.llms-header {\n\tbackground-color: #FFF;\n\tmargin: 0 0 0 -20px;\n\tpadding: 20px 10px;\n\tposition: relative;\n\tz-index: 1;\n\n\t.llms-inside-wrap {\n\t\tdisplay: flex;\n\t\tpadding: 0 10px;\n\t}\n\n\n\t.lifterlms-logo {\n\t\tflex: 0 0 190px;\n\t\tmax-height: 52px;\n\t\tmargin-right: 10px;\n\t}\n\n\t.llms-meta {\n\t\talign-self: center;\n\t\tdisplay: flex;\n\t\tflex: 1;\n\t\tfont-size: 16px;\n\t\tjustify-content: space-between;\n\t\tline-height: 1.5;\n\n\t\t.llms-version {\n\t\t\tbackground-color: #1d2327;\n\t\t\tcolor: #FFF;\n\t\t\tborder-radius: 999px;\n\t\t\tfont-size: 13px;\n\t\t\tfont-weight: 700;\n\t\t\tpadding: 6px 12px;\n\t\t}\n\n\t\ta {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t\t.llms-license {\n\t\t\tborder-right: 1px solid #CCC;\n\t\t\tfont-weight: 700;\n\t\t\tmargin-right: 12px;\n\t\t\tpadding-right: 12px;\n\n\t\t\ta {\n\t\t\t\ttext-decoration: none;\n\n\t\t\t\t&:before {\n\t\t\t\t\tcontent: \"\\f534\";\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tfont: 400 16px/1 dashicons;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tpadding-right: 3px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\tvertical-align: text-bottom;\n\t\t\t\t}\n\n\t\t\t\t&.llms-license-none {\n\t\t\t\t\tcolor: #888;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: \"\\f335\";\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&.llms-license-active {\n\t\t\t\t\tcolor: #008a20;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: \"\\f112\";\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\t.llms-support {\n\t\t\tfont-weight: 700;\n\n\t\t\ta {\n\t\t\t\tcolor: #1d2327;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n.llms-subheader {\n\talign-items: center;\n\tbackground-color: #FFF;\n\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );\n\tdisplay: flex;\n\tflex-direction: row;\n\tmargin-left: -20px;\n\tpadding: 10px 20px;\n\twidth: 100%;\n\tz-index: 1;\n\n\th1 {\n\t\tfont-weight: 700;\n\t\tpadding: 0;\n\n\t\ta {\n\t\t\tcolor: inherit;\n\t\t\ttext-decoration: none;\n\t\t}\n\t}\n\n}\n\n#post_course_difficulty {\n\tmin-width: 200px;\n}\n#_video-embed, #_audio-embed {\n\twidth: 100%;\n}\n\n.clear {\n\tclear: both;\n\twidth: 100%;\n}\n\nhr {\n\tbackground-color: #CCC;\n\tborder: none;\n\theight: 1px;\n\tmargin: 30px 0;\n\tpadding: 0;\n}\n\n.llms_certificate_default_image, .llms_certificate_image {\n\twidth: 300px;\n}\n\n.llms_achievement_default_image, .llms_achievement_image {\n\twidth: 120px;\n}\n\ndiv[id^=\"lifterlms-\"] .inside {\n\toverflow: visible;\n}\n\n.notice.llms-admin-notice {\n\tbackground-color: #FFF;\n\tborder: 1px solid #ccd0d4;\n\tbox-shadow: 0 1px 4px rgba( 0, 0, 0, 0.15 );\n\tdisplay: flex;\n\tpadding: 0 !important;\n\tposition: relative;\n\n\t.notice-dismiss {\n\t\ttext-decoration: none;\n\t}\n\n\t&.notice-warning {\n\t\tborder-left: 4px solid #F8954F;\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #FEF4ED;\n\t\t}\n\t}\n\n\t&.notice-info {\n\t\tborder-left: 4px solid #466DD8;\n\n\t\th3 {\n\t\t\tcolor: #466DD8;\n\t\t}\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #EDF0FB;\n\t\t}\n\n\t}\n\n\t&.notice-success {\n\t\tborder-left: 4px solid #18A957;\n\n\t\th3 {\n\t\t\tcolor: #18A957;\n\t\t}\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #E8F6EE;\n\t\t}\n\n\t}\n\n\t&.notice-error {\n\t\tborder-left: 4px solid #DF1642;\n\n\t\th3 {\n\t\t\tcolor: #9C0F2E;\n\t\t}\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #FCE8EC;\n\t\t}\n\n\t}\n\n\t.llms-admin-notice-icon {\n\t\tbackground-image: url(../../assets/images/lifterlms-icon-color.png);\n\t\tbackground-position: center center;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: 30px;\n\t\tmin-width: 70px;\n\n\t}\n\n\t.llms-admin-notice-content {\n\t\tcolor: #111;\n\t\tpadding: 20px;\n\t}\n\n\th3 {\n\t\tfont-size: 18px;\n\t\tfont-weight: 700;\n\t\tline-height: 25px;\n\t\tmargin: 0 0 15px 0;\n\t}\n\n\tbutton,\n\t.llms-button-primary {\n\t\tdisplay: inline-block;\n\t}\n\n\tp {\n\t\tfont-size: 14px;\n\t\tline-height: 22px;\n\t\tmargin: 0 0 15px 0;\n\t\tmax-width: 65em;\n\t\tpadding: 0;\n\t}\n\n\tp:last-of-type {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n\t&.small .dashicons {\n\t\tfont-size: 13px;\n\t\theight: 13px;\n\t\twidth: 13px;\n\t}\n\n\t&:hover {\n\t\tbox-shadow: none;\n\t}\n}\n\na.llms-view-as {\n\tline-height: 2;\n\tmargin-right: 8px;\n}\n\n.llms-image-field-preview {\n\tmax-height: 80px;\n\tvertical-align: middle;\n\twidth: auto;\n}\n\n.llms-image-field-remove {\n\t&.hidden { display: none; }\n}\n\n.llms-log-viewer {\n\tbackground: #fff;\n\tborder: 1px solid #e5e5e5;\n\tbox-shadow: 0 1px 1px rgba(0,0,0,.04);\n\tmargin: 20px 0;\n\tpadding: 25px;\n\n\tpre {\n\t\tfont-family: monospace;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twhite-space: pre-wrap;\n\t}\n}\n\n.llms-status--tools {\n\t.llms-table {\n\t\tbackground: #fff;\n\t\tborder: 1px solid #e5e5e5;\n\t\tbox-shadow: 0 1px 1px rgba(0,0,0,.04);\n\t\ttd, th {\n\t\t\tpadding: 10px;\n\t\t\tvertical-align: top;\n\t\t}\n\t\tth {\n\t\t\twidth: 28%;\n\t\t}\n\t\tp {\n\t\t\tmargin: 0 0 10px;\n\t\t}\n\t}\n}\n\n.llms-error {\n\tcolor: $color-red;\n\tfont-style: italic;\n}\n\n.llms-rating-stars {\n\tcolor: #ffb900;\n\ttext-decoration: none;\n}\n\n@media screen and (max-width: 782px) {\n\t.llms-header {\n\t\ttop: 46px;\n\n\t\t.llms-inside-wrap {\n\t\t\tflex-direction: column;\n\t\t\tgap: 20px;\n\n\t\t\t.lifterlms-logo {\n\t\t\t\talign-self: center;\n\t\t\t\tflex: inherit;\n\t\t\t\tmax-height: initial;\n\t\t\t\tmax-width: 200px;\n\t\t\t}\n\n\t\t\t.llms-meta {\n\t\t\t\tcolumn-gap: 10px;\n\t\t\t}\n\t\t}\n\t}\n}\n",".llms-table-wrap {\n\tposition: relative;\n}\n\n.llms-table-header {\n\tpadding: 0;\n\n\t@include clearfix();\n\n\th2 {\n\t\tfont-size: 20px;\n\t\tpadding: 0;\n\t\tdisplay: inline-block;\n\t\tline-height: 1.5;\n\t\tmargin: 0 0 20px 0;\n\t\tvertical-align: middle;\n\t}\n\n\t.llms-table-search,\n\t.llms-table-filters {\n\t\tfloat: right;\n\t\tpadding-left: 10px;\n\t}\n\n\t.llms-table-search input {\n\t\tmargin: 0;\n\t\tpadding: 0 8px;\n\t}\n\n}\n\n.llms-table {\n\n\tborder: 1px solid #c3c4c7;\n\tborder-collapse: collapse;\n\twidth: 100%;\n\n\ta:not(.small) {\n\t\tcolor: $color-brand-blue;\n\t\t&:hover {\n\t\t\tcolor: $color-brand-blue-dark;\n\t\t}\n\t}\n\n\ttd, th {\n\t\tborder-bottom: 1px solid #c3c4c7;\n\t\tpadding: 10px 12px;\n\t\ttext-align: center;\n\n\t\t&.expandable.closed {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.llms-button-primary,\n\t\t.llms-button-secondary,\n\t\t.llms-button-action,\n\t\t.llms-button-danger {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n\ttr.llms-quiz-pending {\n\t\ttd {\n\t\t\tfont-weight: 700;\n\t\t}\n\t}\n\n\tthead th,\n\ttfoot th {\n\t\tbackground-color: #FFF;\n\t\tfont-weight: 700;\n\n\t\ta.llms-sortable {\n\t\t\t// display: block;\n\t\t\tpadding-right: 16px;\n\t\t\tposition: relative;\n\t\t\ttext-decoration: none;\n\t\t\twidth: 100%;\n\t\t\t&.active {\n\t\t\t\t// show the current sorted when a sort is active\n\t\t\t\t&[data-order=\"DESC\"] .asc { opacity: 1; }\n\t\t\t\t&[data-order=\"ASC\"] .desc { opacity: 1; }\n\t\t\t}\n\t\t\t// show the opposite on hover\n\t\t\t&:hover {\n\t\t\t\t&[data-order=\"DESC\"] {\n\t\t\t\t\t.asc { opacity: 0; }\n\t\t\t\t\t.desc { opacity: 1; }\n\t\t\t\t}\n\t\t\t\t&[data-order=\"ASC\"] {\n\t\t\t\t\t.asc { opacity: 1; }\n\t\t\t\t\t.desc { opacity: 0; }\n\t\t\t\t}\n\t\t\t}\n\t\t\t.dashicons {\n\t\t\t\tcolor: #444;\n\t\t\t\tfont-size: 16px;\n\t\t\t\theight: 16px;\n\t\t\t\topacity: 0;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 16px;\n\t\t\t}\n\t\t}\n\t}\n\n\ttfoot th {\n\t\tborder-bottom: none;\n\n\t\t.llms-table-export {\n\t\t\tfloat: left;\n\t\t\t.llms-table-progress {\n\t\t\t\tbackground: #efefef;\n\t\t\t\tdisplay: none;\n\t\t\t\tmargin-left: 8px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 100px;\n\t\t\t}\n\t\t}\n\n\t\t.llms-table-pagination {\n\t\t\tfloat: right;\n\t\t}\n\n\t}\n\n\t&.zebra tbody tr:nth-child( even ) {\n\t\tth, td { background-color: #fff; }\n\t}\n\n\t&.zebra tbody tr:nth-child( odd ) {\n\t\tth, td { background-color: #f6f7f7; }\n\t}\n\n\t&.text-left {\n\t\ttd, th {\n\t\t\ttext-align: left;\n\t\t}\n\t}\n\n\t&.size-large {\n\t\ttd, th {\n\t\t\tfont-size: 14px;\n\t\t\tpadding: 10px 12px;\n\t\t}\n\t}\n\n\t.llms-drag-handle {\n\t\tcolor: #777;\n\t\tcursor: pointer;\n\t\t-webkit-transition: color 0.4s ease;\n\t\ttransition: color 0.4s ease;\n\t}\n\n\t.llms-action-icon {\n\t\tcolor: #777;\n\t\ttext-decoration: none;\n\n\t\t.tooltip {\n\t\t\tcursor: pointer;\n\t\t}\n\n\t\t&:hover {\n\t\t\tcolor: $color-blue;\n\t\t}\n\n\t\t&.danger:hover {\n\t\t\tcolor: $color-danger;\n\t\t}\n\t}\n\n\t.llms-table-page-count {\n\t\tfont-size: 12px;\n\t\tpadding: 0 5px;\n\t}\n\n}\n\n// progress bars within the tables\n.llms-table-progress {\n\ttext-align: center;\n\t.llms-table-progress-bar {\n\t\tbackground: #eee;\n\t\tborder-radius: 10px;\n\t\theight: 16px;\n\t\toverflow: hidden;\n\t\tposition: relative;\n\t\t.llms-table-progress-inner {\n\t\t\tbackground: $color-brand-blue;\n\t\t\theight: 100%;\n\t\t\ttransition: width 0.2s ease;\n\t\t}\n\t}\n\t.llms-table-progress-text {\n\t\tcolor: $color-brand-blue;\n\t\tfont-size: 12px;\n\t\tfont-weight: 700;\n\t\tline-height: 16px;\n\t}\n}\n\n\n.llms-table.llms-gateway-table,\n.llms-table.llms-integrations-table {\n\t.status {\n\t\t.fa {\n\t\t\tcolor: $color-brand-blue;\n\t\t\tfont-size: 22px;\n\t\t}\n\t}\n\t.sort {\n\t\tcursor: move;\n\t\ttext-align: center;\n\t\twidth: 10px;\n\t}\n}\n\n.llms-gb-table-notifications {\n\tth, td {\n\t\ttext-align: left;\n\t}\n}\n",".llms-order-note {\n\n\t.llms-order-note-content {\n\t\tbackground: #efefef;\n\t\tmargin-bottom: 10px;\n\t\tpadding: 10px;\n\t\tposition: relative;\n\t\t&:after {\n\t\t\tborder-style: solid;\n\t\t\tborder-color: #efefef transparent;\n\t\t\tborder-width: 10px 10px 0 0;\n\t\t\tbottom: -10px;\n\t\t\tcontent: '';\n\t\t\tdisplay: block;\n\t\t\theight: 0;\n\t\t\tleft: 20px;\n\t\t\tposition: absolute;\n\t\t\twidth: 0;\n\n\t\t}\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1.5;\n\t\t}\n\t}\n\n\t.llms-order-note-meta {\n\t\tcolor: #999;\n\t\tfont-size: 11px;\n\t\tmargin-left: 10px;\n\t}\n\n\n}\n","\n// This is a \"legacy\" rule that may be removable\n.llms-mb-list {\n\n\tlabel {\n\t\tfont-size: 15px;\n\t\tfont-weight: 700;\n\t\tline-height: 1.5;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.description {\n\t\tmargin-bottom: 8px;\n\t}\n\n\t.input-full {\n\t\twidth: 100%;\n\t}\n}\n\n\n#poststuff .llms-metabox {\n\n\t@extend %cf;\n\n\th2, h3, h6 {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\th2 {\n\t\tfont-size: 18px;\n\t\tfont-weight: 700;\n\t}\n\n\th3 {\n\t\tcolor: #777;\n\t\tfont-size: 16px;\n\t}\n\n\th4 {\n\t\tborder-bottom: 1px solid #e5e5e5;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.llms-transaction-test-mode {\n\t\tbackground: #ffffd7;\n\t\tfont-style: italic;\n\t\tleft: 0;\n\t\tpadding: 2px;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 0;\n\t\ttext-align: center;\n\t}\n\n\ta.llms-editable,\n\t.llms-metabox-icon,\n\tbutton.llms-editable {\n\t\tcolor: $color-grey;\n\t\ttext-decoration: none;\n\t\t&:hover {\n\t\t\tcolor: $color-brand-blue;\n\t\t}\n\t}\n\n\tbutton.llms-editable {\n\t\tborder: none;\n\t\tbackground: none;\n\t\tcursor: pointer;\n\t\tpadding: 0;\n\t\tvertical-align: top;\n\t}\n\n\th4 button.llms-editable {\n\t\tfloat: right;\n\t}\n\n\t.llms-table {\n\t\tmargin-top: 10px;\n\n\t}\n}\n\n.llms-metabox-section {\n\tbackground: #fff;\n\tmargin-top: 25px;\n\tposition: relative;\n\n\t&.no-top-margin {\n\t\tmargin-top: 0;\n\t}\n\n\t.llms-metabox-field {\n\t\tmargin: 15px 0;\n\t\tposition: relative;\n\t\tlabel {\n\t\t\tcolor: #777;\n\t\t\tdisplay: block;\n\t\t\tmargin-bottom: 5px;\n\t\t\tfont-weight: 500;\n\t\t\tvertical-align: baseline;\n\t\t}\n\n\t\tselect,\n\t\ttextarea,\n\t\tinput[type=\"text\"],\n\t\tinput[type=\"number\"] {\n\t\t\twidth: 100%;\n\t\t}\n\n\t\tinput.md-text {\n\t\t\twidth: 105px;\n\t\t}\n\n\t\tinput.sm-text {\n\t\t\twidth: 45px;\n\t\t}\n\n\n\t\t.llms-datetime-field {\n\n\t\t\t.llms-date-input {\n\t\t\t\twidth: 95px;\n\t\t\t}\n\t\t\t.llms-time-input {\n\t\t\t\twidth: 45px;\n\t\t\t}\n\t\t\tem {\n\t\t\t\tfont-style: normal;\n\t\t\t\tpadding: 0 3px;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\n}\n\n.llms-collapsible {\n\n\t@extend %clearfix;\n\n\tborder: 1px solid #e5e5e5;\n\tposition: relative;\n\tmargin-top: 0;\n\tmargin-bottom: -1px;\n\n\t&:last-child {\n\t\tmargin-bottom: 0;\n\t}\n\n\t&.opened .llms-collapsible-header {\n\t\t.dashicons-arrow-down {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.dashicons-arrow-up {\n\t\t\tdisplay: inline;\n\t\t}\n\t}\n\n\t.llms-collapsible-header {\n\t\t@extend %clearfix;\n\t\tpadding: 10px;\n\n\t\th3 {\n\t\t\tcolor: #777;\n\t\t\tmargin: 0;\n\t\t\tfont-size: 16px;\n\t\t}\n\n\t\t.dashicons-arrow-up {\n\t\t\tdisplay: inline;\n\t\t}\n\t\t.dashicons-arrow-up {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t.dashicons {\n\t\t\tcolor: #777;\n\t\t\tcursor: pointer;\n\t\t\ttransition: color .4s ease;\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-blue;\n\t\t\t}\n\n\t\t\t&.dashicons-warning,&.dashicons-warning:hover,\n\t\t\t&.dashicons-trash:hover,\n\t\t\t&.dashicons-no:hover {\n\t\t\t\tcolor: $color-danger;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t.llms-collapsible-body {\n\t\t@extend %clearfix;\n\t\tdisplay: none;\n\t\tpadding: 10px;\n\t}\n\n}\n","._llms_instructors_data.repeater {\n\t.llms-repeater-rows .llms-repeater-row:first-child {\n\t\t.llms-repeater-remove { display: none; }\n\t}\n\n\t.llms-mb-list {\n\t\tpadding: 0 5px !important;\n\t}\n}\n",".post-type-llms_order #post-body-content { display: none; }\n#lifterlms-order-details {\n\t.handlediv,\n\t.handlediv.button-link,\n\t.postbox-header { display: none;}\n\t.inside {\n\t\tpadding: 20px;\n\t\tmargin-top: 0;\n\n\t}\n}\n\n// failed transaction color\n.llms-table tbody tr.llms-txn-failed td {\n\tbackground-color: rgba( $color-red, 0.5 );\n\tborder-bottom-color: rgba( $color-red, 0.5 );\n}\n\n// refunded transaction color\n.llms-table tbody tr.llms-txn-refunded td {\n\tbackground-color: rgba( orange, 0.5 );\n\tborder-bottom-color: rgba( orange, 0.5 );\n}\n\n.llms-txn-refund-form,\n.llms-manual-txn-form {\n\t.llms-metabox-section {\n\t\tmargin-top: 0;\n\t}\n\t.llms-metabox-field {\n\t\ttext-align: right;\n\t\tinput {\n\t\t\t&[type=\"number\"] { max-width: 100px; }\n\t\t\t&[type=\"text\"] { max-width: 340px; }\n\n\t\t}\n\t}\n}\n\n.llms-manual-txn-form {\n\tbackground-color: #eaeaea;\n\t.llms-metabox-section {\n\t\tbackground-color: #eaeaea;\n\t}\n}\n\n#llms-remaining-edit {\n\tdisplay: none;\n}\n.llms-remaining-edit--content {\n\tlabel, span, textarea {\n\t\tdisplay: block;\n\t}\n\n\tlabel {\n\t\tmargin-bottom: 20px;\n\t}\n\n\ttextarea, input {\n\t\twidth: 100%;\n\t}\n}\n",".submitbox .llms-mb-section,\n.llms-award-engagement-submitbox .llms-mb-list {\n\tmargin-bottom: 12px;\n\t&:last-of-type {\n\t\tmargin-bottom: 0;\n\t}\n\t@at-root .sync-action,\n\t&.student-info,\n\t&.post_author_override label {\n\t\t&:before {\n\t\t\t// dashicons-admin-users.\n\t\t\tfont: normal 20px/1 dashicons;\n\t\t\tspeak: never;\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: -1px;\n\t\t\tpadding-right: 3px;\n\t\t\tvertical-align: top;\n\t\t\t-webkit-font-smoothing: antialiased;\n\t\t\t-moz-osx-font-smoothing: grayscale;\n\t\t\tposition: relative;\n\t\t\ttop: -1px;\n\t\t\tcolor: #8c8f94;\n\t\t\tbody:not(.admin-color-fresh) & {\n\t\t\t\tcolor: currentColor; // Used when selecting a different admin color scheme from the default one.\n\t\t\t}\n\t\t}\n\t}\n\t&.student-info,\n\t&.post_author_override label {\n\t\t&:before {\n\t\t\tcontent: '\\f110';\n\t\t}\n\t}\n\t@at-root .sync-action:before {\n\t\tcontent: '\\f113';\n\t\tcolor: white;\n\t}\n\t&.post_author_override label {\n\t\tdisplay: inline-block;\n\t\twidth: auto;;\n\t}\n}\n",".llms-metabox {\n\n\t#llms-new-access-plan-model {\n\t\tdisplay: none;\n\t}\n\n\t.llms-access-plans {\n\t\t@extend %clearfix;\n\t\tmargin-top: 10px;\n\n\t\t> .llms-no-plans-msg { display: none; }\n\t\t> .llms-no-plans-msg:last-child {\n\t\t\tbox-shadow: inset 0 0 0 1px #e5e5e5;\n\t\t\tdisplay: block;\n\t\t\ttext-align: center;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t&.dragging {\n\t\t\tbackground: #efefef;\n\t\t\tbox-shadow: inset 0 0 0 1px #e5e5e5;\n\t\t}\n\n\t\t.llms-spinning {\n\t\t\tz-index: 1;\n\t\t}\n\n\t\t.llms-invalid {\n\t\t\tborder-color: $color-danger;\n\t\t\t.dashicons-warning {\n\t\t\t\tdisplay: inline;\n\t\t\t}\n\t\t}\n\n\t\t.dashicons-warning {\n\t\t\tdisplay: none;\n\t\t}\n\n\t}\n\n\t.llms-access-plan {\n\n\t\ttext-align: left;\n\n\t\t[data-tip]:before {\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t.llms-plan-link,\n\t\t[data-controller] {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&:hover,\n\t\t&.opened {\n\t\t\t.llms-plan-link {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t}\n\n\t\t.llms-metabox-field {\n\t\t\tmargin: 5px 0;\n\t\t}\n\n\t\t.llms-required {\n\t\t\tcolor: $color-danger;\n\t\t\tmargin-left: 3px;\n\t\t}\n\n\t}\n\n}\n",".llms-metabox-students {\n\t.llms-table {\n\t\ttr .name {\n\t\t\ttext-align: left;\n\t\t}\n\t}\n\n\t.llms-add-student:hover {\n\t\tcolor: $color-green;\n\t}\n\t.llms-remove-student:hover {\n\t\tcolor: $color-red;\n\t}\n\n}\n",".llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields > li.llms-mb-list {\n\tborder-bottom: none;\n\tpadding: 0 0 10px;\n}\n\n.llms-mb-list.repeater {\n\n\t.llms-repeater-rows {\n\t\tposition: relative;\n\t\tmargin-top: 10px;\n\t\tmin-height: 10px;\n\n\t\t&.dragging {\n\t\t\tbackground: #efefef;\n\t\t\tbox-shadow: inset 0 0 0 1px #e5e5e5;\n\t\t}\n\t}\n\n\t.llms-repeater-row {\n\t\tbackground: #fff;\n\t}\n\n\t.llms-mb-repeater-fields {\n\n\t}\n\n\t.llms-mb-repeater-footer {\n\t\ttext-align: right;\n\t\tmargin-top: 20px;\n\t}\n\n\t.tmce-active .wp-editor-area {\n\t\tcolor: #32373c; // wp core default color\n\t}\n\n}\n",".llms-builder-launcher {\n\n\tp {\n\t\tmargin-top: 0;\n\t}\n\n\tol {\n\t\tmargin-top: -6px;\n\t}\n\n\t.llms-button-primary {\n\t\tbox-sizing: border-box;\n\t}\n\n}\n",".wp-list-table {\n\t@include order_status_badges();\n}\n\n#lifterlms-order-transactions .llms-table tfoot th {\n\ttext-align: right;\n}\n",".llms-post-table-post-filter {\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tmax-width: 100%;\n\twidth: 220px;\n}\n",".llms-nav-tab-wrapper {\n\tbackground: $color-blue;\n\tmargin: 20px 0;\n\n\t&.llms-nav-secondary {\n\t\tbackground: #e1e1e1;\n\n\t\t.llms-nav-item {\n\t\t\tmargin: 0;\n\n\t\t\t.llms-nav-link:hover,\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: darken( #e1e1e1, 8 );\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-nav-link {\n\t\t\tcolor: #414141;\n\t\t\tfont-size: 15px;\n\t\t\tpadding: 8px 14px;\n\n\t\t\t.dashicons {\n\t\t\t\tfont-size: 15px;\n\t\t\t\theight: 15px;\n\t\t\t\twidth: 15px;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t&.llms-nav-text {\n\t\tbackground: inherit;\n\t\t.llms-nav-items {\n\t\t\tpadding-left: 0;\n\t\t}\n\t\t.llms-nav-item {\n\t\t\tbackground: inherit;\n\t\t\tcolor: #646970;\n\t\t\t&:last-child:after {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tcontent: '|';\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin: 0 8px 0 6px;\n\t\t\t}\n\t\t\t.llms-nav-link:hover {\n\t\t\t\tbackground: inherit;\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t}\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: inherit;\n\t\t\t\tcolor: #000;\n\t\t\t\tfont-weight: 600;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\t\t\t.llms-nav-link {\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tletter-spacing: 0;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\ttext-decoration: underline;\n\t\t\t\ttext-transform: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.llms-nav-style-tabs {\n\t\tbackground-color: $color-brand-dark-blue;\n\t\tmargin: 0;\n\t\tpadding-top: 8px;\n\n\t\t.llms-nav-item {\n\t\t\tmargin: 0 3px;\n\n\t\t\t.llms-nav-link {\n\t\t\t\tborder-top-left-radius: 4px;\n\t\t\t\tborder-top-right-radius: 4px;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground-color: #FFF;\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t&.llms-nav-style-filters {\n\t\tbackground-color: $color-brand-blue;\n\t\tborder-radius: 12px;\n\t\tmargin: 20px 0;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\n\t\t.llms-nav-items {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: space-between;\n\t\t\tpadding-left: 0;\n\n\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\tflex-direction: row;\n\t\t\t}\n\n\t\t\t.llms-nav-item {\n\t\t\t\tfloat: none;\n\n\t\t\t\t.llms-nav-link {\n\t\t\t\t\tpadding: 14px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.llms-nav-items {\n\t\t@include clearfix;\n\t\tmargin: 0;\n\t\tpadding-left: 10px;\n\t}\n\n\t\t.llms-nav-item {\n\t\t\tmargin: 0;\n\n\t\t\t.llms-nav-link:hover {\n\t\t\t\tbackground: $color-brand-blue;\n\t\t\t}\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: $color-brand-dark-blue;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tfont-weight: 400;\n\t\t\t}\n\n\t\t\t@media only screen and (min-width: 768px) {\n\t\t\t\tfloat: left;\n\n\t\t\t\t&.llms-nav-item-right {\n\t\t\t\t\tfloat: right;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t\t.llms-nav-link {\n\n\t\t\t\tcolor: #fff;\n\t\t\t\tcursor: pointer;\n\t\t\t\tdisplay: block;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 15px;\n\t\t\t\tpadding: 9px 18px;\n\t\t\t\ttext-align: center;\n\t\t\t\ttext-decoration: none;\n\t\t\t\ttransition: all .3s ease;\n\n\t\t\t}\n}\n","#llms-options-page-contents {\n\th2 {\n\t\tcolor: #999;\n\t\tfont-weight: 500;\n\t\tletter-spacing: 2px;\n\t\tborder-bottom: 1px solid #999;\n\t}\n}\n",".llms-reporting.wrap {\n\n\t.llms-options-page-contents {\n\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t}\n\t}\n\n\t.llms-stab-title {\n\t\tcolor: $color-brand-dark-blue;\n\t\tfont-size: 36px;\n\t\tfont-weight: 300;\n\t\tmargin-bottom: 20px;\n\t}\n\n\ttd.id a {\n\t\ttext-decoration: none;\n\t}\n\n\tth.id, td.id,\n\tth.name, td.name,\n\tth.registered, td.registered,\n\tth.last_seen, td.last_seen,\n\tth.overall_progress, td.overall_progress,\n\tth.title, td.title,\n\tth.course, td.course,\n\tth.lesson, td.lesson { text-align: left; }\n\n\ttd.section-title {\n\t\tbackground: #eaeaea;\n\t\ttext-align: left;\n\t\tfont-weight: 700;\n\t\tpadding: 16px 4px;\n\t}\n\n\ttd.questions-table {\n\t\ttext-align: left;\n\n\t\t.correct,\n\t\t.question,\n\t\t.selected {\n\t\t\ttext-align: left;\n\t\t\tmax-width: 300px;\n\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tmax-width: 64px;\n\t\t\t}\n\t\t}\n\t}\n\n\ttable.quiz-attempts {\n\t\tmargin-bottom: 40px;\n\t}\n\n\t&.tab--students {\n\t\t.llms-options-page-contents {\n\n\t\t\t#llms-award-certificate-wrapper .components-button.is-secondary {\n\t\t\t\tbackground: #e1e1e1;\n\t\t\t\tborder-radius: 8px;\n\t\t\t\tbox-shadow: none;\n\t\t\t\tcolor: #414141;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tfont-weight: 700;\n\t\t\t\theight: auto;\n\t\t\t\tpadding: 8px 14px;\n\t\t\t}\n\n\t\t}\n\t}\n\n\t&.tab--enrollments,\n\t&.tab--sales {\n\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t.llms-options-page-contents {\n\t\t\tbox-shadow: none;\n\t\t\tbackground: none;\n\t\t\tmargin-top: 20px;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t.llms-nav-style-filters {\n\n\t\t\t.llms-analytics-form {\n\t\t\t\talign-items: center;\n\t\t\t\talign-self: center;\n\t\t\t\tcolor: #FFF;\n\t\t\t\tdisplay: flex;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tgap: 5px;\n\n\t\t\t\tlabel {\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t}\n\n\t\t\t\tinput {\n\t\t\t\t\tborder: 0;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0 4px;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t\twidth: 110px;\n\t\t\t\t}\n\n\t\t\t\t.select2-container {\n\t\t\t\t\tinput {\n\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.button.small {\n\t\t\theight: 23px;\n\t\t\tline-height: 23px;\n\t\t}\n\n\t\t.llms-analytics-filters {\n\t\t\tdisplay: none;\n\n\t\t\t.llms-inside-wrap {\n\t\t\t\tbackground-color: #FFF;\n\t\t\t\tbackground-color: #FFF;\n\t\t\t\tbox-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n\t\t\t\tmargin: -20px 10px 20px 10px;\n\t\t\t\tpadding: 20px;\n\t\t\t}\n\n\t\t\t.llms-nav-items {\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\tgap: 20px;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tmargin: 0;\n\n\t\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\t\tflex-direction: row;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t.llms-nav-item {\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\twidth: 100%;\n\n\t\t\t\tlabel {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t\tmargin: 0 0 5px 0;\n\t\t\t\t}\n\n\t\t\t\t.select2-selection__rendered{\n\t\t\t\t\tword-wrap: break-word;\n\t\t\t\t\ttext-overflow: inherit;\n\t\t\t\t\twhite-space: normal;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tmargin: 0;\n\t\t\t\ttext-align: right;\n\n\t\t\t\t.llms-button-primary {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\t}\n\n\t.llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap {\n\t\twidth: 160px;\n\t}\n\n\n}\n\n.llms-charts-wrapper {\n\tbackground-color: #FFF;\n\tborder: 1px solid #dedede;\n\tborder-radius: 12px;\n\tbox-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n\tpadding: 20px;\n}\n\n.llms-reporting-tab {\n\n\th1, h2, h3, h4, h5, h6 {\n\t\tmargin: 0;\n\t\ta {\n\t\t\tcolor: $color-brand-blue;\n\t\t\ttext-decoration: none;\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t}\n\t\t}\n\t}\n\n\th2 {\n\t\tfont-size: 22px;\n\t\tline-height: 1.5;\n\n\t\t&.llms-table-title {\n\t\t\tmargin-bottom: 20px;\n\t\t}\n\n\t}\n\n\th5 {\n\t\tfont-size: 15px;\n\t\tline-height: 1.5;\n\t}\n\n\t.llms-reporting-body {\n\t\tbackground-color: #FFF;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, .13 );\n\t\tmargin: 20px auto;\n\t\tpadding: 0;\n\n\t\t.llms-reporting-stab {\n\t\t\tpadding: 30px;\n\n\t\t\t.llms-table-header {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t}\n\n\t\t.llms-gb-tab {\n\t\t\tpadding: 30px;\n\t\t}\n\n\t\t.llms-reporting-header {\n\t\t\tpadding: 30px;\n\t\t\tmargin: 0;\n\n\t\t\t.llms-reporting-header-img {\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-right: 10px;\n\t\t\t\toverflow: hidden;\n\t\t\t\tvertical-align: middle;\n\t\t\t\timg {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tmax-height: 64px;\n\t\t\t\t\twidth: auto;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-reporting-header-info {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tvertical-align: middle;\n\n\t\t\t}\n\n\t\t}\n\t}\n\n}\n\n.llms-reporting-breadcrumbs {\n\tmargin: 0;\n\tpadding: 0;\n\ta {\n\t\tcolor: $color-brand-blue;\n\t\tfont-size: 15px;\n\t\ttext-decoration: none;\n\t\t&:hover {\n\t\t\tcolor: $color-brand-blue-dark;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: ' > ';\n\t\t\tcolor: #646970;\n\t\t}\n\n\t\t&:last-child {\n\t\t\tcolor: #000;\n\t\t\tfont-weight: 700;\n\t\t\t&:after { display: none; }\n\t\t}\n\t}\n}\n\n#llms-students-table .name {\n\ttext-align: left;\n}\n\n.llms-reporting-tab-content {\n\tdisplay: flex;\n\n\t> header {\n\t\t@include clearfix;\n\t}\n\n\th3 {\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.llms-reporting-tab-filter {\n\t\tfloat: right;\n\t\tposition: relative;\n\t\tmargin-right: 0.75em;\n\t\twidth: 180px;\n\t\ttop: -3px;\n\t}\n\n\n\t.llms-reporting-tab-main {\n\t\tflex: 3;\n\t\tmax-width: 75%;\n\t}\n\t.llms-reporting-tab-side {\n\t\tflex: 1;\n\t\tmargin-left: 20px;\n\t}\n\n\t> .llms-table-wrap {\n\t\tflex: 1;\n\t}\n\n}\n\n\n.llms-reporting-widgets {\n\t@include clearfix;\n}\n\n.llms-reporting-widget {\n\n\tborder-top: 4px solid $color-brand-blue;\n\tbackground: #fafafa;\n\tmargin-bottom: 10px;\n\tpadding: 30px;\n\t@include clearfix;\n\n\t.fa {\n\t\tcolor: #999;\n\t\tfloat: left;\n\t\tfont-size: 32px;\n\t\tmargin-right: 10px;\n\t}\n\n\tstrong {\n\t\tcolor: #333;\n\t\tfont-size: 20px;\n\t\tline-height: 1.2;\n\t}\n\n\t&.llms-reporting-student-address {\n\t\tstrong {\n\t\t\tline-height: 1.1;\n\t\t}\n\t}\n\n\tsup,\n\t.llms-price-currency-symbol {\n\t\tfont-size: 75%;\n\t\tposition: relative;\n\t\ttop: -4px;\n\t\tvertical-align: baseline;\n\t}\n\n\tsmall {\n\t\tfont-size: 13px;\n\t\t&.compare {\n\t\t\tmargin-left: 5px;\n\t\t\t&.positive {\n\t\t\t\tcolor: $color-green;\n\t\t\t}\n\t\t\t&.negative {\n\t\t\t\tcolor: $color-red;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n.llms-reporting-event {\n\tborder-left: 4px solid #555;\n\tbackground: #fafafa;\n\tfont-size: 11px;\n\tline-height: 1.2;\n\tmargin-bottom: 0.75em;\n\tpadding: 10px;\n\t@include clearfix;\n\n\t&.color--blue {\n\t\tborder-left-color: $color-blue;\n\t}\n\n\t&.color--green,\n\t&._enrollment_trigger,\n\t&._is_complete.yes {\n\t\tborder-left-color: $color-green;\n\t}\n\n\t&.color--purple,\n\t&._status.enrolled {\n\t\tborder-left-color: $color-purple;\n\t}\n\n\t&.color--red,\n\t&._status.expired,\n\t&._status.cancelled {\n\t\tborder-left-color: $color-red;\n\t}\n\t&.color--orange,\n\t&._achievement_earned,\n\t&._certificate_earned,\n\t&._email_sent {\n\t\tborder-left-color: $color-orange;\n\t}\n\n\ttime {\n\t\tcolor: #888;\n\t}\n\n\t.llms-student-avatar {\n\t\tmargin-left: 10px;\n\t\tfloat: right;\n\t}\n\n\ta {\n\t\ttext-decoration: none;\n\t\tcolor: inherit;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\t.llms-reporting.wrap {\n\t\t.llms-options-page-contents {\n\t\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n@import \"../_includes/quiz-result-question-list\";\n",".llms-quiz-attempt-results {\n\tmargin: 0;\n\tpadding: 0;\n\tlist-style-type: none;\n\n\t.llms-quiz-attempt-question {\n\t\tbackground: #efefef;\n\t\tmargin: 0 0 10px;\n\t\tposition: relative;\n\n\t\t.toggle-answer {\n\t\t\t@include clearfix();\n\t\t\tcolor: inherit;\n\t\t\tdisplay: block;\n\t\t\tpadding: 10px 35px 10px 10px;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t&.status--waiting.correct,\n\t\t&.status--waiting.incorrect {\n\t\t\tbackground: rgba( $color-orange, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-orange;\n\t\t\t}\n\t\t}\n\n\t\t&.status--graded.correct {\n\t\t\tbackground: rgba( $color-green, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-green;\n\t\t\t}\n\t\t}\n\t\t&.status--graded.incorrect {\n\t\t\tbackground: rgba( $color-red, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-red;\n\t\t\t}\n\t\t}\n\t\tpre {\n\t\t\toverflow: auto;\n\t\t}\n\t\t.llms-question-title {\n\t\t\tfloat: left;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-points {\n\t\t\tfloat: right;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-status-icon-tip {\n\t\t\tposition: absolute;\n\t\t\tright: -12px;\n\t\t\ttop: -2px;\n\t\t}\n\n\t\t.llms-status-icon {\n\t\t\tcolor: rgba( 255, 255, 255, 0.65 );\n\t\t\tborder-radius: 50%;\n\t\t\tfont-size: 30px;\n\t\t\theight: 40px;\n\t\t\tline-height: 40px;\n\t\t\ttext-align: center;\n\t\t\twidth: 40px;\n\t\t}\n\n\t\t.llms-quiz-attempt-question-main {\n\t\t\tdisplay: none;\n\t\t\tpadding: 0 10px 10px;\n\n\t\t\t.llms-quiz-results-label {\n\t\t\t\tfont-weight: 700;\n\t\t\t\tmargin-bottom: 10px;\n\t\t\t}\n\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tmargin: 0 0 0 30px;\n\t\t\t\t\t&:only-child {\n\t\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tmax-width: 200px;\n\t\t\t}\n\n\t\t\t.llms-quiz-attempt-answer-section {\n\t\t\t\tborder-top: 2px solid rgba( #fff, 0.5 );\n\t\t\t\tmargin-top: 20px;\n\t\t\t\tpadding-top: 20px;\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-top: none;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tpadding-top: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t&.type--picture_choice,\n\t\t&.type--picture_reorder {\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tlist-style-type: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 5px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type--removed {\n\t\t\t.llms-question-title {\n\t\t\t\tfont-style: italic;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t\topacity: .5;\n\t\t}\n\n\t}\n}\n",".wrap.llms-reporting,\n.wrap.lifterlms-settings,\n.wrap.llms-status {\n\n\t.llms-inside-wrap {\n\t\tbox-sizing: border-box;\n\t\tmargin: 0 auto;\n\n\t\t.llms-nav-text {\n\t\t\tmargin: 0 auto;\n\t\t}\n\t}\n\n\t.llms-subheader {\n\n\t\t.llms-save {\n\t\t\tflex: auto;\n\t\t\ttext-align: right;\n\t\t}\n\n\t}\n\n\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\tbackground-color: #FFF;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );\n\t\tmargin: 0 -20px 20px -10px;\n\n\t\t.llms-nav-items {\n\t\t\tpadding-left: 0;\n\t\t}\n\n\t\t.llms-nav-item {\n\t\t\t.llms-nav-link:hover {\n\t\t\t\tbackground: #f0f0f1;\n\t\t\t\tcolor: #222222;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: #fafafa;\n\t\t\t\tcolor: $color-blue;\n\t\t\t\tborder-top-color: $color-blue;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\n\t\t.llms-nav-link {\n\t\t\tborder-top: 2px solid transparent;\n\t\t\tpadding: 14px;\n\t\t}\n\n\t}\n\n\t.llms-setting-group {\n\t\tbackground-color: #FFF;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, .13 );\n\t\tmargin: 20px auto;\n\t\tpadding: 20px;\n\n\t\t.llms-label {\n\t\t\tborder-bottom: 1px solid #efefef;\n\t\t\tfont-weight: 700;\n\t\t\tfont-size: 20px;\n\t\t\tpadding: 20px;\n\t\t\tmargin: -20px -20px 20px;\n\n\t\t\t.llms-button-primary {\n\t\t\t\tmargin-left: 10px;\n\t\t\t}\n\t\t}\n\n\t\t.llms-help-tooltip .dashicons {\n\t\t\tcolor: #444;\n\t\t\tcursor: help;\n\t\t}\n\n\t\t.form-table {\n\t\t\tmargin: 0;\n\t\t\ttr:first-child .llms-subtitle {\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\n\t\ttd[colspan=\"2\"] {\n\t\t\tpadding-top: 0;\n\t\t\tpadding-left: 0;\n\t\t}\n\n\t\ttr.llms-disabled-field {\n\t\t\topacity: 0.5;\n\t\t\tpointer-events: none;\n\t\t}\n\n\t\tp {\n\t\t\tfont-size: 14px;\n\t\t}\n\t\tinput[type=\"text\"],\n\t\tinput[type=\"password\"],\n\t\tinput[type=\"datetime\"],\n\t\tinput[type=\"datetime-local\"],\n\t\tinput[type=\"date\"],\n\t\tinput[type=\"month\"],\n\t\tinput[type=\"time\"],\n\t\tinput[type=\"week\"],\n\t\tinput[type=\"number\"],\n\t\tinput[type=\"email\"],\n\t\tinput[type=\"url\"],\n\t\tinput[type=\"search\"],\n\t\tinput[type=\"tel\"],\n\t\tinput[type=\"color\"],\n\t\tselect,\n\t\ttextarea:not(.wp-editor-area) {\n\t\t\twidth: 50%;\n\t\t\t&.medium { width: 30%; }\n\t\t\t&.small { width: 20%; }\n\t\t\t&.tiny { width: 10%; }\n\t\t}\n\t}\n\n\t@media only screen and (min-width: 782px) {\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\t.llms-nav-item {\n\t\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\t\tbackground: #fff;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Email Delivery providers.\n\t#llms-mailhawk-connect {\n\t\theight: auto;\n\t\tmargin: 0 0 6px;\n\t\tposition: relative;\n\n\t\t.dashicons {\n\t\t\tmargin: -4px 4px 0 0;\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\t#llms-sendwp-connect {\n\t\theight: auto;\n\t\tmargin: 0 0 6px;\n\t\tposition: relative;\n\n\t\t.fa {\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\t.wrap.lifterlms-settings {\n\t\t.llms-subheader {\n\t\t\theight: 40px;\n\t\t\tposition: sticky;\n\t\t\ttop: 32px;\n\t\t}\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin: 0 -20px 20px -22px;\n\n\t\t\t.llms-nav-items {\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\n\t\t}\n\t}\n\n\t.wrap.llms-reporting {\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin: 0 -20px 20px -22px;\n\n\t\t\t.llms-nav-items {\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\n\t\t}\n\t}\n\t\n\n\t.wrap.llms-status {\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin: 0 -20px 20px -22px;\n\n\t\t\t.llms-nav-items {\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\n\t\t}\n\t}\n}\n",".wrap.llms-dashboard {\n\n\t.llms-inside-wrap {\n\t\tpadding-top: 30px;\n\t}\n\n\t#poststuff {\n\n\t\th2 {\n\t\t\tpadding: 12px 20px;\n\t\t}\n\n\t}\n\n\t.llms-dashboard-activity {\n\n\t\th2 {\n\t\t\tfont-size: 20px;\n\t\t\tfont-weight: 700;\n\t\t\tline-height: 1.5;\n\t\t\tmargin-top: 0;\n\t\t\ttext-align: center;\n\t\t}\n\t}\n\n\t.postbox {\n\t\tbackground-color: #FFF;\n\t\tborder: none;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.13 );\n\n\t\t.postbox-header {\n\t\t\tborder-bottom-color: #efefef;\n\n\t\t}\n\n\t\t.inside {\n\t\t\tpadding: 20px;\n\t\t}\n\t}\n\n\t#llms_dashboard_addons {\n\n\t\t.llms-addons-wrap {\n\t\t\tmargin-top: 0;\n\n\t\t\t.llms-add-on-item {\n\t\t\t\tmargin-top: 0;\n\n\t\t\t\tp {\n\t\t\t\t\ttext-align: left;\n\t\t\t\t}\n\n\t\t\t\tfooter.llms-actions {\n\t\t\t\t\tpadding-top: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tp {\n\t\t\ttext-align: center;\n\n\t\t\t.llms-button-primary {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-top: 15px;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t#llms_dashboard_quick_links {\n\n\t\tul {\n\t\t\tlist-style: disc;\n\t\t\tmargin: 5px 0 0 20px;\n\n\t\t\tli {\n\t\t\t\tfont-size: 15px;\n\t\t\t\tline-height: 1.5;\n\t\t\t}\n\t\t}\n\n\t\t.llms-quick-links {\n\t\t\tdisplay: grid;\n\t\t\tgrid-template-columns: 1fr;\n\t\t\tgrid-gap: 30px;\n\n\t\t\ta {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.llms-list {\n\n\t\t\t\th3 {\n\t\t\t\t\tmargin: 0 0 10px 0;\n\t\t\t\t}\n\n\t\t\t\tul {\n\t\t\t\t\tmargin-bottom: 20px;\n\n\t\t\t\t\t&.llms-checklist {\n\t\t\t\t\t\tlist-style: none;\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.fa {\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\twidth: 16px;\n\t\t\t\t}\n\n\t\t\t\t.fa-check {\n\t\t\t\t\tcolor: #008a20;\n\t\t\t\t}\n\n\t\t\t\t.fa-times {\n\t\t\t\t\tcolor: #d63638;\n\t\t\t\t}\n\n\t\t\t\t.llms-button-primary,\n\t\t\t\t.llms-button-secondary,\n\t\t\t\t.llms-button-action {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\tgrid-template-columns: 1fr 1fr 1fr;\n\t\t\t}\n\t\t}\n\n\t\t.llms-help-links {\n\t\t\tdisplay: grid;\n\t\t\tgrid-template-columns: 1fr 1fr;\n\t\t\tgrid-gap: 20px;\n\n\t\t\t.llms-list {\n\n\t\t\t\th3 {\n\t\t\t\t\tmargin: 0;\n\n\t\t\t\t\t.dashicons {\n\t\t\t\t\t\tcolor: #AAA;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\tgrid-template-columns: 1fr 1fr 1fr 1fr;\n\t\t\t}\n\n\t\t}\n\n\t}\n\t#llms_dashboard_blog,\n\t#llms_dashboard_podcast {\n\n\t\tul {\n\t\t\tmargin: 0;\n\n\t\t\tli {\n\t\t\t\tmargin: 0 0 15px 0;\n\n\t\t\t\ta {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 15px 0;\n\t\t\ttext-align: center;\n\n\t\t\ta {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t}\n\t}\n\n}\n","#llms_dashboard_widget {\n\n\t.inside {\n\t\tmargin: 0;\n\t\tpadding-bottom: 8px;\n\t}\n\n\t.llms-dashboard-widget-wrap {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-items: center;\n\t\tpadding-top: 12px;\n\t}\n\n\t.activity-block {\n\t\tpadding-bottom: 8px;\n\t\tborder-color: #e8e8e8;\n\t}\n\n\th3 {\n\t\tmargin-bottom: 0;\n\t}\n\n\t.llms-charts-wrapper {\n\t\tdisplay: none;\n\t}\n\n\t.llms-widget-row {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\tgap: 8px;\n\t\twidth: 100%;\n\t\talign-items: stretch;\n\t\tpadding: 4px 0;\n\n\t\t&:before,\n\t\t&:after {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.llms-widget-1-4 {\n\t\tpadding: 0;\n\t\tflex: 1;\n\t}\n\n\t.llms-widget {\n\t\tpadding: 8px 8px 12px;\n\t\tmargin: 0;\n\t\tborder-radius: 6px;\n\t\tborder: 1px solid #e8e8e8;\n\t\tbox-shadow: 0px 2px 4px rgb(246 247 247);\n\t\theight: 100%;\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: center;\n\t\talign-items: flex-end;\n\t}\n\n\t.llms-label {\n\t\tfont-size: 14px;\n\t\twidth: 100%;\n\t\talign-self: flex-start;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t.llms-widget-content {\n\t\tfont-size: 20px;\n\t\tmargin: 0;\n\t}\n\n\t.llms-widget-info-toggle {\n\t\tdisplay: none;\n\t}\n\n\ta {\n\t\tborder: 0;\n\t}\n\n\t.subsubsub {\n\t\tcolor: #dcdcde;\n\t}\n}\n\n.llms-dashboard-widget-feed {\n\tmargin: 0 -12px;\n\tpadding: 0;\n\tbackground-color: #f6f7f7;\n\n\tli {\n\t\tmargin: 0;\n\t\tpadding: 8px 12px;\n\t\tborder-bottom: 1px solid #e8e8e8;\n\t}\n\n\tspan {\n\t\tdisplay: block;\n\t}\n}\n",".llms-remarks {\n\n\t.llms-remarks-field {\n\t\theight: 120px;\n\t\twidth: 100%;\n\t}\n\n\tinput[type=\"number\"] {\n\t\twidth: 60px;\n\t}\n\n\n}\n\n\nbutton[name=\"llms_quiz_attempt_action\"] {\n\t.save { display: none; }\n\t&.grading {\n\t\t.default { display: none };\n\t\t.save { display: inline; }\n\t}\n}\n\n",".llms-form-fields {\n\t@extend %clearfix;\n\tbox-sizing: border-box;\n\t& * {\n\t\tbox-sizing: border-box;\n\t}\n\t&.flush {\n\t\t.llms-form-field {\n\t\t\tpadding: 0 0 10px;\n\t\t}\n\t}\n\n\t.wp-block-columns, .wp-block-column {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n\t.llms-form-heading {\n\t\tpadding: 0 10px 10px;\n\t}\n\n\t.llms-form-field {\n\t\tfloat: left;\n\t\tpadding: 0 10px 10px;\n\t\tposition: relative;\n\t\twidth: 100%;\n\n\t\t// Ensure \"empty\" labels don't break the layout.\n\t\t// See the billing_address_2 field which has no label.\n\t\tlabel:empty:after {\n\t\t\tcontent: '\\00a0';\n\t\t}\n\n\t\t&.valid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( #83c373, .3 );\n\t\t\t\tborder-color: #83c373;\n\t\t\t}\n\t\t}\n\n\t\t&.error,\n\t\t&.invalid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( $color-red, .3 );\n\t\t\t\tborder-color: $color-red;\n\t\t\t}\n\t\t}\n\n\t\t&.llms-visually-hidden-field {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&.align-right {\n\t\t\ttext-align: right;\n\t\t}\n\n\t\t@media screen and ( min-width: 600px ) {\n\t\t\t$i: 1;\n\t\t\t@while $i <= 12 {\n\t\t\t\t&.llms-cols-#{$i} {\n\t\t\t\t\twidth: calc( $i / 12 ) * 100%;\n\t\t\t\t\t$i: $i + 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type-hidden { padding: 0; }\n\n\t\t&.type-radio,\n\t\t&.type-checkbox {\n\t\t\tinput,\n\t\t\tlabel {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: auto;\n\t\t\t}\n\t\t\tinput {\n\t\t\t\tmargin-right: 5px;\n\t\t\t}\n\t\t\tlabel + .llms-description {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\n\t\t&.type-radio:not(.is-group) {\n\n\t\t\tinput[type=\"radio\"] {\n\t\t\t\tposition: absolute;\n\t\t\t\topacity: 0;\n\t\t\t\tvisibility: none;\n\t\t\t}\n\n\t\t\tlabel:before {\n\t\t\t\tbackground: #fafafa;\n\t\t\t\tbackground-position: -24px 0;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tbox-shadow: hsla( 0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.35) 0 0 0 1px;\n\t\t\t\tcontent: '';\n\t\t\t\tcursor: pointer;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: 22px;\n\t\t\t\tmargin-right: 5px;\n\t\t\t\tposition: relative;\n\t\t\t\ttransition: background-position .15s cubic-bezier(.8, 0, 1, 1);\n\t\t\t\ttop: -3px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 22px;\n\t\t\t\tz-index: 2;\n\t\t\t}\n\n\t\t\tinput[type=\"radio\"]:checked + label:before {\n\t\t\t\ttransition: background-position .2s .15s cubic-bezier(0, 0, .2, 1);\n\t\t\t\tbackground-position: 0 0;\n\t\t\t\tbackground-image: radial-gradient(ellipse at center, $color-brand-blue 0%,$color-brand-blue 40%, #fafafa 45%);\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-input-group {\n\t\t\tmargin-top: 5px;\n\t\t\t.llms-form-field {\n\t\t\t\tpadding: 0 0 5px 5px;\n\t\t\t}\n\t\t}\n\n\t\t&.type-reset,\n\t\t&.type-button,\n\t\t&.type-submit {\n\t\t\tbutton:not(.auto) { width: 100%; }\n\t\t}\n\n\t\t.llms-description {\n\t\t\tfont-size: 14px;\n\t\t\tfont-style: italic;\n\t\t}\n\n\t\t.llms-required {\n\t\t\tcolor: $color-red;\n\t\t\tmargin-left: 4px;\n\t\t}\n\n\t\tinput, textarea, select {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 5px;\n\t\t}\n\n\t\t.select2-container .select2-selection--single {\n\t\t\theight: auto;\n\t\t\tpadding: 4px 6px;\n\t\t}\n\t\t.select2-container--default .select2-selection--single .select2-selection__arrow {\n\t\t\theight: 100%;\n\t\t}\n\n\t}\n\n\n\t.llms-password-strength-meter {\n\t\tborder: 1px solid #dadada;\n\t\tdisplay: none;\n\t\tfont-size: 10px;\n\t\tmargin-top: -10px;\n\t\tpadding: 1px;\n\t\tposition: relative;\n\t\ttext-align: center;\n\n\t\t&:before {\n\t\t\tbottom: 0;\n\t\t\tcontent: '';\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\ttransition: width .4s ease;\n\t\t}\n\n\t\t&.mismatch,\n\t\t&.too-short,\n\t\t&.very-weak {\n\t\t\tborder-color: #e35b5b;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #e35b5b, 0.25 );\n\t\t\t\twidth: 25%;\n\t\t\t}\n\t\t}\n\n\t\t&.too-short:before {\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&.weak {\n\t\t\tborder-color: #f78b53;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #f78b53, 0.25 );\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t}\n\n\t\t&.medium {\n\t\t\tborder-color: #ffc733;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #ffc733, 0.25 );\n\t\t\t\twidth: 75%;\n\t\t\t}\n\t\t}\n\n\t\t&.strong {\n\t\t\tborder-color: #83c373;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #83c373, 0.25 );\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n","/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: 'FontAwesome';\n src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');\n src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.fa-pull-left {\n float: left;\n}\n.fa-pull-right {\n float: right;\n}\n.fa.fa-pull-left {\n margin-right: .3em;\n}\n.fa.fa-pull-right {\n margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n.fa-music:before {\n content: \"\\f001\";\n}\n.fa-search:before {\n content: \"\\f002\";\n}\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n.fa-heart:before {\n content: \"\\f004\";\n}\n.fa-star:before {\n content: \"\\f005\";\n}\n.fa-star-o:before {\n content: \"\\f006\";\n}\n.fa-user:before {\n content: \"\\f007\";\n}\n.fa-film:before {\n content: \"\\f008\";\n}\n.fa-th-large:before {\n content: \"\\f009\";\n}\n.fa-th:before {\n content: \"\\f00a\";\n}\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n.fa-check:before {\n content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n.fa-power-off:before {\n content: \"\\f011\";\n}\n.fa-signal:before {\n content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n.fa-home:before {\n content: \"\\f015\";\n}\n.fa-file-o:before {\n content: \"\\f016\";\n}\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n.fa-road:before {\n content: \"\\f018\";\n}\n.fa-download:before {\n content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n.fa-refresh:before {\n content: \"\\f021\";\n}\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n.fa-lock:before {\n content: \"\\f023\";\n}\n.fa-flag:before {\n content: \"\\f024\";\n}\n.fa-headphones:before {\n content: \"\\f025\";\n}\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n.fa-tag:before {\n content: \"\\f02b\";\n}\n.fa-tags:before {\n content: \"\\f02c\";\n}\n.fa-book:before {\n content: \"\\f02d\";\n}\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n.fa-print:before {\n content: \"\\f02f\";\n}\n.fa-camera:before {\n content: \"\\f030\";\n}\n.fa-font:before {\n content: \"\\f031\";\n}\n.fa-bold:before {\n content: \"\\f032\";\n}\n.fa-italic:before {\n content: \"\\f033\";\n}\n.fa-text-height:before {\n content: \"\\f034\";\n}\n.fa-text-width:before {\n content: \"\\f035\";\n}\n.fa-align-left:before {\n content: \"\\f036\";\n}\n.fa-align-center:before {\n content: \"\\f037\";\n}\n.fa-align-right:before {\n content: \"\\f038\";\n}\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n.fa-list:before {\n content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n.fa-indent:before {\n content: \"\\f03c\";\n}\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n.fa-pencil:before {\n content: \"\\f040\";\n}\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n.fa-adjust:before {\n content: \"\\f042\";\n}\n.fa-tint:before {\n content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n.fa-arrows:before {\n content: \"\\f047\";\n}\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n.fa-backward:before {\n content: \"\\f04a\";\n}\n.fa-play:before {\n content: \"\\f04b\";\n}\n.fa-pause:before {\n content: \"\\f04c\";\n}\n.fa-stop:before {\n content: \"\\f04d\";\n}\n.fa-forward:before {\n content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n.fa-eject:before {\n content: \"\\f052\";\n}\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n.fa-ban:before {\n content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n.fa-expand:before {\n content: \"\\f065\";\n}\n.fa-compress:before {\n content: \"\\f066\";\n}\n.fa-plus:before {\n content: \"\\f067\";\n}\n.fa-minus:before {\n content: \"\\f068\";\n}\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n.fa-gift:before {\n content: \"\\f06b\";\n}\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n.fa-fire:before {\n content: \"\\f06d\";\n}\n.fa-eye:before {\n content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n.fa-plane:before {\n content: \"\\f072\";\n}\n.fa-calendar:before {\n content: \"\\f073\";\n}\n.fa-random:before {\n content: \"\\f074\";\n}\n.fa-comment:before {\n content: \"\\f075\";\n}\n.fa-magnet:before {\n content: \"\\f076\";\n}\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n.fa-retweet:before {\n content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n.fa-folder:before {\n content: \"\\f07b\";\n}\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n.fa-key:before {\n content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n.fa-comments:before {\n content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n.fa-star-half:before {\n content: \"\\f089\";\n}\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n.fa-trophy:before {\n content: \"\\f091\";\n}\n.fa-github-square:before {\n content: \"\\f092\";\n}\n.fa-upload:before {\n content: \"\\f093\";\n}\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n.fa-phone:before {\n content: \"\\f095\";\n}\n.fa-square-o:before {\n content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n.fa-twitter:before {\n content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n.fa-github:before {\n content: \"\\f09b\";\n}\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n.fa-square:before {\n content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n.fa-table:before {\n content: \"\\f0ce\";\n}\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n.fa-money:before {\n content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n.fa-columns:before {\n content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n.fa-desktop:before {\n content: \"\\f108\";\n}\n.fa-laptop:before {\n content: \"\\f109\";\n}\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n.fa-spinner:before {\n content: \"\\f110\";\n}\n.fa-circle:before {\n content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n.fa-terminal:before {\n content: \"\\f120\";\n}\n.fa-code:before {\n content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n.fa-crop:before {\n content: \"\\f125\";\n}\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n.fa-question:before {\n content: \"\\f128\";\n}\n.fa-info:before {\n content: \"\\f129\";\n}\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n.fa-microphone:before {\n content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n.fa-shield:before {\n content: \"\\f132\";\n}\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n.fa-rocket:before {\n content: \"\\f135\";\n}\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n.fa-html5:before {\n content: \"\\f13b\";\n}\n.fa-css3:before {\n content: \"\\f13c\";\n}\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n.fa-ticket:before {\n content: \"\\f145\";\n}\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n.fa-level-up:before {\n content: \"\\f148\";\n}\n.fa-level-down:before {\n content: \"\\f149\";\n}\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n.fa-compass:before {\n content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n.fa-gbp:before {\n content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n.fa-file:before {\n content: \"\\f15b\";\n}\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n.fa-youtube:before {\n content: \"\\f167\";\n}\n.fa-xing:before {\n content: \"\\f168\";\n}\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n.fa-adn:before {\n content: \"\\f170\";\n}\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n.fa-apple:before {\n content: \"\\f179\";\n}\n.fa-windows:before {\n content: \"\\f17a\";\n}\n.fa-android:before {\n content: \"\\f17b\";\n}\n.fa-linux:before {\n content: \"\\f17c\";\n}\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n.fa-skype:before {\n content: \"\\f17e\";\n}\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n.fa-trello:before {\n content: \"\\f181\";\n}\n.fa-female:before {\n content: \"\\f182\";\n}\n.fa-male:before {\n content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n.fa-archive:before {\n content: \"\\f187\";\n}\n.fa-bug:before {\n content: \"\\f188\";\n}\n.fa-vk:before {\n content: \"\\f189\";\n}\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n.fa-renren:before {\n content: \"\\f18b\";\n}\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n.fa-slack:before {\n content: \"\\f198\";\n}\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n.fa-openid:before {\n content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n.fa-google:before {\n content: \"\\f1a0\";\n}\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n.fa-language:before {\n content: \"\\f1ab\";\n}\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n.fa-building:before {\n content: \"\\f1ad\";\n}\n.fa-child:before {\n content: \"\\f1ae\";\n}\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n.fa-database:before {\n content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n.fa-git:before {\n content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n.fa-history:before {\n content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n.fa-header:before {\n content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n.fa-at:before {\n content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n.fa-bus:before {\n content: \"\\f207\";\n}\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n.fa-angellist:before {\n content: \"\\f209\";\n}\n.fa-cc:before {\n content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n.fa-diamond:before {\n content: \"\\f219\";\n}\n.fa-ship:before {\n content: \"\\f21a\";\n}\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n.fa-venus:before {\n content: \"\\f221\";\n}\n.fa-mars:before {\n content: \"\\f222\";\n}\n.fa-mercury:before {\n content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n.fa-server:before {\n content: \"\\f233\";\n}\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n.fa-user-times:before {\n content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n.fa-train:before {\n content: \"\\f238\";\n}\n.fa-subway:before {\n content: \"\\f239\";\n}\n.fa-medium:before {\n content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n.fa-object-group:before {\n content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n.fa-clone:before {\n content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n.fa-registered:before {\n content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n.fa-gg:before {\n content: \"\\f260\";\n}\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n.fa-safari:before {\n content: \"\\f267\";\n}\n.fa-chrome:before {\n content: \"\\f268\";\n}\n.fa-firefox:before {\n content: \"\\f269\";\n}\n.fa-opera:before {\n content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n.fa-contao:before {\n content: \"\\f26d\";\n}\n.fa-500px:before {\n content: \"\\f26e\";\n}\n.fa-amazon:before {\n content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n.fa-industry:before {\n content: \"\\f275\";\n}\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n.fa-map-o:before {\n content: \"\\f278\";\n}\n.fa-map:before {\n content: \"\\f279\";\n}\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n.fa-edge:before {\n content: \"\\f282\";\n}\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n.fa-modx:before {\n content: \"\\f285\";\n}\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n.fa-usb:before {\n content: \"\\f287\";\n}\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n.fa-percent:before {\n content: \"\\f295\";\n}\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n.fa-envira:before {\n content: \"\\f299\";\n}\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n.fa-blind:before {\n content: \"\\f29d\";\n}\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n"],"sourceRoot":"../../scss"} \ No newline at end of file +{"version":3,"sources":["admin.css","_includes/_extends.scss","_includes/_buttons.scss","_includes/_vars.scss","_includes/_vars-brand-colors.scss","_includes/_tooltip.scss","admin/_wp-menu.scss","admin/partials/_grid.scss","admin/modules/_forms.scss","admin/modules/_voucher.scss","admin/modules/_widgets.scss","_includes/_mixins.scss","admin/modules/_icons.scss","admin/modules/_mb-tabs.scss","admin/modules/_top-modal.scss","admin/modules/_merge-codes.scss","admin/breakpoints/_base.scss","admin.scss","admin/breakpoints/_481up.scss","admin/breakpoints/_768up.scss","admin/breakpoints/_1030up.scss","admin/breakpoints/_1240up.scss","admin/_main.scss","admin/_llms-table.scss","admin/modules/_llms-order-note.scss","admin/metaboxes/_llms-metabox.scss","admin/metaboxes/_metabox-instructors.scss","admin/metaboxes/_metabox-orders.scss","admin/metaboxes/_metabox-engagements-type.scss","admin/metaboxes/_metabox-product.scss","admin/metaboxes/_metabox-students.scss","admin/metaboxes/_metabox-field-repeater.scss","admin/metaboxes/_builder-launcher.scss","admin/post-tables/_llms_orders.scss","admin/post-tables/_post-tables.scss","admin/_tabs.scss","admin/_fonts.scss","admin/_reporting.scss","_includes/_quiz-result-question-list.scss","admin/_settings.scss","admin/_dashboard.scss","admin/_dashboard-widget.scss","admin/_quiz-attempt-review.scss","_includes/_llms-form-field.scss","_includes/vendor/_font-awesome.scss"],"names":[],"mappings":"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AAA;A5CotIF;;A4CltIA;;EAEE,gBAAA;A5CqtIF;;A4CntIA;EACE,gBAAA;A5CstIF;;A4CptIA;EACE,gBAAA;A5CutIF;;A4CrtIA;EACE,gBAAA;A5CwtIF;;A4CttIA;EACE,gBAAA;A5CytIF;;A4CvtIA;EACE,gBAAA;A5C0tIF;;A4CxtIA;EACE,gBAAA;A5C2tIF;;A4CztIA;EACE,gBAAA;A5C4tIF;;A4C1tIA;EACE,gBAAA;A5C6tIF;;A4C3tIA;EACE,gBAAA;A5C8tIF;;A4C5tIA;EACE,gBAAA;A5C+tIF;;A4C7tIA;;EAEE,gBAAA;A5CguIF;;A4C9tIA;EACE,gBAAA;A5CiuIF;;A4C/tIA;EACE,gBAAA;A5CkuIF;;A4ChuIA;EACE,gBAAA;A5CmuIF;;A4CjuIA;EACE,gBAAA;A5CouIF;;A4CluIA;EACE,gBAAA;A5CquIF;;A4CnuIA;EACE,gBAAA;A5CsuIF;;A4CpuIA;EACE,gBAAA;A5CuuIF;;A4CruIA;EACE,gBAAA;A5CwuIF;;A4CtuIA;EACE,gBAAA;A5CyuIF;;A4CvuIA;EACE,gBAAA;A5C0uIF;;A4CxuIA;EACE,gBAAA;A5C2uIF;;A4CzuIA;EACE,gBAAA;A5C4uIF;;A4C1uIA;EACE,gBAAA;A5C6uIF;;A4C3uIA;EACE,gBAAA;A5C8uIF;;A4C5uIA;EACE,gBAAA;A5C+uIF;;A4C7uIA;EACE,gBAAA;A5CgvIF;;A4C9uIA;EACE,gBAAA;A5CivIF;;A4C/uIA;EACE,gBAAA;A5CkvIF;;A4ChvIA;EACE,gBAAA;A5CmvIF;;A4CjvIA;EACE,gBAAA;A5CovIF;;A4ClvIA;EACE,gBAAA;A5CqvIF;;A4CnvIA;EACE,gBAAA;A5CsvIF;;A4CpvIA;EACE,gBAAA;A5CuvIF;;A4CrvIA;EACE,gBAAA;A5CwvIF;;A4CtvIA;EACE,gBAAA;A5CyvIF;;A4CvvIA;EACE,gBAAA;A5C0vIF;;A4CxvIA;;EAEE,gBAAA;A5C2vIF;;A4CzvIA;EACE,gBAAA;A5C4vIF;;A4C1vIA;EACE,gBAAA;A5C6vIF;;A4C3vIA;;;EAGE,gBAAA;A5C8vIF;;A4C5vIA;EACE,gBAAA;A5C+vIF;;A4C7vIA;EACE,gBAAA;A5CgwIF;;A4C9vIA;EACE,gBAAA;A5CiwIF;;A4C/vIA;EACE,gBAAA;A5CkwIF;;A4ChwIA;;EAEE,gBAAA;A5CmwIF;;A4CjwIA;EACE,gBAAA;A5CowIF;;A4ClwIA;EACE,gBAAA;A5CqwIF;;A4CnwIA;EACE,gBAAA;A5CswIF;;A4CpwIA;EACE,gBAAA;A5CuwIF;;A4CrwIA;EACE,gBAAA;A5CwwIF;;A4CtwIA;EACE,gBAAA;A5CywIF;;A4CvwIA;EACE,gBAAA;A5C0wIF;;A4CxwIA;EACE,gBAAA;A5C2wIF;;A4CzwIA;EACE,gBAAA;A5C4wIF;;A4C1wIA;EACE,gBAAA;A5C6wIF;;A4C3wIA;EACE,gBAAA;A5C8wIF;;A4C5wIA;EACE,gBAAA;A5C+wIF;;A4C7wIA;EACE,gBAAA;A5CgxIF;;A4C9wIA;EACE,gBAAA;A5CixIF;;A4C/wIA;EACE,gBAAA;A5CkxIF;;A4ChxIA;EACE,gBAAA;A5CmxIF;;A4CjxIA;EACE,gBAAA;A5CoxIF;;A4ClxIA;EACE,gBAAA;A5CqxIF;;A4CnxIA;EACE,gBAAA;A5CsxIF;;A4CpxIA;EACE,gBAAA;A5CuxIF;;A4CrxIA;EACE,gBAAA;A5CwxIF;;A4CtxIA;EACE,gBAAA;A5CyxIF;;A4CvxIA;EACE,gBAAA;A5C0xIF;;A4CxxIA;EACE,gBAAA;A5C2xIF;;A4CzxIA;EACE,gBAAA;A5C4xIF;;A4C1xIA;EACE,gBAAA;A5C6xIF;;A4C3xIA;EACE,gBAAA;A5C8xIF;;A4C5xIA;EACE,gBAAA;A5C+xIF;;A4C7xIA;EACE,gBAAA;A5CgyIF;;A4C9xIA;;EAEE,gBAAA;A5CiyIF;;A4C/xIA;EACE,gBAAA;A5CkyIF;;A4ChyIA;EACE,gBAAA;A5CmyIF;;A4CjyIA;EACE,gBAAA;A5CoyIF;;A4ClyIA;EACE,gBAAA;A5CqyIF;;A4CnyIA;EACE,gBAAA;A5CsyIF;;A4CpyIA;EACE,gBAAA;A5CuyIF;;A4CryIA;EACE,gBAAA;A5CwyIF;;A4CtyIA;EACE,gBAAA;A5CyyIF;;A4CvyIA;EACE,gBAAA;A5C0yIF;;A4CxyIA;EACE,gBAAA;A5C2yIF;;A4CzyIA;EACE,gBAAA;A5C4yIF;;A4C1yIA;;EAEE,gBAAA;A5C6yIF;;A4C3yIA;EACE,gBAAA;A5C8yIF;;A4C5yIA;EACE,gBAAA;A5C+yIF;;A4C7yIA;EACE,gBAAA;A5CgzIF;;A4C9yIA;EACE,gBAAA;A5CizIF;;A4C/yIA;EACE,gBAAA;A5CkzIF;;A4ChzIA;EACE,gBAAA;A5CmzIF;;A4CjzIA;EACE,gBAAA;A5CozIF;;A4ClzIA;EACE,gBAAA;A5CqzIF;;A4CnzIA;EACE,gBAAA;A5CszIF;;A4CpzIA;EACE,gBAAA;A5CuzIF;;A4CrzIA;EACE,gBAAA;A5CwzIF;;A4CtzIA;EACE,gBAAA;A5CyzIF;;A4CvzIA;EACE,gBAAA;A5C0zIF;;A4CxzIA;;EAEE,gBAAA;A5C2zIF;;A4CzzIA;EACE,gBAAA;A5C4zIF;;A4C1zIA;EACE,gBAAA;A5C6zIF;;A4C3zIA;EACE,gBAAA;A5C8zIF;;A4C5zIA;EACE,gBAAA;A5C+zIF;;A4C7zIA;;EAEE,gBAAA;A5Cg0IF;;A4C9zIA;EACE,gBAAA;A5Ci0IF;;A4C/zIA;EACE,gBAAA;A5Ck0IF;;A4Ch0IA;EACE,gBAAA;A5Cm0IF;;A4Cj0IA;EACE,gBAAA;A5Co0IF;;A4Cl0IA;EACE,gBAAA;A5Cq0IF;;A4Cn0IA;EACE,gBAAA;A5Cs0IF;;A4Cp0IA;EACE,gBAAA;A5Cu0IF;;A4Cr0IA;EACE,gBAAA;A5Cw0IF;;A4Ct0IA;EACE,gBAAA;A5Cy0IF;;A4Cv0IA;EACE,gBAAA;A5C00IF;;A4Cx0IA;EACE,gBAAA;A5C20IF;;A4Cz0IA;EACE,gBAAA;A5C40IF;;A4C10IA;EACE,gBAAA;A5C60IF;;A4C30IA;EACE,gBAAA;A5C80IF;;A4C50IA;EACE,gBAAA;A5C+0IF;;A4C70IA;EACE,gBAAA;A5Cg1IF;;A4C90IA;EACE,gBAAA;A5Ci1IF;;A4C/0IA;EACE,gBAAA;A5Ck1IF;;A4Ch1IA;EACE,gBAAA;A5Cm1IF;;A4Cj1IA;;EAEE,gBAAA;A5Co1IF;;A4Cl1IA;EACE,gBAAA;A5Cq1IF;;A4Cn1IA;EACE,gBAAA;A5Cs1IF;;A4Cp1IA;EACE,gBAAA;A5Cu1IF;;A4Cr1IA;;EAEE,gBAAA;A5Cw1IF;;A4Ct1IA;EACE,gBAAA;A5Cy1IF;;A4Cv1IA;EACE,gBAAA;A5C01IF;;A4Cx1IA;EACE,gBAAA;A5C21IF;;A4Cz1IA;EACE,gBAAA;A5C41IF;;A4C11IA;EACE,gBAAA;A5C61IF;;A4C31IA;EACE,gBAAA;A5C81IF;;A4C51IA;EACE,gBAAA;A5C+1IF;;A4C71IA;EACE,gBAAA;A5Cg2IF;;A4C91IA;EACE,gBAAA;A5Ci2IF;;A4C/1IA;EACE,gBAAA;A5Ck2IF;;A4Ch2IA;EACE,gBAAA;A5Cm2IF;;A4Cj2IA;EACE,gBAAA;A5Co2IF;;A4Cl2IA;EACE,gBAAA;A5Cq2IF;;A4Cn2IA;EACE,gBAAA;A5Cs2IF;;A4Cp2IA;EACE,gBAAA;A5Cu2IF;;A4Cr2IA;EACE,gBAAA;A5Cw2IF;;A4Ct2IA;EACE,gBAAA;A5Cy2IF;;A4Cv2IA;EACE,gBAAA;A5C02IF;;A4Cx2IA;;EAEE,gBAAA;A5C22IF;;A4Cz2IA;;EAEE,gBAAA;A5C42IF;;A4C12IA;EACE,gBAAA;A5C62IF;;A4C32IA;EACE,gBAAA;A5C82IF;;A4C52IA;;EAEE,gBAAA;A5C+2IF;;A4C72IA;;EAEE,gBAAA;A5Cg3IF;;A4C92IA;EACE,gBAAA;A5Ci3IF;;A4C/2IA;;EAEE,gBAAA;A5Ck3IF;;A4Ch3IA;EACE,gBAAA;A5Cm3IF;;A4Cj3IA;;;EAGE,gBAAA;A5Co3IF;;A4Cl3IA;EACE,gBAAA;A5Cq3IF;;A4Cn3IA;EACE,gBAAA;A5Cs3IF;;A4Cp3IA;EACE,gBAAA;A5Cu3IF;;A4Cr3IA;EACE,gBAAA;A5Cw3IF;;A4Ct3IA;EACE,gBAAA;A5Cy3IF;;A4Cv3IA;EACE,gBAAA;A5C03IF;;A4Cx3IA;EACE,gBAAA;A5C23IF;;A4Cz3IA;EACE,gBAAA;A5C43IF;;A4C13IA;EACE,gBAAA;A5C63IF;;A4C33IA;EACE,gBAAA;A5C83IF;;A4C53IA;EACE,gBAAA;A5C+3IF;;A4C73IA;EACE,gBAAA;A5Cg4IF;;A4C93IA;EACE,gBAAA;A5Ci4IF;;A4C/3IA;EACE,gBAAA;A5Ck4IF;;A4Ch4IA;EACE,gBAAA;A5Cm4IF;;A4Cj4IA;EACE,gBAAA;A5Co4IF;;A4Cl4IA;EACE,gBAAA;A5Cq4IF;;A4Cn4IA;;EAEE,gBAAA;A5Cs4IF;;A4Cp4IA;;EAEE,gBAAA;A5Cu4IF;;A4Cr4IA;;EAEE,gBAAA;A5Cw4IF;;A4Ct4IA;EACE,gBAAA;A5Cy4IF;;A4Cv4IA;EACE,gBAAA;A5C04IF;;A4Cx4IA;;EAEE,gBAAA;A5C24IF;;A4Cz4IA;;EAEE,gBAAA;A5C44IF;;A4C14IA;;EAEE,gBAAA;A5C64IF;;A4C34IA;EACE,gBAAA;A5C84IF;;A4C54IA;EACE,gBAAA;A5C+4IF;;A4C74IA;;EAEE,gBAAA;A5Cg5IF;;A4C94IA;EACE,gBAAA;A5Ci5IF;;A4C/4IA;EACE,gBAAA;A5Ck5IF;;A4Ch5IA;;EAEE,gBAAA;A5Cm5IF;;A4Cj5IA;EACE,gBAAA;A5Co5IF;;A4Cl5IA;EACE,gBAAA;A5Cq5IF;;A4Cn5IA;EACE,gBAAA;A5Cs5IF;;A4Cp5IA;EACE,gBAAA;A5Cu5IF;;A4Cr5IA;EACE,gBAAA;A5Cw5IF;;A4Ct5IA;EACE,gBAAA;A5Cy5IF;;A4Cv5IA;EACE,gBAAA;A5C05IF;;A4Cx5IA;EACE,gBAAA;A5C25IF;;A4Cz5IA;EACE,gBAAA;A5C45IF;;A4C15IA;EACE,gBAAA;A5C65IF;;A4C35IA;EACE,gBAAA;A5C85IF;;A4C55IA;EACE,gBAAA;A5C+5IF;;A4C75IA;EACE,gBAAA;A5Cg6IF;;A4C95IA;EACE,gBAAA;A5Ci6IF;;A4C/5IA;EACE,gBAAA;A5Ck6IF;;A4Ch6IA;EACE,gBAAA;A5Cm6IF;;A4Cj6IA;EACE,gBAAA;A5Co6IF;;A4Cl6IA;EACE,gBAAA;A5Cq6IF;;A4Cn6IA;EACE,gBAAA;A5Cs6IF;;A4Cp6IA;EACE,gBAAA;A5Cu6IF;;A4Cr6IA;EACE,gBAAA;A5Cw6IF;;A4Ct6IA;EACE,gBAAA;A5Cy6IF;;A4Cv6IA;EACE,gBAAA;A5C06IF;;A4Cx6IA;EACE,gBAAA;A5C26IF;;A4Cz6IA;EACE,gBAAA;A5C46IF;;A4C16IA;EACE,gBAAA;A5C66IF;;A4C36IA;EACE,gBAAA;A5C86IF;;A4C56IA;EACE,gBAAA;A5C+6IF;;A4C76IA;EACE,gBAAA;A5Cg7IF;;A4C96IA;EACE,gBAAA;A5Ci7IF;;A4C/6IA;;EAEE,gBAAA;A5Ck7IF;;A4Ch7IA;EACE,gBAAA;A5Cm7IF;;A4Cj7IA;EACE,gBAAA;A5Co7IF;;A4Cl7IA;EACE,gBAAA;A5Cq7IF;;A4Cn7IA;EACE,gBAAA;A5Cs7IF;;A4Cp7IA;EACE,gBAAA;A5Cu7IF;;A4Cr7IA;;EAEE,gBAAA;A5Cw7IF;;A4Ct7IA;EACE,gBAAA;A5Cy7IF;;A4Cv7IA;EACE,gBAAA;A5C07IF;;A4Cx7IA;EACE,gBAAA;A5C27IF;;A4Cz7IA;EACE,gBAAA;A5C47IF;;A4C17IA;EACE,gBAAA;A5C67IF;;A4C37IA;EACE,gBAAA;A5C87IF;;A4C57IA;EACE,gBAAA;A5C+7IF;;A4C77IA;EACE,gBAAA;A5Cg8IF;;A4C97IA;EACE,gBAAA;A5Ci8IF;;A4C/7IA;EACE,gBAAA;A5Ck8IF;;A4Ch8IA;EACE,gBAAA;A5Cm8IF;;A4Cj8IA;EACE,gBAAA;A5Co8IF;;A4Cl8IA;;EAEE,gBAAA;A5Cq8IF;;A4Cn8IA;;;EAGE,gBAAA;A5Cs8IF;;A4Cp8IA;EACE,gBAAA;A5Cu8IF;;A4Cr8IA;EACE,gBAAA;A5Cw8IF;;A4Ct8IA;EACE,gBAAA;A5Cy8IF;;A4Cv8IA;;EAEE,gBAAA;A5C08IF;;A4Cx8IA;EACE,gBAAA;A5C28IF;;A4Cz8IA;EACE,gBAAA;A5C48IF;;A4C18IA;EACE,gBAAA;A5C68IF;;A4C38IA;EACE,gBAAA;A5C88IF;;A4C58IA;EACE,gBAAA;A5C+8IF;;A4C78IA;EACE,gBAAA;A5Cg9IF;;A4C98IA;EACE,gBAAA;A5Ci9IF;;A4C/8IA;EACE,gBAAA;A5Ck9IF;;A4Ch9IA;EACE,gBAAA;A5Cm9IF;;A4Cj9IA;EACE,gBAAA;A5Co9IF;;A4Cl9IA;EACE,gBAAA;A5Cq9IF;;A4Cn9IA;EACE,gBAAA;A5Cs9IF;;A4Cp9IA;EACE,gBAAA;A5Cu9IF;;A4Cr9IA;EACE,gBAAA;A5Cw9IF;;A4Ct9IA;EACE,gBAAA;A5Cy9IF;;A4Cv9IA;EACE,gBAAA;A5C09IF;;A4Cx9IA;EACE,gBAAA;A5C29IF;;A4Cz9IA;EACE,gBAAA;A5C49IF;;A4C19IA;EACE,gBAAA;A5C69IF;;A4C39IA;EACE,gBAAA;A5C89IF;;A4C59IA;EACE,gBAAA;A5C+9IF;;A4C79IA;EACE,gBAAA;A5Cg+IF;;A4C99IA;EACE,gBAAA;A5Ci+IF;;A4C/9IA;EACE,gBAAA;A5Ck+IF;;A4Ch+IA;EACE,gBAAA;A5Cm+IF;;A4Cj+IA;EACE,gBAAA;A5Co+IF;;A4Cl+IA;EACE,gBAAA;A5Cq+IF;;A4Cn+IA;EACE,gBAAA;A5Cs+IF;;A4Cp+IA;EACE,gBAAA;A5Cu+IF;;A4Cr+IA;EACE,gBAAA;A5Cw+IF;;A4Ct+IA;EACE,gBAAA;A5Cy+IF;;A4Cv+IA;EACE,gBAAA;A5C0+IF;;A4Cx+IA;EACE,gBAAA;A5C2+IF;;A4Cz+IA;EACE,gBAAA;A5C4+IF;;A4C1+IA;EACE,gBAAA;A5C6+IF;;A4C3+IA;EACE,gBAAA;A5C8+IF;;A4C5+IA;EACE,gBAAA;A5C++IF;;A4C7+IA;;EAEE,gBAAA;A5Cg/IF;;A4C9+IA;;EAEE,gBAAA;A5Ci/IF;;A4C/+IA;;EAEE,gBAAA;A5Ck/IF;;A4Ch/IA;;EAEE,gBAAA;A5Cm/IF;;A4Cj/IA;EACE,gBAAA;A5Co/IF;;A4Cl/IA;;EAEE,gBAAA;A5Cq/IF;;A4Cn/IA;;EAEE,gBAAA;A5Cs/IF;;A4Cp/IA;;;;EAIE,gBAAA;A5Cu/IF;;A4Cr/IA;;;EAGE,gBAAA;A5Cw/IF;;A4Ct/IA;;EAEE,gBAAA;A5Cy/IF;;A4Cv/IA;;EAEE,gBAAA;A5C0/IF;;A4Cx/IA;EACE,gBAAA;A5C2/IF;;A4Cz/IA;EACE,gBAAA;A5C4/IF;;A4C1/IA;EACE,gBAAA;A5C6/IF;;A4C3/IA;EACE,gBAAA;A5C8/IF;;A4C5/IA;EACE,gBAAA;A5C+/IF;;A4C7/IA;EACE,gBAAA;A5CggJF;;A4C9/IA;EACE,gBAAA;A5CigJF;;A4C//IA;EACE,gBAAA;A5CkgJF;;A4ChgJA;EACE,gBAAA;A5CmgJF;;A4CjgJA;EACE,gBAAA;A5CogJF;;A4ClgJA;EACE,gBAAA;A5CqgJF;;A4CngJA;EACE,gBAAA;A5CsgJF;;A4CpgJA;EACE,gBAAA;A5CugJF;;A4CrgJA;EACE,gBAAA;A5CwgJF;;A4CtgJA;EACE,gBAAA;A5CygJF;;A4CvgJA;EACE,gBAAA;A5C0gJF;;A4CxgJA;EACE,gBAAA;A5C2gJF;;A4CzgJA;EACE,gBAAA;A5C4gJF;;A4C1gJA;EACE,gBAAA;A5C6gJF;;A4C3gJA;EACE,gBAAA;A5C8gJF;;A4C5gJA;EACE,gBAAA;A5C+gJF;;A4C7gJA;EACE,gBAAA;A5CghJF;;A4C9gJA;EACE,gBAAA;A5CihJF;;A4C/gJA;EACE,gBAAA;A5CkhJF;;A4ChhJA;EACE,gBAAA;A5CmhJF;;A4CjhJA;EACE,gBAAA;A5CohJF;;A4ClhJA;EACE,gBAAA;A5CqhJF;;A4CnhJA;EACE,gBAAA;A5CshJF;;A4CphJA;EACE,gBAAA;A5CuhJF;;A4CrhJA;EACE,gBAAA;A5CwhJF;;A4CthJA;EACE,gBAAA;A5CyhJF;;A4CvhJA;EACE,gBAAA;A5C0hJF;;A4CxhJA;EACE,gBAAA;A5C2hJF;;A4CzhJA;EACE,gBAAA;A5C4hJF;;A4C1hJA;EACE,gBAAA;A5C6hJF;;A4C3hJA;EACE,gBAAA;A5C8hJF;;A4C5hJA;EACE,gBAAA;A5C+hJF;;A4C7hJA;EACE,gBAAA;A5CgiJF;;A4C9hJA;;EAEE,gBAAA;A5CiiJF;;A4C/hJA;EACE,gBAAA;A5CkiJF;;A4ChiJA;EACE,gBAAA;A5CmiJF;;A4CjiJA;EACE,gBAAA;A5CoiJF;;A4CliJA;EACE,gBAAA;A5CqiJF;;A4CniJA;EACE,gBAAA;A5CsiJF;;A4CpiJA;EACE,gBAAA;A5CuiJF;;A4CriJA;EACE,gBAAA;A5CwiJF;;A4CtiJA;EACE,gBAAA;A5CyiJF;;A4CviJA;EACE,gBAAA;A5C0iJF;;A4CxiJA;EACE,gBAAA;A5C2iJF;;A4CziJA;EACE,gBAAA;A5C4iJF;;A4C1iJA;;EAEE,gBAAA;A5C6iJF;;A4C3iJA;EACE,gBAAA;A5C8iJF;;A4C5iJA;EACE,gBAAA;A5C+iJF;;A4C7iJA;EACE,gBAAA;A5CgjJF;;A4C9iJA;;EAEE,gBAAA;A5CijJF;;A4C/iJA;EACE,gBAAA;A5CkjJF;;A4ChjJA;EACE,gBAAA;A5CmjJF;;A4CjjJA;EACE,gBAAA;A5CojJF;;A4CljJA;EACE,gBAAA;A5CqjJF;;A4CnjJA;EACE,gBAAA;A5CsjJF;;A4CpjJA;EACE,gBAAA;A5CujJF;;A4CrjJA;;;EAGE,gBAAA;A5CwjJF;;A4CtjJA;;EAEE,gBAAA;A5CyjJF;;A4CvjJA;EACE,gBAAA;A5C0jJF;;A4CxjJA;EACE,gBAAA;A5C2jJF;;A4CzjJA;EACE,gBAAA;A5C4jJF;;A4C1jJA;EACE,gBAAA;A5C6jJF;;A4C3jJA;EACE,gBAAA;A5C8jJF;;A4C5jJA;EACE,gBAAA;A5C+jJF;;A4C7jJA;EACE,gBAAA;A5CgkJF;;A4C9jJA;EACE,gBAAA;A5CikJF;;A4C/jJA;EACE,gBAAA;A5CkkJF;;A4ChkJA;EACE,gBAAA;A5CmkJF;;A4CjkJA;EACE,gBAAA;A5CokJF;;A4ClkJA;EACE,gBAAA;A5CqkJF;;A4CnkJA;EACE,gBAAA;A5CskJF;;A4CpkJA;EACE,gBAAA;A5CukJF;;A4CrkJA;EACE,gBAAA;A5CwkJF;;A4CtkJA;EACE,gBAAA;A5CykJF;;A4CvkJA;EACE,gBAAA;A5C0kJF;;A4CxkJA;EACE,gBAAA;A5C2kJF;;A4CzkJA;EACE,gBAAA;A5C4kJF;;A4C1kJA;EACE,gBAAA;A5C6kJF;;A4C3kJA;EACE,gBAAA;A5C8kJF;;A4C5kJA;EACE,gBAAA;A5C+kJF;;A4C7kJA;EACE,gBAAA;A5CglJF;;A4C9kJA;EACE,gBAAA;A5CilJF;;A4C/kJA;EACE,gBAAA;A5CklJF;;A4ChlJA;;EAEE,gBAAA;A5CmlJF;;A4CjlJA;;EAEE,gBAAA;A5ColJF;;A4CllJA;EACE,gBAAA;A5CqlJF;;A4CnlJA;EACE,gBAAA;A5CslJF;;A4CplJA;EACE,gBAAA;A5CulJF;;A4CrlJA;EACE,gBAAA;A5CwlJF;;A4CtlJA;EACE,gBAAA;A5CylJF;;A4CvlJA;EACE,gBAAA;A5C0lJF;;A4CxlJA;EACE,gBAAA;A5C2lJF;;A4CzlJA;EACE,gBAAA;A5C4lJF;;A4C1lJA;EACE,gBAAA;A5C6lJF;;A4C3lJA;;;EAGE,gBAAA;A5C8lJF;;A4C5lJA;;EAEE,gBAAA;A5C+lJF;;A4C7lJA;;EAEE,gBAAA;A5CgmJF;;A4C9lJA;;EAEE,gBAAA;A5CimJF;;A4C/lJA;EACE,gBAAA;A5CkmJF;;A4ChmJA;EACE,gBAAA;A5CmmJF;;A4CjmJA;EACE,gBAAA;A5ComJF;;A4ClmJA;EACE,gBAAA;A5CqmJF;;A4CnmJA;;;;;EAKE,gBAAA;A5CsmJF;;A4CpmJA;EACE,gBAAA;A5CumJF;;A4CrmJA;;;EAGE,gBAAA;A5CwmJF;;A4CtmJA;;EAEE,gBAAA;A5CymJF;;A4CvmJA;EACE,gBAAA;A5C0mJF;;A4CxmJA;EACE,gBAAA;A5C2mJF;;A4CzmJA;;;EAGE,gBAAA;A5C4mJF;;A4C1mJA;EACE,gBAAA;A5C6mJF;;A4C3mJA;EACE,gBAAA;A5C8mJF;;A4C5mJA;;EAEE,gBAAA;A5C+mJF;;A4C7mJA;;EAEE,gBAAA;A5CgnJF;;A4C9mJA;;EAEE,gBAAA;A5CinJF;;A4C/mJA;EACE,gBAAA;A5CknJF;;A4ChnJA;EACE,gBAAA;A5CmnJF;;A4CjnJA;EACE,gBAAA;A5ConJF;;A4ClnJA;EACE,gBAAA;A5CqnJF;;A4CnnJA;EACE,gBAAA;A5CsnJF;;A4CpnJA;EACE,gBAAA;A5CunJF;;A4CrnJA;EACE,gBAAA;A5CwnJF;;A4CtnJA;EACE,gBAAA;A5CynJF;;A4CvnJA;;EAEE,gBAAA;A5C0nJF;;A4CxnJA;EACE,gBAAA;A5C2nJF;;A4CznJA;EACE,gBAAA;A5C4nJF;;A4C1nJA;EACE,gBAAA;A5C6nJF;;A4C3nJA;EACE,gBAAA;A5C8nJF;;A4C5nJA;EACE,gBAAA;A5C+nJF;;A4C7nJA;EACE,gBAAA;A5CgoJF;;A4C9nJA;EACE,gBAAA;A5CioJF;;A4C/nJA;EACE,gBAAA;A5CkoJF;;A4ChoJA;EACE,gBAAA;A5CmoJF;;A4CjoJA;EACE,gBAAA;A5CooJF;;A4CloJA;EACE,gBAAA;A5CqoJF;;A4CnoJA;EACE,gBAAA;A5CsoJF;;A4CpoJA;EACE,gBAAA;A5CuoJF;;A4CroJA;EACE,gBAAA;A5CwoJF;;A4CtoJA;EACE,gBAAA;A5CyoJF;;A4CvoJA;EACE,gBAAA;A5C0oJF;;A4CxoJA;EACE,gBAAA;A5C2oJF;;A4CzoJA;EACE,gBAAA;A5C4oJF;;A4C1oJA;EACE,gBAAA;A5C6oJF;;A4C3oJA;EACE,gBAAA;A5C8oJF;;A4C5oJA;EACE,gBAAA;A5C+oJF;;A4C7oJA;EACE,gBAAA;A5CgpJF;;A4C9oJA;EACE,gBAAA;A5CipJF;;A4C/oJA;EACE,gBAAA;A5CkpJF;;A4ChpJA;EACE,gBAAA;A5CmpJF;;A4CjpJA;EACE,gBAAA;A5CopJF;;A4ClpJA;EACE,gBAAA;A5CqpJF;;A4CnpJA;EACE,gBAAA;A5CspJF;;A4CppJA;EACE,gBAAA;A5CupJF;;A4CrpJA;EACE,gBAAA;A5CwpJF;;A4CtpJA;EACE,gBAAA;A5CypJF;;A4CvpJA;EACE,gBAAA;A5C0pJF;;A4CxpJA;EACE,gBAAA;A5C2pJF;;A4CzpJA;EACE,gBAAA;A5C4pJF;;A4C1pJA;EACE,gBAAA;A5C6pJF;;A4C3pJA;EACE,gBAAA;A5C8pJF;;A4C5pJA;EACE,gBAAA;A5C+pJF;;A4C7pJA;;;EAGE,gBAAA;A5CgqJF;;A4C9pJA;EACE,gBAAA;A5CiqJF;;A4C/pJA;EACE,gBAAA;A5CkqJF;;A4ChqJA;EACE,gBAAA;A5CmqJF;;A4CjqJA;EACE,gBAAA;A5CoqJF;;A4ClqJA;EACE,gBAAA;A5CqqJF;;A4CnqJA;EACE,gBAAA;A5CsqJF;;A4CpqJA;EACE,gBAAA;A5CuqJF;;A4CrqJA;EACE,gBAAA;A5CwqJF;;A4CtqJA;EACE,gBAAA;A5CyqJF;;A4CvqJA;EACE,gBAAA;A5C0qJF;;A4CxqJA;EACE,gBAAA;A5C2qJF;;A4CzqJA;EACE,gBAAA;A5C4qJF;;A4C1qJA;EACE,gBAAA;A5C6qJF;;A4C3qJA;EACE,gBAAA;A5C8qJF;;A4C5qJA;EACE,gBAAA;A5C+qJF;;A4C7qJA;EACE,gBAAA;A5CgrJF;;A4C9qJA;EACE,gBAAA;A5CirJF;;A4C/qJA;EACE,gBAAA;A5CkrJF;;A4ChrJA;EACE,gBAAA;A5CmrJF;;A4CjrJA;EACE,gBAAA;A5CorJF;;A4ClrJA;EACE,gBAAA;A5CqrJF;;A4CnrJA;;EAEE,gBAAA;A5CsrJF;;A4CprJA;EACE,gBAAA;A5CurJF;;A4CrrJA;EACE,gBAAA;A5CwrJF;;A4CtrJA;EACE,gBAAA;A5CyrJF;;A4CvrJA;EACE,gBAAA;A5C0rJF;;A4CxrJA;EACE,gBAAA;A5C2rJF;;A4CzrJA;EACE,gBAAA;A5C4rJF;;A4C1rJA;EACE,gBAAA;A5C6rJF;;A4C3rJA;EACE,gBAAA;A5C8rJF;;A4C5rJA;EACE,gBAAA;A5C+rJF;;A4C7rJA;EACE,gBAAA;A5CgsJF;;A4C9rJA;EACE,gBAAA;A5CisJF;;A4C/rJA;EACE,gBAAA;A5CksJF;;A4ChsJA;EACE,gBAAA;A5CmsJF;;A4CjsJA;EACE,gBAAA;A5CosJF;;A4ClsJA;EACE,gBAAA;A5CqsJF;;A4CnsJA;;EAEE,gBAAA;A5CssJF;;A4CpsJA;EACE,gBAAA;A5CusJF;;A4CrsJA;EACE,gBAAA;A5CwsJF;;A4CtsJA;EACE,gBAAA;A5CysJF;;A4CvsJA;EACE,gBAAA;A5C0sJF;;A4CxsJA;;EAEE,gBAAA;A5C2sJF;;A4CzsJA;EACE,gBAAA;A5C4sJF;;A4C1sJA;EACE,gBAAA;A5C6sJF;;A4C3sJA;EACE,gBAAA;A5C8sJF;;A4C5sJA;;;EAGE,gBAAA;A5C+sJF;;A4C7sJA;;EAEE,gBAAA;A5CgtJF;;A4C9sJA;;EAEE,gBAAA;A5CitJF;;A4C/sJA;;EAEE,gBAAA;A5CktJF;;A4ChtJA;;EAEE,gBAAA;A5CmtJF;;A4CjtJA;EACE,gBAAA;A5CotJF;;A4CltJA;EACE,gBAAA;A5CqtJF;;A4CntJA;EACE,gBAAA;A5CstJF;;A4CptJA;EACE,gBAAA;A5CutJF;;A4CrtJA;EACE,gBAAA;A5CwtJF;;A4CttJA;EACE,gBAAA;A5CytJF;;A4CvtJA;EACE,gBAAA;A5C0tJF;;A4CxtJA;EACE,gBAAA;A5C2tJF;;A4CztJA;EACE,gBAAA;A5C4tJF;;A4C1tJA;EACE,gBAAA;A5C6tJF;;A4C3tJA;EACE,gBAAA;A5C8tJF;;A4C5tJA;;EAEE,gBAAA;A5C+tJF;;A4C7tJA;;EAEE,gBAAA;A5CguJF;;A4C9tJA;;EAEE,gBAAA;A5CiuJF;;A4C/tJA;EACE,gBAAA;A5CkuJF;;A4ChuJA;;EAEE,gBAAA;A5CmuJF;;A4CjuJA;;EAEE,gBAAA;A5CouJF;;A4CluJA;EACE,gBAAA;A5CquJF;;A4CnuJA;EACE,gBAAA;A5CsuJF;;A4CpuJA;EACE,gBAAA;A5CuuJF;;A4CruJA;EACE,gBAAA;A5CwuJF;;A4CtuJA;EACE,gBAAA;A5CyuJF;;A4CvuJA;EACE,gBAAA;A5C0uJF;;A4CxuJA;EACE,gBAAA;A5C2uJF;;A4CzuJA;EACE,gBAAA;A5C4uJF;;A4C1uJA;EACE,gBAAA;A5C6uJF;;A4C3uJA;EACE,gBAAA;A5C8uJF;;A4C5uJA;EACE,gBAAA;A5C+uJF;;A4C7uJA;EACE,gBAAA;A5CgvJF;;A4C9uJA;EACE,gBAAA;A5CivJF;;A4C/uJA;EACE,gBAAA;A5CkvJF;;A4ChvJA;EACE,gBAAA;A5CmvJF;;A4CjvJA;EACE,gBAAA;A5CovJF;;A4ClvJA;EACE,gBAAA;A5CqvJF;;A4CnvJA;EACE,gBAAA;A5CsvJF;;A4CpvJA;EACE,gBAAA;A5CuvJF;;A4CrvJA;EACE,gBAAA;A5CwvJF;;A4CtvJA;;EAEE,gBAAA;A5CyvJF;;A4CvvJA;EACE,gBAAA;A5C0vJF;;A4CxvJA;EACE,gBAAA;A5C2vJF;;A4CzvJA;EACE,gBAAA;A5C4vJF;;A4C1vJA;EACE,gBAAA;A5C6vJF;;A4C3vJA;EACE,gBAAA;A5C8vJF;;A4C5vJA;EACE,gBAAA;A5C+vJF;;A4C7vJA;EACE,gBAAA;A5CgwJF;;A4C9vJA;EACE,gBAAA;A5CiwJF;;A4C/vJA;EACE,gBAAA;A5CkwJF;;A4ChwJA;EACE,gBAAA;A5CmwJF;;A4CjwJA;EACE,gBAAA;A5CowJF;;A4ClwJA;EACE,gBAAA;A5CqwJF;;A4CnwJA;EACE,gBAAA;A5CswJF;;A4CpwJA;EACE,gBAAA;A5CuwJF;;A4CrwJA;EACE,gBAAA;A5CwwJF;;A4CtwJA;EACE,gBAAA;A5CywJF;;A4CvwJA;EACE,gBAAA;A5C0wJF;;A4CxwJA;EACE,gBAAA;A5C2wJF;;A4CzwJA;EACE,gBAAA;A5C4wJF;;A4C1wJA;EACE,gBAAA;A5C6wJF;;A4C3wJA;EACE,gBAAA;A5C8wJF;;A4C5wJA;EACE,gBAAA;A5C+wJF;;A4C7wJA;EACE,gBAAA;A5CgxJF;;A4C9wJA;EACE,gBAAA;A5CixJF;;A4C/wJA;EACE,gBAAA;A5CkxJF;;A4ChxJA;EACE,gBAAA;A5CmxJF;;A4CjxJA;EACE,gBAAA;A5CoxJF;;A4ClxJA;EACE,gBAAA;A5CqxJF;;A4CnxJA;EACE,gBAAA;A5CsxJF;;A4CpxJA;EACE,gBAAA;A5CuxJF;;A4CrxJA;EACE,gBAAA;A5CwxJF;;A4CtxJA;EACE,gBAAA;A5CyxJF;;A4CvxJA;EACE,gBAAA;A5C0xJF;;A4CxxJA;EACE,gBAAA;A5C2xJF;;A4CzxJA;EACE,gBAAA;A5C4xJF;;A4C1xJA;EACE,gBAAA;A5C6xJF;;A4C3xJA;EACE,gBAAA;A5C8xJF;;A4C5xJA;EACE,gBAAA;A5C+xJF;;A4C7xJA;EACE,gBAAA;A5CgyJF;;A4C9xJA;EACE,gBAAA;A5CiyJF;;A4C/xJA;EACE,gBAAA;A5CkyJF;;A4ChyJA;EACE,gBAAA;A5CmyJF;;A4CjyJA;EACE,gBAAA;A5CoyJF;;A4ClyJA;EACE,gBAAA;A5CqyJF;;A4CnyJA;EACE,gBAAA;A5CsyJF;;A4CpyJA;EACE,gBAAA;A5CuyJF;;A4CryJA;EACE,gBAAA;A5CwyJF;;A4CtyJA;EACE,gBAAA;A5CyyJF;;A4CvyJA;EACE,gBAAA;A5C0yJF;;A4CxyJA;EACE,gBAAA;A5C2yJF;;A4CzyJA;;EAEE,gBAAA;A5C4yJF;;A4C1yJA;;;EAGE,gBAAA;A5C6yJF;;A4C3yJA;EACE,gBAAA;A5C8yJF;;A4C5yJA;EACE,gBAAA;A5C+yJF;;A4C7yJA;;EAEE,gBAAA;A5CgzJF;;A4C9yJA;EACE,gBAAA;A5CizJF;;A4C/yJA;EACE,gBAAA;A5CkzJF;;A4ChzJA;EACE,gBAAA;A5CmzJF;;A4CjzJA;EACE,gBAAA;A5CozJF;;A4ClzJA;EACE,gBAAA;A5CqzJF;;A4CnzJA;EACE,gBAAA;A5CszJF;;A4CpzJA;EACE,gBAAA;A5CuzJF;;A4CrzJA;EACE,gBAAA;A5CwzJF;;A4CtzJA;EACE,gBAAA;A5CyzJF;;A4CvzJA;EACE,gBAAA;A5C0zJF;;A4CxzJA;;EAEE,gBAAA;A5C2zJF;;A4CzzJA;;EAEE,gBAAA;A5C4zJF;;A4C1zJA;EACE,gBAAA;A5C6zJF;;A4C3zJA;EACE,gBAAA;A5C8zJF;;A4C5zJA;EACE,gBAAA;A5C+zJF;;A4C7zJA;EACE,gBAAA;A5Cg0JF;;A4C9zJA;EACE,gBAAA;A5Ci0JF;;A4C/zJA;EACE,gBAAA;A5Ck0JF;;A4Ch0JA;;EAEE,gBAAA;A5Cm0JF;;A4Cj0JA;;EAEE,gBAAA;A5Co0JF;;A4Cl0JA;EACE,gBAAA;A5Cq0JF;;A4Cn0JA;EACE,gBAAA;A5Cs0JF;;A4Cp0JA;EACE,gBAAA;A5Cu0JF;;A4Cr0JA;EACE,gBAAA;A5Cw0JF;;A4Ct0JA;;EAEE,gBAAA;A5Cy0JF;;A4Cv0JA;;EAEE,gBAAA;A5C00JF;;A4Cx0JA;EACE,gBAAA;A5C20JF;;A4Cz0JA;EACE,gBAAA;A5C40JF;;A4C10JA;EACE,gBAAA;A5C60JF;;A4C30JA;;;EAGE,gBAAA;A5C80JF;;A4C50JA;;EAEE,gBAAA;A5C+0JF;;A4C70JA;;EAEE,gBAAA;A5Cg1JF;;A4C90JA;;EAEE,gBAAA;A5Ci1JF;;A4C/0JA;;EAEE,gBAAA;A5Ck1JF;;A4Ch1JA;EACE,gBAAA;A5Cm1JF;;A4Cj1JA;;;EAGE,gBAAA;A5Co1JF;;A4Cl1JA;EACE,gBAAA;A5Cq1JF;;A4Cn1JA;EACE,gBAAA;A5Cs1JF;;A4Cp1JA;EACE,gBAAA;A5Cu1JF;;A4Cr1JA;EACE,gBAAA;A5Cw1JF;;A4Ct1JA;;EAEE,gBAAA;A5Cy1JF;;A4Cv1JA;;EAEE,gBAAA;A5C01JF;;A4Cx1JA;EACE,gBAAA;A5C21JF;;A4Cz1JA;EACE,gBAAA;A5C41JF;;A4C11JA;EACE,gBAAA;A5C61JF;;A4C31JA;EACE,gBAAA;A5C81JF;;A4C51JA;EACE,gBAAA;A5C+1JF;;A4C71JA;EACE,gBAAA;A5Cg2JF;;A4C91JA;EACE,gBAAA;A5Ci2JF;;A4C/1JA;EACE,gBAAA;A5Ck2JF;;A4Ch2JA;EACE,gBAAA;A5Cm2JF;;A4Cj2JA;EACE,gBAAA;A5Co2JF;;A4Cl2JA;EACE,gBAAA;A5Cq2JF;;A4Cn2JA;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,sBAAA;EACA,SAAA;A5Cs2JF;;A4Cp2JA;;EAEE,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;A5Cu2JF","file":"../../css/admin.css","sourcesContent":["@charset \"UTF-8\";\n#poststuff .llms-metabox:before, #poststuff .llms-metabox:after,\n.llms-form-fields:before,\n.llms-metabox .llms-access-plans:before,\n.llms-collapsible .llms-collapsible-body:before,\n.llms-collapsible .llms-collapsible-header:before,\n.llms-collapsible:before,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n content: \" \";\n display: table;\n}\n#poststuff .llms-metabox:after,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n clear: both;\n}\n\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #466dd8;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #2b55cb;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #6888df;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n#adminmenu .toplevel_page_lifterlms .wp-menu-image img {\n padding-top: 6px;\n width: 20px;\n}\n#adminmenu .toplevel_page_lifterlms a[href*=\"page=llms-add-ons\"],\n#adminmenu .opensub .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a[href*=\"page=llms-add-ons\"] {\n color: #ff922b;\n}\n\n/******************************************************************\n\nGrids for Breakpoints\n\n******************************************************************/\n.last-col {\n float: right;\n padding-right: 0 !important;\n}\n\n.last-col:after {\n clear: both;\n}\n\n/*\nMobile Grid Styles\nThese are the widths for the mobile grid.\nThere are four types, but you can add or customize\nthem however you see fit.\n*/\n@media (max-width: 767px) {\n .m-all {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .m-1of2 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 50%;\n }\n .m-1of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 33.33%;\n }\n .m-2of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 66.66%;\n }\n .m-1of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 25%;\n }\n .m-3of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 75%;\n }\n .m-right {\n text-align: center;\n }\n .m-center {\n text-align: center;\n }\n .m-left {\n text-align: center;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Portrait tablet to landscape */\n@media (min-width: 768px) and (max-width: 1029px) {\n .t-all {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .t-1of2 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 50%;\n }\n .t-1of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 33.33%;\n }\n .t-2of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 66.66%;\n }\n .t-1of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 25%;\n }\n .t-3of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 75%;\n }\n .t-1of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 20%;\n }\n .t-2of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 40%;\n }\n .t-3of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 60%;\n }\n .t-4of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 80%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Landscape to small desktop */\n@media (min-width: 1030px) {\n .d-all {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .d-1of2 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 50%;\n }\n .d-1of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 33.33%;\n }\n .d-2of3 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 66.66%;\n }\n .d-1of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 25%;\n }\n .d-3of4 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 75%;\n }\n .d-1of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 20%;\n }\n .d-2of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 40%;\n }\n .d-3of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 60%;\n }\n .d-4of5 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 80%;\n }\n .d-1of6 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 16.6666666667%;\n }\n .d-1of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 14.2857142857%;\n }\n .d-2of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 28.5714286%;\n }\n .d-3of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 42.8571429%;\n }\n .d-4of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 57.1428572%;\n }\n .d-5of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 71.4285715%;\n }\n .d-6of7 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 85.7142857%;\n }\n .d-1of8 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 12.5%;\n }\n .d-1of9 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 11.1111111111%;\n }\n .d-1of10 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 10%;\n }\n .d-1of11 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 9.0909090909%;\n }\n .d-1of12 {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n width: 8.33%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/******************************************************************\n\nForm Styles\n\n******************************************************************/\n#llms-form-wrapper .llms-search-form-wrapper {\n border-bottom: 1px solid #999;\n margin: 20px 0;\n}\n#llms-form-wrapper #llms_analytics_search {\n border: none !important;\n text-shadow: none !important;\n border: none !important;\n outline: none !important;\n box-shadow: none !important;\n margin: 0 !important;\n color: #fefefe !important;\n background: #466dd8 !important;\n border-radius: 0;\n transition: 0.5s;\n}\n#llms-form-wrapper #llms_analytics_search:hover {\n background: #0185a3 !important;\n}\n#llms-form-wrapper #llms_analytics_search:active {\n background: #33b1cb !important;\n}\n\n#llms-skip-setup-form .llms-admin-link {\n background: none !important;\n border: none;\n padding: 0 !important;\n color: #0074a2;\n cursor: pointer;\n}\n#llms-skip-setup-form .llms-admin-link:hover {\n color: #2ea2cc;\n}\n#llms-skip-setup-form .llms-admin-link:focus {\n color: #124964;\n}\n\n/**\n * Toggle Switch ( replaces checkbox on admin panels )\n */\n.llms-switch {\n position: relative;\n}\n.llms-switch .llms-toggle {\n position: absolute;\n margin-left: -9999px;\n visibility: hidden;\n}\n.llms-switch .llms-toggle + label {\n box-sizing: border-box;\n display: block;\n position: relative;\n cursor: pointer;\n outline: none;\n user-select: none;\n}\n.llms-switch input.llms-toggle-round + label {\n border: 2px solid #6c7781;\n border-radius: 10px;\n height: 20px;\n width: 36px;\n}\n.llms-switch input.llms-toggle-round + label:before,\n.llms-switch input.llms-toggle-round + label:after {\n box-sizing: border-box;\n content: \"\";\n display: block;\n position: absolute;\n transition: background 0.4s;\n}\n.llms-switch input.llms-toggle-round:checked + label {\n border-color: #11a0d2;\n background-color: #11a0d2;\n}\n.llms-switch input.llms-toggle-round + label:after {\n height: 12px;\n left: 2px;\n top: 2px;\n background-color: #6c7781;\n border-radius: 50%;\n transition: margin 0.4s;\n width: 12px;\n z-index: 3;\n}\n.llms-switch input.llms-toggle-round:checked + label:after {\n background-color: #fefefe;\n margin-left: 16px;\n}\n.llms-switch input.llms-toggle-round + label:before {\n height: 8px;\n top: 4px;\n border: 1px solid #6c7781;\n border-radius: 50%;\n right: 4px;\n width: 8px;\n z-index: 2;\n}\n.llms-switch input.llms-toggle-round:checked + label:before {\n border-color: #fefefe;\n border-radius: 0;\n left: 6px;\n right: auto;\n width: 2px;\n}\n\n#llms-profile-fields {\n margin: 50px 0;\n}\n#llms-profile-fields .llms-form-field {\n padding-left: 0;\n}\n#llms-profile-fields label {\n display: block;\n font-weight: bold;\n padding: 8px 0 2px;\n}\n#llms-profile-fields .type-checkbox .type-checkbox label {\n display: initial;\n font-weight: initial;\n padding: 0;\n}\n#llms-profile-fields .type-checkbox .type-checkbox input {\n display: inline-block;\n margin-bottom: 0;\n width: 1rem;\n}\n#llms-profile-fields select {\n max-width: 100%;\n}\n\na.llms-voucher-delete {\n background: #e5554e;\n color: #fefefe;\n display: block;\n padding: 4px 2px;\n text-decoration: none;\n transition: ease 0.3s all;\n}\na.llms-voucher-delete:hover {\n background: #af3a26;\n}\n\n.llms-voucher-codes-wrapper table,\n.llms-voucher-redemption-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td,\n.llms-voucher-redemption-wrapper table th,\n.llms-voucher-redemption-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead,\n.llms-voucher-redemption-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table thead th,\n.llms-voucher-redemption-wrapper table thead th {\n padding: 10px 10px;\n}\n.llms-voucher-codes-wrapper table tr,\n.llms-voucher-redemption-wrapper table tr {\n counter-increment: row-counter;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even),\n.llms-voucher-redemption-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td,\n.llms-voucher-redemption-wrapper table tr td {\n padding: 5px;\n}\n.llms-voucher-codes-wrapper table tr td:first-child:before,\n.llms-voucher-redemption-wrapper table tr td:first-child:before {\n content: counter(row-counter);\n}\n\n.llms-voucher-codes-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td span {\n display: inline-block;\n min-width: 30px;\n}\n.llms-voucher-codes-wrapper button {\n cursor: pointer;\n}\n.llms-voucher-codes-wrapper .llms-voucher-delete {\n float: right;\n margin-right: 15px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-uses {\n width: 50px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes {\n float: right;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text] {\n width: 30px;\n}\n\n.llms-voucher-export-wrapper .llms-voucher-export-type {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-export-type p {\n margin: 0 0 0 15px;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper {\n width: 100%;\n margin: 25px 0;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text] {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper p {\n margin: 0;\n}\n.llms-voucher-export-wrapper > button {\n float: right;\n}\n\n.postbox .inside {\n overflow: auto;\n}\n\n.llms-widget {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n box-sizing: border-box;\n margin-bottom: 20px;\n padding: 20px;\n position: relative;\n width: 100%;\n}\n.llms-widget.alt {\n border: 1px solid #ccc;\n background-color: #efefef;\n margin-bottom: 10px;\n}\n.llms-widget.alt .llms-label {\n color: #777;\n font-size: 14px;\n margin-bottom: 10px;\n padding-bottom: 5px;\n}\n.llms-widget.alt h2 {\n color: #444;\n font-weight: 300;\n}\n.llms-widget a {\n border-bottom: 1px dotted #466dd8;\n display: inline-block;\n text-decoration: none;\n}\n.llms-widget a:hover {\n border-bottom: 1px dotted #2b55cb;\n}\n.llms-widget .llms-widget-content {\n margin: 0.67em 0;\n color: #466dd8;\n font-size: 2.4em;\n font-weight: 700;\n line-height: 1;\n word-break: break-all;\n}\n.llms-widget h2 {\n font-size: 1.8em;\n}\n.llms-widget .llms-label {\n box-sizing: border-box;\n font-size: 18px;\n font-weight: 400;\n margin: 0 0 10px 0;\n text-align: center;\n}\n.llms-widget .llms-chart {\n width: 100%;\n padding: 10px;\n box-sizing: border-box;\n}\n.llms-widget mark.yes {\n background-color: #7ad03a;\n}\n.llms-widget .llms-subtitle {\n margin-bottom: 0;\n}\n.llms-widget .spinner {\n float: none;\n left: 50%;\n margin: -10px 0 0 -10px;\n position: absolute;\n top: 50%;\n z-index: 2;\n}\n.llms-widget.is-loading:before {\n background: #fefefe;\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0.9;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 1;\n}\n.llms-widget.is-loading .spinner {\n visibility: visible;\n}\n.llms-widget td[colspan=\"2\"] {\n padding-left: 0;\n}\n.llms-widget tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n\n.llms-widget-1-3,\n.llms-widget-1-4,\n.llms-widget-1-5 {\n text-align: center;\n}\n\n.llms-widget .llms-widget-info-toggle {\n color: #AAA;\n cursor: pointer;\n font-size: 16px;\n position: absolute;\n right: 20px;\n top: 20px;\n}\n.llms-widget.info-showing .llms-widget-info {\n display: block;\n}\n\n.llms-widget-info {\n background: #444;\n color: #fefefe;\n bottom: -50px;\n display: none;\n padding: 15px;\n position: absolute;\n text-align: center;\n left: 10px;\n right: 15px;\n z-index: 3;\n}\n.llms-widget-info:before {\n content: \"\";\n border: 12px solid transparent;\n border-bottom-color: #444;\n left: 50%;\n margin-left: -12px;\n position: absolute;\n top: -24px;\n}\n.llms-widget-info p {\n margin: 0;\n}\n\n.llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n}\n.llms-widget-row:after {\n clear: both;\n}\n\n.llms-widget-row .no-padding {\n padding: 0 !important;\n}\n\n/******************************************************************\n\nSVG Styles\n\n******************************************************************/\nsvg.icon {\n height: 24px;\n width: 24px;\n display: inline-block;\n fill: currentColor;\n vertical-align: baseline;\n}\nbutton svg.icon {\n height: 18px;\n width: 18px;\n margin: 4px -4px 0 4px;\n filter: drop-shadow(0 1px #eee);\n float: right;\n}\nsvg.icon.menu-icon {\n height: 20px;\n width: 20px;\n display: inline-block;\n fill: currentColor;\n vertical-align: text-bottom;\n margin-right: 10px;\n}\nsvg.icon.tree-icon {\n height: 13px;\n width: 13px;\n vertical-align: middle;\n}\nsvg.icon.section-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon-attr {\n height: 10px;\n width: 10px;\n vertical-align: middle;\n}\nsvg.icon.list-icon {\n height: 12px;\n width: 12px;\n vertical-align: middle;\n}\nsvg.icon.list-icon.on {\n color: #466dd8;\n}\nsvg.icon.list-icon.off {\n color: #444;\n}\nsvg.icon.detail-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n cursor: default;\n}\nsvg.icon.detail-icon.on {\n color: #466dd8;\n}\nsvg.icon.detail-icon.off {\n color: #ccc;\n}\nsvg.icon-ion-arrow-up {\n transform: rotate(90deg);\n}\nsvg use {\n pointer-events: none;\n}\n\n/******************************************************************\n\nMetabox Tabs\n\n******************************************************************/\n#side-sortables .tab-content {\n padding: 0;\n}\n\n.llms-mb-container .tab-content {\n display: none;\n background-color: #FFF;\n padding: 0 20px;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) {\n margin: 0 0 15px 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li {\n padding: 20px 0;\n margin: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.select:not([class*=d-]) {\n width: 100%;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li:last-child {\n border: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.top {\n border-bottom: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content .full-width {\n width: 100%;\n}\n.llms-mb-container .tab-content #wp-content-editor-tools {\n background: none;\n}\n\n.llms-mb-container .tab-content.llms-active {\n display: inherit;\n}\n\n.llms-mb-container .tab-content .no-border {\n border-bottom: 0px;\n}\n\n/******************************************************************\n\nStyles for topModal modal\n\n******************************************************************/\n/**\n * Base modal styles\n */\n.topModal {\n display: none;\n position: relative;\n border: 4px solid #808080;\n background: #fff;\n z-index: 1000001;\n padding: 2px;\n max-width: 500px;\n margin: 34px auto 0;\n box-sizing: border-box;\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-color: #ffffff;\n border-radius: 2px;\n border: 1px solid #dddddd;\n}\n\n.topModalClose {\n float: right;\n cursor: pointer;\n margin-right: 10px;\n margin-top: 10px;\n}\n\n.topModalContainer {\n display: none;\n overflow: auto;\n overflow-y: hidden;\n position: fixed;\n top: 0 !important;\n right: 0;\n bottom: 0;\n left: 0;\n -webkit-overflow-scrolling: touch;\n width: auto !important;\n margin-left: 0 !important;\n background-color: transparent !important;\n z-index: 100002 !important;\n}\n\n.topModalBackground {\n display: none;\n background: #000;\n position: fixed;\n height: 100%;\n width: 100%;\n top: 0 !important;\n left: 0;\n margin-left: 0 !important;\n z-index: 100002 !important;\n box-sizing: border-box;\n overflow: auto;\n overflow-y: hidden;\n}\n\nbody.modal-open {\n overflow: hidden;\n}\n\n.llms-modal-header {\n border-top-right-radius: 1px;\n border-top-left-radius: 1px;\n background: #466dd8;\n color: #eeeeee;\n padding: 10px 15px;\n font-size: 18px;\n}\n\n#llms-icon-modal-close {\n width: 16px;\n height: 16px;\n fill: #fefefe;\n}\n\n.llms-modal-content {\n padding: 20px;\n}\n.llms-modal-content h3 {\n margin-top: 0;\n}\n\n/**\n * Custom Modal Styles for LifterLMS\n */\n.llms-modal-form h1 {\n margin-top: 0;\n}\n.llms-modal-form input[type=text] {\n width: 100%;\n}\n.llms-modal-form textarea,\n.llms-modal-form input[type=text],\n.llms-modal-form input[type=password],\n.llms-modal-form input[type=file],\n.llms-modal-form input[type=datetime],\n.llms-modal-form input[type=datetime-local],\n.llms-modal-form input[type=date],\n.llms-modal-form input[type=month],\n.llms-modal-form input[type=time],\n.llms-modal-form input[type=week],\n.llms-modal-form input[type=number],\n.llms-modal-form input[type=email],\n.llms-modal-form input[type=url],\n.llms-modal-form input[type=search],\n.llms-modal-form input[type=tel],\n.llms-modal-form input[type=color] {\n padding: 0 0.4em 0 0.4em;\n margin-bottom: 2em;\n vertical-align: middle;\n border-radius: 3px;\n min-width: 50px;\n max-width: 635px;\n width: 100%;\n min-height: 32px;\n background-color: #fff;\n border: 1px solid #ccc;\n margin: 0 0 24px 0;\n outline: none;\n transition: border 0.3s ease-in-out 0s;\n}\n.llms-modal-form textarea:focus,\n.llms-modal-form input[type=text]:focus,\n.llms-modal-form input[type=password]:focus,\n.llms-modal-form input[type=file]:focus,\n.llms-modal-form input[type=datetime]:focus,\n.llms-modal-form input[type=datetime-local]:focus,\n.llms-modal-form input[type=date]:focus,\n.llms-modal-form input[type=month]:focus,\n.llms-modal-form input[type=time]:focus,\n.llms-modal-form input[type=week]:focus,\n.llms-modal-form input[type=number]:focus,\n.llms-modal-form input[type=email]:focus,\n.llms-modal-form input[type=url]:focus,\n.llms-modal-form input[type=search]:focus,\n.llms-modal-form input[type=tel]:focus,\n.llms-modal-form input[type=color]:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form textarea {\n padding: 0.4em !important;\n height: 100px !important;\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n outline: none;\n box-sizing: border-box;\n}\n.llms-modal-form textarea:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single {\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n border: 1px solid #ccc;\n width: 100%;\n background: #fefefe !important;\n outline: none;\n box-sizing: border-box;\n box-shadow: 0 0 0 #fff;\n line-height: 32px;\n margin: 0 0 24px 0;\n}\n.llms-modal-form .chosen-container-single .chosen-single:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single div b {\n margin-top: 4px;\n}\n.llms-modal-form .chosen-search input[type=text] {\n border: 1px solid #ccc;\n}\n.llms-modal-form .chosen-search input[type=text]:focus {\n background-color: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-drop {\n margin-top: -28px;\n}\n.llms-modal-form .llms-button-primary, .llms-modal-form .llms-button-secondary {\n padding: 10px 10px;\n border-radius: 0;\n transition: 0.5s;\n box-shadow: 0 1px 1px #ccc;\n}\n.llms-modal-form .llms-button-primary.full, .llms-modal-form .llms-button-secondary.full {\n width: 100%;\n}\n\n.modal-open .select2-dropdown {\n z-index: 1000005;\n}\n\n.button.llms-merge-code-button {\n vertical-align: middle;\n}\n.button.llms-merge-code-button svg {\n margin-right: 2px;\n position: relative;\n top: 4px;\n width: 16px;\n}\n.button.llms-merge-code-button svg g {\n fill: currentColor;\n}\n\n.llms-mb-container .llms-merge-code-wrapper {\n float: right;\n top: -5px;\n}\n\n.llms-merge-code-wrapper {\n display: inline;\n position: relative;\n}\n\n.llms-merge-codes {\n background: #f7f7f7;\n border: 1px solid #ccc;\n border-radius: 3px;\n box-shadow: 0 1px 0 #ccc;\n color: #555;\n display: none;\n left: 1px;\n overflow: hidden;\n position: absolute;\n top: 30px;\n width: 200px;\n}\n.llms-merge-codes ul {\n margin: 0;\n padding: 0;\n}\n.llms-merge-codes li {\n cursor: pointer;\n margin: 0;\n padding: 4px 8px !important;\n border-bottom: 1px solid #ccc;\n}\n.llms-merge-codes li:hover {\n color: #23282d;\n background: #fefefe;\n}\n.llms-merge-codes.active {\n display: block;\n z-index: 777;\n}\n\n/******************************************************************\n\nBase Mobile\n\n******************************************************************/\n.llms-nav-tab,\n.llms-nav-tab-filters {\n display: block;\n width: 100%;\n}\n\nform.llms-nav-tab-filters.full-width {\n width: 100%;\n}\nform.llms-nav-tab-filters.full-width label {\n display: inline-block;\n width: 10%;\n text-align: left;\n}\nform.llms-nav-tab-filters.full-width .select2-container {\n width: 85% !important;\n}\n\n.llms-nav-tab-settings {\n display: block;\n width: 100%;\n}\n\n#llms-form-wrapper .llms-select {\n width: 100%;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-checkbox {\n display: inline-block;\n width: 100%;\n text-align: left;\n}\n#llms-form-wrapper .llms-filter-options {\n width: 100%;\n}\n#llms-form-wrapper .llms-date-select {\n width: 100%;\n display: inline-block;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-date-select input[type=text] {\n width: 100%;\n}\nul.tabs li {\n display: block;\n}\n\n@media only screen and (min-width: 481px) {\n /******************************************************************\n\n Larger Phones\n\n ******************************************************************/\n #llms-form-wrapper .llms-checkbox {\n width: 33%;\n }\n}\n@media only screen and (min-width: 768px) {\n /******************************************************************\n\n Tablets and small computers\n\n ******************************************************************/\n ul.tabs li {\n display: inline-block;\n }\n .llms-nav-tab {\n display: inline-block;\n width: 33%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-filter-options {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget input[type=text],\n.llms-widget input[type=password],\n.llms-widget input[type=datetime],\n.llms-widget input[type=datetime-local],\n.llms-widget input[type=date],\n.llms-widget input[type=month],\n.llms-widget input[type=time],\n.llms-widget input[type=week],\n.llms-widget input[type=number],\n.llms-widget input[type=email],\n.llms-widget input[type=url],\n.llms-widget input[type=search],\n.llms-widget input[type=tel],\n.llms-widget input[type=color],\n.llms-widget select,\n.llms-widget textarea {\n width: 50%;\n }\n .llms-widget input[type=text].medium,\n.llms-widget input[type=password].medium,\n.llms-widget input[type=datetime].medium,\n.llms-widget input[type=datetime-local].medium,\n.llms-widget input[type=date].medium,\n.llms-widget input[type=month].medium,\n.llms-widget input[type=time].medium,\n.llms-widget input[type=week].medium,\n.llms-widget input[type=number].medium,\n.llms-widget input[type=email].medium,\n.llms-widget input[type=url].medium,\n.llms-widget input[type=search].medium,\n.llms-widget input[type=tel].medium,\n.llms-widget input[type=color].medium,\n.llms-widget select.medium,\n.llms-widget textarea.medium {\n width: 30%;\n }\n .llms-widget input[type=text].small,\n.llms-widget input[type=password].small,\n.llms-widget input[type=datetime].small,\n.llms-widget input[type=datetime-local].small,\n.llms-widget input[type=date].small,\n.llms-widget input[type=month].small,\n.llms-widget input[type=time].small,\n.llms-widget input[type=week].small,\n.llms-widget input[type=number].small,\n.llms-widget input[type=email].small,\n.llms-widget input[type=url].small,\n.llms-widget input[type=search].small,\n.llms-widget input[type=tel].small,\n.llms-widget input[type=color].small,\n.llms-widget select.small,\n.llms-widget textarea.small {\n width: 20%;\n }\n .llms-widget input[type=text].tiny,\n.llms-widget input[type=password].tiny,\n.llms-widget input[type=datetime].tiny,\n.llms-widget input[type=datetime-local].tiny,\n.llms-widget input[type=date].tiny,\n.llms-widget input[type=month].tiny,\n.llms-widget input[type=time].tiny,\n.llms-widget input[type=week].tiny,\n.llms-widget input[type=number].tiny,\n.llms-widget input[type=email].tiny,\n.llms-widget input[type=url].tiny,\n.llms-widget input[type=search].tiny,\n.llms-widget input[type=tel].tiny,\n.llms-widget input[type=color].tiny,\n.llms-widget select.tiny,\n.llms-widget textarea.tiny {\n width: 10%;\n }\n}\n@media only screen and (min-width: 1030px) {\n /******************************************************************\n\n Desktop Stylesheet\n\n ******************************************************************/\n .llms-nav-tab {\n display: inline-block;\n width: 33.333%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-select:first-child {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-filter-options.date-filter {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options .llms-date-select {\n margin-bottom: 0;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n }\n .llms-widget-row:after {\n clear: both;\n }\n .llms-widget-row .llms-widget-1-5 {\n vertical-align: top;\n width: 20%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-4 {\n vertical-align: top;\n width: 25%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-3 {\n width: 33.3%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-2 {\n width: 50%;\n float: left;\n box-sizing: border-box;\n padding: 0 5px;\n vertical-align: top;\n }\n}\n@media only screen and (min-width: 1240px) {\n /******************************************************************\n\n large Monitor Stylesheet\n\n ******************************************************************/\n .llms-nav-tab-filters,\n.llms-nav-tab-settings {\n float: left;\n width: 12.5%;\n }\n}\n.wrap.lifterlms {\n margin-top: 0;\n}\n\n.llms-header {\n background-color: #FFF;\n margin: 0 0 0 -20px;\n padding: 20px 10px;\n position: relative;\n z-index: 1;\n}\n.llms-header .llms-inside-wrap {\n display: flex;\n padding: 0 10px;\n}\n.llms-header .lifterlms-logo {\n flex: 0 0 190px;\n max-height: 52px;\n margin-right: 10px;\n}\n.llms-header .llms-meta {\n align-self: center;\n display: flex;\n flex: 1;\n font-size: 16px;\n justify-content: space-between;\n line-height: 1.5;\n}\n.llms-header .llms-meta .llms-version {\n background-color: #1d2327;\n color: #FFF;\n border-radius: 999px;\n font-size: 13px;\n font-weight: 700;\n padding: 6px 12px;\n}\n.llms-header .llms-meta a {\n display: inline-block;\n}\n.llms-header .llms-meta .llms-license {\n border-right: 1px solid #CCC;\n font-weight: 700;\n margin-right: 12px;\n padding-right: 12px;\n}\n.llms-header .llms-meta .llms-license a {\n text-decoration: none;\n}\n.llms-header .llms-meta .llms-license a:before {\n content: \"\\f534\";\n display: inline-block;\n font: 400 16px/1 dashicons;\n left: 0;\n padding-right: 3px;\n position: relative;\n text-decoration: none;\n vertical-align: text-bottom;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none {\n color: #888;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none:before {\n content: \"\\f335\";\n}\n.llms-header .llms-meta .llms-license a.llms-license-active {\n color: #008a20;\n}\n.llms-header .llms-meta .llms-license a.llms-license-active:before {\n content: \"\\f112\";\n}\n.llms-header .llms-meta .llms-support {\n font-weight: 700;\n}\n.llms-header .llms-meta .llms-support a {\n color: #1d2327;\n text-decoration: none;\n}\n\n.llms-subheader {\n align-items: center;\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n display: flex;\n flex-direction: row;\n margin-left: -20px;\n padding: 10px 20px;\n width: 100%;\n z-index: 1;\n}\n.llms-subheader h1 {\n font-weight: 700;\n padding: 0;\n}\n.llms-subheader h1 a {\n color: inherit;\n text-decoration: none;\n}\n\n#post_course_difficulty {\n min-width: 200px;\n}\n\n#_video-embed, #_audio-embed {\n width: 100%;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\nhr {\n background-color: #CCC;\n border: none;\n height: 1px;\n margin: 30px 0;\n padding: 0;\n}\n\n.llms_certificate_default_image, .llms_certificate_image {\n width: 300px;\n}\n\n.llms_achievement_default_image, .llms_achievement_image {\n width: 120px;\n}\n\ndiv[id^=lifterlms-] .inside {\n overflow: visible;\n}\n\n.notice.llms-admin-notice {\n background-color: #FFF;\n border: 1px solid #ccd0d4;\n box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);\n display: flex;\n padding: 0 !important;\n position: relative;\n}\n.notice.llms-admin-notice .notice-dismiss {\n text-decoration: none;\n}\n.notice.llms-admin-notice.notice-warning {\n border-left: 4px solid #F8954F;\n}\n.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon {\n background-color: #FEF4ED;\n}\n.notice.llms-admin-notice.notice-info {\n border-left: 4px solid #466DD8;\n}\n.notice.llms-admin-notice.notice-info h3 {\n color: #466DD8;\n}\n.notice.llms-admin-notice.notice-info .llms-admin-notice-icon {\n background-color: #EDF0FB;\n}\n.notice.llms-admin-notice.notice-success {\n border-left: 4px solid #18A957;\n}\n.notice.llms-admin-notice.notice-success h3 {\n color: #18A957;\n}\n.notice.llms-admin-notice.notice-success .llms-admin-notice-icon {\n background-color: #E8F6EE;\n}\n.notice.llms-admin-notice.notice-error {\n border-left: 4px solid #DF1642;\n}\n.notice.llms-admin-notice.notice-error h3 {\n color: #9C0F2E;\n}\n.notice.llms-admin-notice.notice-error .llms-admin-notice-icon {\n background-color: #FCE8EC;\n}\n.notice.llms-admin-notice .llms-admin-notice-icon {\n background-image: url(../../assets/images/lifterlms-icon-color.png);\n background-position: center center;\n background-repeat: no-repeat;\n background-size: 30px;\n min-width: 70px;\n}\n.notice.llms-admin-notice .llms-admin-notice-content {\n color: #111;\n padding: 20px;\n}\n.notice.llms-admin-notice h3 {\n font-size: 18px;\n font-weight: 700;\n line-height: 25px;\n margin: 0 0 15px 0;\n}\n.notice.llms-admin-notice button,\n.notice.llms-admin-notice .llms-button-primary {\n display: inline-block;\n}\n.notice.llms-admin-notice p {\n font-size: 14px;\n line-height: 22px;\n margin: 0 0 15px 0;\n max-width: 65em;\n padding: 0;\n}\n.notice.llms-admin-notice p:last-of-type {\n margin-bottom: 0;\n}\n\n.llms-button-action.small .dashicons,\n.llms-button-danger.small .dashicons,\n.llms-button-primary.small .dashicons,\n.llms-button-secondary.small .dashicons {\n font-size: 13px;\n height: 13px;\n width: 13px;\n}\n.llms-button-action:hover,\n.llms-button-danger:hover,\n.llms-button-primary:hover,\n.llms-button-secondary:hover {\n box-shadow: none;\n}\n\na.llms-view-as {\n line-height: 2;\n margin-right: 8px;\n}\n\n.llms-image-field-preview {\n max-height: 80px;\n vertical-align: middle;\n width: auto;\n}\n\n.llms-image-field-remove.hidden {\n display: none;\n}\n\n.llms-log-viewer {\n background: #fff;\n border: 1px solid #e5e5e5;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n margin: 20px 0;\n padding: 25px;\n}\n.llms-log-viewer pre {\n font-family: monospace;\n margin: 0;\n padding: 0;\n white-space: pre-wrap;\n}\n\n.llms-status--tools .llms-table {\n background: #fff;\n border: 1px solid #e5e5e5;\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n}\n.llms-status--tools .llms-table td, .llms-status--tools .llms-table th {\n padding: 10px;\n vertical-align: top;\n}\n.llms-status--tools .llms-table th {\n width: 28%;\n}\n.llms-status--tools .llms-table p {\n margin: 0 0 10px;\n}\n\n.llms-error {\n color: #e5554e;\n font-style: italic;\n}\n\n.llms-rating-stars {\n color: #ffb900;\n text-decoration: none;\n}\n\n@media screen and (max-width: 782px) {\n .llms-header {\n top: 46px;\n }\n .llms-header .llms-inside-wrap {\n flex-direction: column;\n gap: 20px;\n }\n .llms-header .llms-inside-wrap .lifterlms-logo {\n align-self: center;\n flex: inherit;\n max-height: initial;\n max-width: 200px;\n }\n .llms-header .llms-inside-wrap .llms-meta {\n column-gap: 10px;\n }\n}\n.llms-table-wrap {\n position: relative;\n}\n\n.llms-table-header {\n padding: 0;\n}\n.llms-table-header:before, .llms-table-header:after {\n content: \" \";\n display: table;\n}\n.llms-table-header:after {\n clear: both;\n}\n.llms-table-header h2 {\n font-size: 20px;\n padding: 0;\n display: inline-block;\n line-height: 1.5;\n margin: 0 0 20px 0;\n vertical-align: middle;\n}\n.llms-table-header .llms-table-search,\n.llms-table-header .llms-table-filters {\n float: right;\n padding-left: 10px;\n}\n.llms-table-header .llms-table-search input {\n margin: 0;\n padding: 0 8px;\n}\n\n.llms-table {\n border: 1px solid #c3c4c7;\n border-collapse: collapse;\n width: 100%;\n}\n.llms-table a:not(.small) {\n color: #466dd8;\n}\n.llms-table a:not(.small):hover {\n color: #2b55cb;\n}\n.llms-table td, .llms-table th {\n border-bottom: 1px solid #c3c4c7;\n padding: 10px 12px;\n text-align: center;\n}\n.llms-table td.expandable.closed, .llms-table th.expandable.closed {\n display: none;\n}\n.llms-table td .llms-button-primary,\n.llms-table td .llms-button-secondary,\n.llms-table td .llms-button-action,\n.llms-table td .llms-button-danger, .llms-table th .llms-button-primary,\n.llms-table th .llms-button-secondary,\n.llms-table th .llms-button-action,\n.llms-table th .llms-button-danger {\n display: inline-block;\n}\n.llms-table tr.llms-quiz-pending td {\n font-weight: 700;\n}\n.llms-table thead th,\n.llms-table tfoot th {\n background-color: #FFF;\n font-weight: 700;\n}\n.llms-table thead th a.llms-sortable,\n.llms-table tfoot th a.llms-sortable {\n padding-right: 16px;\n position: relative;\n text-decoration: none;\n width: 100%;\n}\n.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable .dashicons,\n.llms-table tfoot th a.llms-sortable .dashicons {\n color: #444;\n font-size: 16px;\n height: 16px;\n opacity: 0;\n position: absolute;\n width: 16px;\n}\n.llms-table tfoot th {\n border-bottom: none;\n}\n.llms-table tfoot th .llms-table-export {\n float: left;\n}\n.llms-table tfoot th .llms-table-export .llms-table-progress {\n background: #efefef;\n display: none;\n margin-left: 8px;\n vertical-align: middle;\n width: 100px;\n}\n.llms-table tfoot th .llms-table-pagination {\n float: right;\n}\n.llms-table.zebra tbody tr:nth-child(even) th, .llms-table.zebra tbody tr:nth-child(even) td {\n background-color: #fff;\n}\n.llms-table.zebra tbody tr:nth-child(odd) th, .llms-table.zebra tbody tr:nth-child(odd) td {\n background-color: #f6f7f7;\n}\n.llms-table.text-left td, .llms-table.text-left th {\n text-align: left;\n}\n.llms-table.size-large td, .llms-table.size-large th {\n font-size: 14px;\n padding: 10px 12px;\n}\n.llms-table .llms-drag-handle {\n color: #777;\n cursor: pointer;\n -webkit-transition: color 0.4s ease;\n transition: color 0.4s ease;\n}\n.llms-table .llms-action-icon {\n color: #777;\n text-decoration: none;\n}\n.llms-table .llms-action-icon .tooltip {\n cursor: pointer;\n}\n.llms-table .llms-action-icon:hover {\n color: #466dd8;\n}\n.llms-table .llms-action-icon.danger:hover {\n color: #e5554e;\n}\n.llms-table .llms-table-page-count {\n font-size: 12px;\n padding: 0 5px;\n}\n\n.llms-table-progress {\n text-align: center;\n}\n.llms-table-progress .llms-table-progress-bar {\n background: #eee;\n border-radius: 10px;\n height: 16px;\n overflow: hidden;\n position: relative;\n}\n.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner {\n background: #466dd8;\n height: 100%;\n transition: width 0.2s ease;\n}\n.llms-table-progress .llms-table-progress-text {\n color: #466dd8;\n font-size: 12px;\n font-weight: 700;\n line-height: 16px;\n}\n\n.llms-table.llms-gateway-table .status .fa,\n.llms-table.llms-integrations-table .status .fa {\n color: #466dd8;\n font-size: 22px;\n}\n.llms-table.llms-gateway-table .sort,\n.llms-table.llms-integrations-table .sort {\n cursor: move;\n text-align: center;\n width: 10px;\n}\n\n.llms-gb-table-notifications th, .llms-gb-table-notifications td {\n text-align: left;\n}\n\n.llms-order-note .llms-order-note-content {\n background: #efefef;\n margin-bottom: 10px;\n padding: 10px;\n position: relative;\n}\n.llms-order-note .llms-order-note-content:after {\n border-style: solid;\n border-color: #efefef transparent;\n border-width: 10px 10px 0 0;\n bottom: -10px;\n content: \"\";\n display: block;\n height: 0;\n left: 20px;\n position: absolute;\n width: 0;\n}\n.llms-order-note .llms-order-note-content p {\n font-size: 13px;\n margin: 0;\n line-height: 1.5;\n}\n.llms-order-note .llms-order-note-meta {\n color: #999;\n font-size: 11px;\n margin-left: 10px;\n}\n\n.llms-mb-list label {\n font-size: 15px;\n font-weight: 700;\n line-height: 1.5;\n display: block;\n width: 100%;\n}\n.llms-mb-list .description {\n margin-bottom: 8px;\n}\n.llms-mb-list .input-full {\n width: 100%;\n}\n\n#poststuff .llms-metabox h2, #poststuff .llms-metabox h3, #poststuff .llms-metabox h6 {\n margin: 0;\n padding: 0;\n}\n#poststuff .llms-metabox h2 {\n font-size: 18px;\n font-weight: 700;\n}\n#poststuff .llms-metabox h3 {\n color: #777;\n font-size: 16px;\n}\n#poststuff .llms-metabox h4 {\n border-bottom: 1px solid #e5e5e5;\n padding: 0;\n margin: 0;\n}\n#poststuff .llms-metabox .llms-transaction-test-mode {\n background: #ffffd7;\n font-style: italic;\n left: 0;\n padding: 2px;\n position: absolute;\n right: 0;\n top: 0;\n text-align: center;\n}\n#poststuff .llms-metabox a.llms-editable,\n#poststuff .llms-metabox .llms-metabox-icon,\n#poststuff .llms-metabox button.llms-editable {\n color: #999;\n text-decoration: none;\n}\n#poststuff .llms-metabox a.llms-editable:hover,\n#poststuff .llms-metabox .llms-metabox-icon:hover,\n#poststuff .llms-metabox button.llms-editable:hover {\n color: #466dd8;\n}\n#poststuff .llms-metabox button.llms-editable {\n border: none;\n background: none;\n cursor: pointer;\n padding: 0;\n vertical-align: top;\n}\n#poststuff .llms-metabox h4 button.llms-editable {\n float: right;\n}\n#poststuff .llms-metabox .llms-table {\n margin-top: 10px;\n}\n\n.llms-metabox-section {\n background: #fff;\n margin-top: 25px;\n position: relative;\n}\n.llms-metabox-section.no-top-margin {\n margin-top: 0;\n}\n.llms-metabox-section .llms-metabox-field {\n margin: 15px 0;\n position: relative;\n}\n.llms-metabox-section .llms-metabox-field label {\n color: #777;\n display: block;\n margin-bottom: 5px;\n font-weight: 500;\n vertical-align: baseline;\n}\n.llms-metabox-section .llms-metabox-field select,\n.llms-metabox-section .llms-metabox-field textarea,\n.llms-metabox-section .llms-metabox-field input[type=text],\n.llms-metabox-section .llms-metabox-field input[type=number] {\n width: 100%;\n}\n.llms-metabox-section .llms-metabox-field input.md-text {\n width: 105px;\n}\n.llms-metabox-section .llms-metabox-field input.sm-text {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input {\n width: 95px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field em {\n font-style: normal;\n padding: 0 3px;\n}\n\n.llms-collapsible {\n border: 1px solid #e5e5e5;\n position: relative;\n margin-top: 0;\n margin-bottom: -1px;\n}\n.llms-collapsible:last-child {\n margin-bottom: 0;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down {\n display: none;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header {\n padding: 10px;\n}\n.llms-collapsible .llms-collapsible-header h3 {\n color: #777;\n margin: 0;\n font-size: 16px;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: none;\n}\n.llms-collapsible .llms-collapsible-header a {\n text-decoration: none;\n}\n.llms-collapsible .llms-collapsible-header .dashicons {\n color: #777;\n cursor: pointer;\n transition: color 0.4s ease;\n}\n.llms-collapsible .llms-collapsible-header .dashicons:hover {\n color: #466dd8;\n}\n.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover {\n color: #e5554e;\n}\n.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger:hover {\n color: #ff922b;\n}\n.llms-collapsible .llms-collapsible-body {\n display: none;\n padding: 10px;\n}\n\n._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove {\n display: none;\n}\n._llms_instructors_data.repeater .llms-mb-list {\n padding: 0 5px !important;\n}\n\n.post-type-llms_order #post-body-content {\n display: none;\n}\n\n#lifterlms-order-details .handlediv,\n#lifterlms-order-details .handlediv.button-link,\n#lifterlms-order-details .postbox-header {\n display: none;\n}\n#lifterlms-order-details .inside {\n padding: 20px;\n margin-top: 0;\n}\n\n.llms-table tbody tr.llms-txn-failed td {\n background-color: rgba(229, 85, 78, 0.5);\n border-bottom-color: rgba(229, 85, 78, 0.5);\n}\n\n.llms-table tbody tr.llms-txn-refunded td {\n background-color: rgba(255, 165, 0, 0.5);\n border-bottom-color: rgba(255, 165, 0, 0.5);\n}\n\n.llms-txn-refund-form .llms-metabox-section,\n.llms-manual-txn-form .llms-metabox-section {\n margin-top: 0;\n}\n.llms-txn-refund-form .llms-metabox-field,\n.llms-manual-txn-form .llms-metabox-field {\n text-align: right;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=number],\n.llms-manual-txn-form .llms-metabox-field input[type=number] {\n max-width: 100px;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=text],\n.llms-manual-txn-form .llms-metabox-field input[type=text] {\n max-width: 340px;\n}\n\n.llms-manual-txn-form {\n background-color: #eaeaea;\n}\n.llms-manual-txn-form .llms-metabox-section {\n background-color: #eaeaea;\n}\n\n#llms-remaining-edit {\n display: none;\n}\n\n.llms-remaining-edit--content label, .llms-remaining-edit--content span, .llms-remaining-edit--content textarea {\n display: block;\n}\n.llms-remaining-edit--content label {\n margin-bottom: 20px;\n}\n.llms-remaining-edit--content textarea, .llms-remaining-edit--content input {\n width: 100%;\n}\n\n.submitbox .llms-mb-section,\n.llms-award-engagement-submitbox .llms-mb-list {\n margin-bottom: 12px;\n}\n.submitbox .llms-mb-section:last-of-type,\n.llms-award-engagement-submitbox .llms-mb-list:last-of-type {\n margin-bottom: 0;\n}\n.sync-action:before, .submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n font: normal 20px/1 dashicons;\n speak: never;\n display: inline-block;\n margin-left: -1px;\n padding-right: 3px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: relative;\n top: -1px;\n color: #8c8f94;\n}\nbody:not(.admin-color-fresh) .sync-action:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n color: currentColor;\n}\n\n.submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n content: \"\\f110\";\n}\n.sync-action:before {\n content: \"\\f113\";\n color: white;\n}\n\n.submitbox .llms-mb-section.post_author_override label,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label {\n display: inline-block;\n width: auto;\n}\n\n.llms-metabox #llms-new-access-plan-model {\n display: none;\n}\n.llms-metabox .llms-access-plans {\n margin-top: 10px;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg {\n display: none;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg:last-child {\n box-shadow: inset 0 0 0 1px #e5e5e5;\n display: block;\n text-align: center;\n padding: 10px;\n}\n.llms-metabox .llms-access-plans.dragging {\n background: #efefef;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-metabox .llms-access-plans .llms-spinning {\n z-index: 1;\n}\n.llms-metabox .llms-access-plans .llms-invalid {\n border-color: #e5554e;\n}\n.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning {\n display: inline;\n}\n.llms-metabox .llms-access-plans .llms-needs-attention .dashicons-warning.medium-danger {\n display: inline;\n}\n.llms-metabox .llms-access-plans .dashicons-warning {\n display: none;\n}\n.llms-metabox .llms-access-plan {\n text-align: left;\n}\n.llms-metabox .llms-access-plan [data-tip]:before {\n text-align: center;\n}\n.llms-metabox .llms-access-plan .llms-plan-link,\n.llms-metabox .llms-access-plan [data-controller] {\n display: none;\n}\n.llms-metabox .llms-access-plan:hover .llms-plan-link, .llms-metabox .llms-access-plan.opened .llms-plan-link {\n display: inline-block;\n}\n.llms-metabox .llms-access-plan .llms-metabox-field {\n margin: 5px 0;\n}\n.llms-metabox .llms-access-plan .llms-required {\n color: #e5554e;\n margin-left: 3px;\n}\n.llms-metabox .llms-access-plan .notice {\n margin-left: 0;\n}\n\n.llms-metabox-students .llms-table tr .name {\n text-align: left;\n}\n.llms-metabox-students .llms-add-student:hover {\n color: #83c373;\n}\n.llms-metabox-students .llms-remove-student:hover {\n color: #e5554e;\n}\n\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields > li.llms-mb-list {\n border-bottom: none;\n padding: 0 0 10px;\n}\n\n.llms-mb-list.repeater .llms-repeater-rows {\n position: relative;\n margin-top: 10px;\n min-height: 10px;\n}\n.llms-mb-list.repeater .llms-repeater-rows.dragging {\n background: #efefef;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-mb-list.repeater .llms-repeater-row {\n background: #fff;\n}\n.llms-mb-list.repeater .llms-mb-repeater-footer {\n text-align: right;\n margin-top: 20px;\n}\n.llms-mb-list.repeater .tmce-active .wp-editor-area {\n color: #32373c;\n}\n\n.llms-builder-launcher p {\n margin-top: 0;\n}\n.llms-builder-launcher ol {\n margin-top: -6px;\n}\n.llms-builder-launcher .llms-button-primary {\n box-sizing: border-box;\n}\n\n.wp-list-table .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.wp-list-table .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.wp-list-table .llms-status.llms-active, .wp-list-table .llms-status.llms-completed, .wp-list-table .llms-status.llms-pass, .wp-list-table .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.wp-list-table .llms-status.llms-fail, .wp-list-table .llms-status.llms-failed, .wp-list-table .llms-status.llms-expired, .wp-list-table .llms-status.llms-cancelled, .wp-list-table .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.wp-list-table .llms-status.llms-incomplete, .wp-list-table .llms-status.llms-on-hold, .wp-list-table .llms-status.llms-pending, .wp-list-table .llms-status.llms-pending-cancel, .wp-list-table .llms-status.llms-refunded, .wp-list-table .llms-status.llms-txn-pending, .wp-list-table .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n\n#lifterlms-order-transactions .llms-table tfoot th {\n text-align: right;\n}\n\n.llms-post-table-post-filter {\n display: inline-block;\n margin-right: 6px;\n max-width: 100%;\n width: 220px;\n}\n\n.llms-nav-tab-wrapper {\n background: #466dd8;\n margin: 20px 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary {\n background: #e1e1e1;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover, .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #cdcdcd;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n color: #414141;\n font-size: 15px;\n padding: 8px 14px;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons {\n font-size: 15px;\n height: 15px;\n width: 15px;\n}\n.llms-nav-tab-wrapper.llms-nav-text {\n background: inherit;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items {\n padding-left: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item {\n background: inherit;\n color: #646970;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after {\n display: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after {\n content: \"|\";\n display: inline-block;\n margin: 0 8px 0 6px;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover {\n background: inherit;\n color: #466dd8;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link {\n background: inherit;\n color: #000;\n font-weight: 600;\n text-decoration: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link {\n color: #466dd8;\n display: inline-block;\n letter-spacing: 0;\n margin: 0;\n padding: 0;\n text-decoration: underline;\n text-transform: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs {\n background-color: #1c3987;\n margin: 0;\n padding-top: 8px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item {\n margin: 0 3px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link {\n background-color: #FFF;\n color: #466dd8;\n font-weight: 700;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters {\n background-color: #466dd8;\n border-radius: 12px;\n margin: 20px 0;\n overflow: hidden;\n padding: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n padding-left: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n flex-direction: row;\n }\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item {\n float: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link {\n padding: 14px;\n}\n.llms-nav-tab-wrapper .llms-nav-items {\n margin: 0;\n padding-left: 10px;\n}\n.llms-nav-tab-wrapper .llms-nav-items:before, .llms-nav-tab-wrapper .llms-nav-items:after {\n content: \" \";\n display: table;\n}\n.llms-nav-tab-wrapper .llms-nav-items:after {\n clear: both;\n}\n.llms-nav-tab-wrapper .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover {\n background: #466dd8;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n background: #1c3987;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 400;\n}\n@media only screen and (min-width: 768px) {\n .llms-nav-tab-wrapper .llms-nav-item {\n float: left;\n }\n .llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right {\n float: right;\n }\n}\n.llms-nav-tab-wrapper .llms-nav-link {\n color: #fff;\n cursor: pointer;\n display: block;\n font-weight: 400;\n font-size: 15px;\n padding: 9px 18px;\n text-align: center;\n text-decoration: none;\n transition: all 0.3s ease;\n}\n\n#llms-options-page-contents h2 {\n color: #999;\n font-weight: 500;\n letter-spacing: 2px;\n border-bottom: 1px solid #999;\n}\n\n.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0;\n padding: 0;\n}\n.llms-reporting.wrap .llms-stab-title {\n color: #1c3987;\n font-size: 36px;\n font-weight: 300;\n margin-bottom: 20px;\n}\n.llms-reporting.wrap td.id a {\n text-decoration: none;\n}\n.llms-reporting.wrap th.id, .llms-reporting.wrap td.id,\n.llms-reporting.wrap th.name, .llms-reporting.wrap td.name,\n.llms-reporting.wrap th.registered, .llms-reporting.wrap td.registered,\n.llms-reporting.wrap th.last_seen, .llms-reporting.wrap td.last_seen,\n.llms-reporting.wrap th.overall_progress, .llms-reporting.wrap td.overall_progress,\n.llms-reporting.wrap th.title, .llms-reporting.wrap td.title,\n.llms-reporting.wrap th.course, .llms-reporting.wrap td.course,\n.llms-reporting.wrap th.lesson, .llms-reporting.wrap td.lesson {\n text-align: left;\n}\n.llms-reporting.wrap td.section-title {\n background: #eaeaea;\n text-align: left;\n font-weight: 700;\n padding: 16px 4px;\n}\n.llms-reporting.wrap td.questions-table {\n text-align: left;\n}\n.llms-reporting.wrap td.questions-table .correct,\n.llms-reporting.wrap td.questions-table .question,\n.llms-reporting.wrap td.questions-table .selected {\n text-align: left;\n max-width: 300px;\n}\n.llms-reporting.wrap td.questions-table .correct img,\n.llms-reporting.wrap td.questions-table .question img,\n.llms-reporting.wrap td.questions-table .selected img {\n height: auto;\n max-width: 64px;\n}\n.llms-reporting.wrap table.quiz-attempts {\n margin-bottom: 40px;\n}\n.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary {\n background: #e1e1e1;\n border-radius: 8px;\n box-shadow: none;\n color: #414141;\n font-size: 13px;\n font-weight: 700;\n height: auto;\n padding: 8px 14px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary, .llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-bottom: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-options-page-contents, .llms-reporting.wrap.tab--sales .llms-options-page-contents {\n box-shadow: none;\n background: none;\n margin-top: 20px;\n padding: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form {\n align-items: center;\n align-self: center;\n color: #FFF;\n display: flex;\n font-size: 13px;\n gap: 5px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label {\n font-weight: 700;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input {\n border: 0;\n font-size: 13px;\n margin: 0;\n padding: 0 4px;\n vertical-align: middle;\n width: 110px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input {\n width: 100% !important;\n}\n.llms-reporting.wrap.tab--enrollments .button.small, .llms-reporting.wrap.tab--sales .button.small {\n height: 23px;\n line-height: 23px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters, .llms-reporting.wrap.tab--sales .llms-analytics-filters {\n display: none;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap {\n background-color: #FFF;\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: -20px 10px 20px 10px;\n padding: 20px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n display: flex;\n flex-direction: column;\n gap: 20px;\n justify-content: space-between;\n margin: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n flex-direction: row;\n }\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item {\n box-sizing: border-box;\n width: 100%;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label {\n display: block;\n font-weight: 700;\n margin: 0 0 5px 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered {\n word-wrap: break-word;\n text-overflow: inherit;\n white-space: normal;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p, .llms-reporting.wrap.tab--sales .llms-analytics-filters p {\n margin: 0;\n text-align: right;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary, .llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary {\n display: inline-block;\n}\n.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap {\n width: 160px;\n}\n\n.llms-charts-wrapper {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n padding: 20px;\n}\n\n.llms-reporting-tab h1, .llms-reporting-tab h2, .llms-reporting-tab h3, .llms-reporting-tab h4, .llms-reporting-tab h5, .llms-reporting-tab h6 {\n margin: 0;\n}\n.llms-reporting-tab h1 a, .llms-reporting-tab h2 a, .llms-reporting-tab h3 a, .llms-reporting-tab h4 a, .llms-reporting-tab h5 a, .llms-reporting-tab h6 a {\n color: #466dd8;\n text-decoration: none;\n}\n.llms-reporting-tab h1 a:hover, .llms-reporting-tab h2 a:hover, .llms-reporting-tab h3 a:hover, .llms-reporting-tab h4 a:hover, .llms-reporting-tab h5 a:hover, .llms-reporting-tab h6 a:hover {\n color: #466dd8;\n}\n.llms-reporting-tab h2 {\n font-size: 22px;\n line-height: 1.5;\n}\n.llms-reporting-tab h2.llms-table-title {\n margin-bottom: 20px;\n}\n.llms-reporting-tab h5 {\n font-size: 15px;\n line-height: 1.5;\n}\n.llms-reporting-tab .llms-reporting-body {\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header {\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-gb-tab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header {\n padding: 30px;\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img {\n border-radius: 50%;\n display: inline-block;\n margin-right: 10px;\n overflow: hidden;\n vertical-align: middle;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img {\n display: block;\n max-height: 64px;\n width: auto;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info {\n display: inline-block;\n vertical-align: middle;\n}\n\n.llms-reporting-breadcrumbs {\n margin: 0;\n padding: 0;\n}\n.llms-reporting-breadcrumbs a {\n color: #466dd8;\n font-size: 15px;\n text-decoration: none;\n}\n.llms-reporting-breadcrumbs a:hover {\n color: #2b55cb;\n}\n.llms-reporting-breadcrumbs a:after {\n content: \" > \";\n color: #646970;\n}\n.llms-reporting-breadcrumbs a:last-child {\n color: #000;\n font-weight: 700;\n}\n.llms-reporting-breadcrumbs a:last-child:after {\n display: none;\n}\n\n#llms-students-table .name {\n text-align: left;\n}\n\n.llms-reporting-tab-content {\n display: flex;\n}\n.llms-reporting-tab-content > header:before, .llms-reporting-tab-content > header:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-tab-content > header:after {\n clear: both;\n}\n.llms-reporting-tab-content h3 {\n margin-bottom: 20px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-filter {\n float: right;\n position: relative;\n margin-right: 0.75em;\n width: 180px;\n top: -3px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-main {\n flex: 3;\n max-width: 75%;\n}\n.llms-reporting-tab-content .llms-reporting-tab-side {\n flex: 1;\n margin-left: 20px;\n}\n.llms-reporting-tab-content > .llms-table-wrap {\n flex: 1;\n}\n\n.llms-reporting-widgets:before, .llms-reporting-widgets:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widgets:after {\n clear: both;\n}\n\n.llms-reporting-widget {\n border-top: 4px solid #466dd8;\n background: #fafafa;\n margin-bottom: 10px;\n padding: 30px;\n}\n.llms-reporting-widget:before, .llms-reporting-widget:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widget:after {\n clear: both;\n}\n.llms-reporting-widget .fa {\n color: #999;\n float: left;\n font-size: 32px;\n margin-right: 10px;\n}\n.llms-reporting-widget strong {\n color: #333;\n font-size: 20px;\n line-height: 1.2;\n}\n.llms-reporting-widget.llms-reporting-student-address strong {\n line-height: 1.1;\n}\n.llms-reporting-widget sup,\n.llms-reporting-widget .llms-price-currency-symbol {\n font-size: 75%;\n position: relative;\n top: -4px;\n vertical-align: baseline;\n}\n.llms-reporting-widget small {\n font-size: 13px;\n}\n.llms-reporting-widget small.compare {\n margin-left: 5px;\n}\n.llms-reporting-widget small.compare.positive {\n color: #83c373;\n}\n.llms-reporting-widget small.compare.negative {\n color: #e5554e;\n}\n\n.llms-reporting-event {\n border-left: 4px solid #555;\n background: #fafafa;\n font-size: 11px;\n line-height: 1.2;\n margin-bottom: 0.75em;\n padding: 10px;\n}\n.llms-reporting-event:before, .llms-reporting-event:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-event:after {\n clear: both;\n}\n.llms-reporting-event.color--blue {\n border-left-color: #466dd8;\n}\n.llms-reporting-event.color--green, .llms-reporting-event._enrollment_trigger, .llms-reporting-event._is_complete.yes {\n border-left-color: #83c373;\n}\n.llms-reporting-event.color--purple, .llms-reporting-event._status.enrolled {\n border-left-color: #845ef7;\n}\n.llms-reporting-event.color--red, .llms-reporting-event._status.expired, .llms-reporting-event._status.cancelled {\n border-left-color: #e5554e;\n}\n.llms-reporting-event.color--orange, .llms-reporting-event._achievement_earned, .llms-reporting-event._certificate_earned, .llms-reporting-event._email_sent {\n border-left-color: #ff922b;\n}\n.llms-reporting-event time {\n color: #888;\n}\n.llms-reporting-event .llms-student-avatar {\n margin-left: 10px;\n float: right;\n}\n.llms-reporting-event a {\n text-decoration: none;\n color: inherit;\n}\n\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-left: 0;\n margin-right: 0;\n }\n}\n.llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n list-style-type: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n\n.wrap.llms-reporting .llms-inside-wrap,\n.wrap.lifterlms-settings .llms-inside-wrap,\n.wrap.llms-status .llms-inside-wrap {\n box-sizing: border-box;\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,\n.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,\n.wrap.llms-status .llms-inside-wrap .llms-nav-text {\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-subheader .llms-save,\n.wrap.lifterlms-settings .llms-subheader .llms-save,\n.wrap.llms-status .llms-subheader .llms-save {\n flex: auto;\n text-align: right;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0 -20px 20px -10px;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover {\n background: #f0f0f1;\n color: #222222;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fafafa;\n color: #466dd8;\n border-top-color: #466dd8;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 700;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n border-top: 2px solid transparent;\n padding: 14px;\n}\n.wrap.llms-reporting .llms-setting-group,\n.wrap.lifterlms-settings .llms-setting-group,\n.wrap.llms-status .llms-setting-group {\n background-color: #FFF;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label,\n.wrap.lifterlms-settings .llms-setting-group .llms-label,\n.wrap.llms-status .llms-setting-group .llms-label {\n border-bottom: 1px solid #efefef;\n font-weight: 700;\n font-size: 20px;\n padding: 20px;\n margin: -20px -20px 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,\n.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,\n.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary {\n margin-left: 10px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons {\n color: #444;\n cursor: help;\n}\n.wrap.llms-reporting .llms-setting-group .form-table,\n.wrap.lifterlms-settings .llms-setting-group .form-table,\n.wrap.llms-status .llms-setting-group .form-table {\n margin: 0;\n}\n.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle {\n margin-top: 0;\n}\n.wrap.llms-reporting .llms-setting-group td[colspan=\"2\"],\n.wrap.lifterlms-settings .llms-setting-group td[colspan=\"2\"],\n.wrap.llms-status .llms-setting-group td[colspan=\"2\"] {\n padding-top: 0;\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,\n.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,\n.wrap.llms-status .llms-setting-group tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n.wrap.llms-reporting .llms-setting-group p,\n.wrap.lifterlms-settings .llms-setting-group p,\n.wrap.llms-status .llms-setting-group p {\n font-size: 14px;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text],\n.wrap.llms-reporting .llms-setting-group input[type=password],\n.wrap.llms-reporting .llms-setting-group input[type=datetime],\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local],\n.wrap.llms-reporting .llms-setting-group input[type=date],\n.wrap.llms-reporting .llms-setting-group input[type=month],\n.wrap.llms-reporting .llms-setting-group input[type=time],\n.wrap.llms-reporting .llms-setting-group input[type=week],\n.wrap.llms-reporting .llms-setting-group input[type=number],\n.wrap.llms-reporting .llms-setting-group input[type=email],\n.wrap.llms-reporting .llms-setting-group input[type=url],\n.wrap.llms-reporting .llms-setting-group input[type=search],\n.wrap.llms-reporting .llms-setting-group input[type=tel],\n.wrap.llms-reporting .llms-setting-group input[type=color],\n.wrap.llms-reporting .llms-setting-group select,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.lifterlms-settings .llms-setting-group input[type=text],\n.wrap.lifterlms-settings .llms-setting-group input[type=password],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],\n.wrap.lifterlms-settings .llms-setting-group input[type=date],\n.wrap.lifterlms-settings .llms-setting-group input[type=month],\n.wrap.lifterlms-settings .llms-setting-group input[type=time],\n.wrap.lifterlms-settings .llms-setting-group input[type=week],\n.wrap.lifterlms-settings .llms-setting-group input[type=number],\n.wrap.lifterlms-settings .llms-setting-group input[type=email],\n.wrap.lifterlms-settings .llms-setting-group input[type=url],\n.wrap.lifterlms-settings .llms-setting-group input[type=search],\n.wrap.lifterlms-settings .llms-setting-group input[type=tel],\n.wrap.lifterlms-settings .llms-setting-group input[type=color],\n.wrap.lifterlms-settings .llms-setting-group select,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.llms-status .llms-setting-group input[type=text],\n.wrap.llms-status .llms-setting-group input[type=password],\n.wrap.llms-status .llms-setting-group input[type=datetime],\n.wrap.llms-status .llms-setting-group input[type=datetime-local],\n.wrap.llms-status .llms-setting-group input[type=date],\n.wrap.llms-status .llms-setting-group input[type=month],\n.wrap.llms-status .llms-setting-group input[type=time],\n.wrap.llms-status .llms-setting-group input[type=week],\n.wrap.llms-status .llms-setting-group input[type=number],\n.wrap.llms-status .llms-setting-group input[type=email],\n.wrap.llms-status .llms-setting-group input[type=url],\n.wrap.llms-status .llms-setting-group input[type=search],\n.wrap.llms-status .llms-setting-group input[type=tel],\n.wrap.llms-status .llms-setting-group input[type=color],\n.wrap.llms-status .llms-setting-group select,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area) {\n width: 50%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].medium,\n.wrap.llms-reporting .llms-setting-group input[type=password].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-reporting .llms-setting-group input[type=date].medium,\n.wrap.llms-reporting .llms-setting-group input[type=month].medium,\n.wrap.llms-reporting .llms-setting-group input[type=time].medium,\n.wrap.llms-reporting .llms-setting-group input[type=week].medium,\n.wrap.llms-reporting .llms-setting-group input[type=number].medium,\n.wrap.llms-reporting .llms-setting-group input[type=email].medium,\n.wrap.llms-reporting .llms-setting-group input[type=url].medium,\n.wrap.llms-reporting .llms-setting-group input[type=search].medium,\n.wrap.llms-reporting .llms-setting-group input[type=tel].medium,\n.wrap.llms-reporting .llms-setting-group input[type=color].medium,\n.wrap.llms-reporting .llms-setting-group select.medium,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,\n.wrap.lifterlms-settings .llms-setting-group select.medium,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.llms-status .llms-setting-group input[type=text].medium,\n.wrap.llms-status .llms-setting-group input[type=password].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-status .llms-setting-group input[type=date].medium,\n.wrap.llms-status .llms-setting-group input[type=month].medium,\n.wrap.llms-status .llms-setting-group input[type=time].medium,\n.wrap.llms-status .llms-setting-group input[type=week].medium,\n.wrap.llms-status .llms-setting-group input[type=number].medium,\n.wrap.llms-status .llms-setting-group input[type=email].medium,\n.wrap.llms-status .llms-setting-group input[type=url].medium,\n.wrap.llms-status .llms-setting-group input[type=search].medium,\n.wrap.llms-status .llms-setting-group input[type=tel].medium,\n.wrap.llms-status .llms-setting-group input[type=color].medium,\n.wrap.llms-status .llms-setting-group select.medium,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium {\n width: 30%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].small,\n.wrap.llms-reporting .llms-setting-group input[type=password].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-reporting .llms-setting-group input[type=date].small,\n.wrap.llms-reporting .llms-setting-group input[type=month].small,\n.wrap.llms-reporting .llms-setting-group input[type=time].small,\n.wrap.llms-reporting .llms-setting-group input[type=week].small,\n.wrap.llms-reporting .llms-setting-group input[type=number].small,\n.wrap.llms-reporting .llms-setting-group input[type=email].small,\n.wrap.llms-reporting .llms-setting-group input[type=url].small,\n.wrap.llms-reporting .llms-setting-group input[type=search].small,\n.wrap.llms-reporting .llms-setting-group input[type=tel].small,\n.wrap.llms-reporting .llms-setting-group input[type=color].small,\n.wrap.llms-reporting .llms-setting-group select.small,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].small,\n.wrap.lifterlms-settings .llms-setting-group select.small,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.llms-status .llms-setting-group input[type=text].small,\n.wrap.llms-status .llms-setting-group input[type=password].small,\n.wrap.llms-status .llms-setting-group input[type=datetime].small,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-status .llms-setting-group input[type=date].small,\n.wrap.llms-status .llms-setting-group input[type=month].small,\n.wrap.llms-status .llms-setting-group input[type=time].small,\n.wrap.llms-status .llms-setting-group input[type=week].small,\n.wrap.llms-status .llms-setting-group input[type=number].small,\n.wrap.llms-status .llms-setting-group input[type=email].small,\n.wrap.llms-status .llms-setting-group input[type=url].small,\n.wrap.llms-status .llms-setting-group input[type=search].small,\n.wrap.llms-status .llms-setting-group input[type=tel].small,\n.wrap.llms-status .llms-setting-group input[type=color].small,\n.wrap.llms-status .llms-setting-group select.small,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small {\n width: 20%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=password].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=date].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=month].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=time].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=week].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=number].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=email].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=url].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=search].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=color].tiny,\n.wrap.llms-reporting .llms-setting-group select.tiny,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,\n.wrap.lifterlms-settings .llms-setting-group select.tiny,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.llms-status .llms-setting-group input[type=text].tiny,\n.wrap.llms-status .llms-setting-group input[type=password].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-status .llms-setting-group input[type=date].tiny,\n.wrap.llms-status .llms-setting-group input[type=month].tiny,\n.wrap.llms-status .llms-setting-group input[type=time].tiny,\n.wrap.llms-status .llms-setting-group input[type=week].tiny,\n.wrap.llms-status .llms-setting-group input[type=number].tiny,\n.wrap.llms-status .llms-setting-group input[type=email].tiny,\n.wrap.llms-status .llms-setting-group input[type=url].tiny,\n.wrap.llms-status .llms-setting-group input[type=search].tiny,\n.wrap.llms-status .llms-setting-group input[type=tel].tiny,\n.wrap.llms-status .llms-setting-group input[type=color].tiny,\n.wrap.llms-status .llms-setting-group select.tiny,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny {\n width: 10%;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fff;\n }\n}\n.wrap.llms-reporting #llms-mailhawk-connect,\n.wrap.lifterlms-settings #llms-mailhawk-connect,\n.wrap.llms-status #llms-mailhawk-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-mailhawk-connect .dashicons,\n.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,\n.wrap.llms-status #llms-mailhawk-connect .dashicons {\n margin: -4px 4px 0 0;\n vertical-align: middle;\n}\n.wrap.llms-reporting #llms-sendwp-connect,\n.wrap.lifterlms-settings #llms-sendwp-connect,\n.wrap.llms-status #llms-sendwp-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-sendwp-connect .fa,\n.wrap.lifterlms-settings #llms-sendwp-connect .fa,\n.wrap.llms-status #llms-sendwp-connect .fa {\n margin-right: 4px;\n}\n\n@media only screen and (min-width: 782px) {\n .wrap.lifterlms-settings .llms-subheader {\n height: 40px;\n position: sticky;\n top: 32px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n}\n.wrap.llms-dashboard .llms-inside-wrap {\n padding-top: 30px;\n}\n.wrap.llms-dashboard #poststuff h2 {\n padding: 12px 20px;\n}\n.wrap.llms-dashboard .llms-dashboard-activity h2 {\n font-size: 20px;\n font-weight: 700;\n line-height: 1.5;\n margin-top: 0;\n text-align: center;\n}\n.wrap.llms-dashboard .postbox {\n background-color: #FFF;\n border: none;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n}\n.wrap.llms-dashboard .postbox .postbox-header {\n border-bottom-color: #efefef;\n}\n.wrap.llms-dashboard .postbox .inside {\n padding: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p {\n text-align: left;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions {\n padding-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p {\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary {\n display: inline-block;\n margin-top: 15px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul {\n list-style: disc;\n margin: 5px 0 0 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul li {\n font-size: 15px;\n line-height: 1.5;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n display: grid;\n grid-template-columns: 1fr;\n grid-gap: 30px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a {\n display: inline-block;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3 {\n margin: 0 0 10px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul {\n margin-bottom: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist {\n list-style: none;\n margin-left: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa {\n text-align: center;\n width: 16px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check {\n color: #008a20;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times {\n color: #d63638;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action {\n display: block;\n text-align: center;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n grid-template-columns: 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n display: grid;\n grid-template-columns: 1fr 1fr;\n grid-gap: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons {\n color: #AAA;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n grid-template-columns: 1fr 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul,\n.wrap.llms-dashboard #llms_dashboard_podcast ul {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li {\n margin: 0 0 15px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li a,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li a {\n display: block;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p,\n.wrap.llms-dashboard #llms_dashboard_podcast p {\n margin: 15px 0;\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p a,\n.wrap.llms-dashboard #llms_dashboard_podcast p a {\n display: inline-block;\n}\n\n#llms_dashboard_widget .inside {\n margin: 0;\n padding-bottom: 8px;\n}\n#llms_dashboard_widget .llms-dashboard-widget-wrap {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding-top: 12px;\n}\n#llms_dashboard_widget .activity-block {\n padding-bottom: 8px;\n border-color: #e8e8e8;\n}\n#llms_dashboard_widget h3 {\n margin-bottom: 0;\n}\n#llms_dashboard_widget .llms-charts-wrapper {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-row {\n display: flex;\n justify-content: space-between;\n gap: 8px;\n width: 100%;\n align-items: stretch;\n padding: 4px 0;\n}\n#llms_dashboard_widget .llms-widget-row:before, #llms_dashboard_widget .llms-widget-row:after {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-1-4 {\n padding: 0;\n flex: 1;\n}\n#llms_dashboard_widget .llms-widget {\n padding: 8px 8px 12px;\n margin: 0;\n border-radius: 6px;\n border: 1px solid #e8e8e8;\n box-shadow: 0px 2px 4px rgb(246, 247, 247);\n height: 100%;\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n align-items: flex-end;\n}\n#llms_dashboard_widget .llms-label {\n font-size: 14px;\n width: 100%;\n align-self: flex-start;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n#llms_dashboard_widget .llms-widget-content {\n font-size: 20px;\n margin: 0;\n}\n#llms_dashboard_widget .llms-widget-info-toggle {\n display: none;\n}\n#llms_dashboard_widget a {\n border: 0;\n}\n#llms_dashboard_widget .subsubsub {\n color: #dcdcde;\n}\n\n.llms-dashboard-widget-feed {\n margin: 0 -12px;\n padding: 0;\n background-color: #f6f7f7;\n}\n.llms-dashboard-widget-feed li {\n margin: 0;\n padding: 8px 12px;\n border-bottom: 1px solid #e8e8e8;\n}\n.llms-dashboard-widget-feed span {\n display: block;\n}\n\n.llms-remarks .llms-remarks-field {\n height: 120px;\n width: 100%;\n}\n.llms-remarks input[type=number] {\n width: 60px;\n}\n\nbutton[name=llms_quiz_attempt_action] .save {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .default {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .save {\n display: inline;\n}\n\n.llms-form-fields {\n box-sizing: border-box;\n}\n.llms-form-fields * {\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}","%cf,\n%clearfix {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\n\t&:after {\n \tclear: both;\n\t}\n}\n\n\n\n%llms-element {\n\tbackground: $el-background;\n\tbox-shadow: $el-box-shadow;\n\tdisplay: block;\n\tcolor: #212121;\n\tmin-height: 85px;\n\tpadding: 15px;\n\ttext-decoration: none;\n\tposition: relative;\n\ttransition: background .4s ease;\n\n\t&:hover {\n\t\tbackground: $el-background-hover;\n\t}\n}\n",".llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n\tborder:none;\n\tborder-radius: 8px;\n\tcolor: $color-white;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: $color-white;\n\t}\n\t&:focus {\n\t\tcolor: $color-white;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n\t&.small {\n\t\tfont-size: 13px;\n\t\tpadding: 8px 14px;\n\t\t&.square { padding: 8px; }\n\t}\n\n\t&.large {\n\t\tfont-size: 18px;\n\t\tline-height: 1.2;\n\t\tpadding: 16px 32px;\n\t\t&.square { padding: 16px; }\n\t\t.fa {\n\t\t\tleft: -7px;\n\t\t\tposition: relative;\n\t\t}\n\t}\n\n}\n\n.llms-button-primary {\n\tbackground: $color-brand-blue;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-blue-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-blue-light;\n\t}\n}\n\n.llms-button-secondary {\n\tbackground: #e1e1e1;\n\tcolor: #414141;\n\t&:hover {\n\t\tcolor: #414141;\n\t\tbackground: darken( #e1e1e1, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tcolor: #414141;\n\t\tbackground: lighten( #e1e1e1, 4 );\n\t}\n}\n\n.llms-button-action {\n\tbackground: $color-brand-orange;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-orange-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-orange-light;\n\t}\n}\n\n.llms-button-danger {\n\tbackground: $color-danger;\n\t&:hover {\n\t\tbackground: darken( $color-danger, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: lighten( $color-danger, 4 );\n\t}\n}\n\n.llms-button-outline {\n\tbackground: transparent;\n\tborder: 3px solid #1D2327;\n\tborder-radius: 8px;\n\tcolor: #1D2327;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: #1D2327;\n\t}\n\t&:focus {\n\t\tcolor: #1D2327;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n}","// ----- LifterLMS Brand Colors ----- \\\\\n$color-brand-dark-blue: #243c56;\n\n$color-brand-blue: #2295ff;\n$color-brand-blue-dark: darken( $color-brand-blue, 12 ); // #0077e4\n$color-brand-blue-light: lighten( $color-brand-blue, 8 );\n\n$color-brand-orange: #f8954f;\n$color-brand-orange-dark: #f67d28;\n$color-brand-orange-light: lighten( $color-brand-orange, 8 );\n\n$color-brand-aqua: #17bebb;\n\n$color-brand-pink: #ef476f;\n\n\n\n// ----- name our versions of common colors ----- \\\\\n$color-black: #010101;\n$color-green: #83c373;\n$color-blue: $color-brand-blue;\n$color-red: #e5554e;\n$color-white: #fefefe;\n$color-aqua: #35bbaa;\n$color-purple: #845ef7;\n$color-orange: #ff922b;\n\n$color-red-hover: darken($color-red,5);\n\n\n// ----- state / action names ----- \\\\\n$color-success: $color-green;\n$color-danger: $color-red;\n\n\n\n\n\n\n\n\n$color-lightgrey:\t\t#ccc;\n$color-grey: \t\t\t#999;\n$color-darkgrey:\t\t#666;\n$color-cinder:\t\t\t#444;\n$color-lightblue:\t\t#33b1cb;\n$color-darkblue:\t\t#0185a3;\n\n\n\n\n\n\n\n\n\n\n\n\n$color-border: #efefef;\n\n$el-box-shadow: 0 1px 2px 0 rgba($color-black,0.4);\n$el-background: #f1f1f1;\n$el-background-hover: #eaeaea;\n\n$break-xsmall: 320px;\n$break-small: 641px;\n$break-medium: 768px;\n$break-large: 1024px;\n","//\n// LifterLMS Brand Colors\n// Currently overrides brand colors on the admin panel\n//\n\n$color-brand-blue: #466dd8;\n$color-brand-blue-dark: darken( $color-brand-blue, 8 );\n$color-brand-dark-blue: darken( $color-brand-blue, 24 );\n$color-brand-blue-light: lighten( $color-brand-blue, 8 );\n\n$color-brand-orange: #f8954f;\n$color-brand-orange-dark: #f67d28;\n$color-brand-orange-light: lighten( $color-brand-orange, 8 );\n\n$color-brand-aqua: #17bebb;\n\n$color-brand-pink: #ef476f;\n\n$color-blue: $color-brand-blue;\n",".lifterlms, // Settings & Course Builder.\n.llms-metabox, // Some Metaboxes.\n.llms-mb-container, // Other Metaboxes.\n.llms-quiz-wrapper { // Quiz results.\n\n\t[data-tip],\n\t[data-title-default],\n\t[data-title-active] {\n\n\t\t$bgcolor: #444;\n\n\t\tposition: relative;\n\n\t\t&.tip--top-right {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\t\t&.tip--top-left {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\n\t\t&.tip--bottom-left {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&.tip--bottom-right {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&:before {\n\t\t\tbackground: $bgcolor;\n\t\t\tborder-radius: 4px;\n\t\t\tcolor: #fff;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.2;\n\t\t\tpadding: 8px;\n\t\t\tmax-width: 300px;\n\t\t\twidth: max-content;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tborder: 6px solid transparent;\n\t\t\theight: 0;\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&:before,\n\t\t&:after {\n\t\t\topacity: 0;\n\t\t\ttransition: all 0.2s 0.1s ease;\n\t\t\tposition: absolute;\n\t\t\tpointer-events: none;\n\t\t\tvisibility: hidden;\n\t\t}\n\t\t&:hover:before,\n\t\t&:hover:after {\n\t\t\topacity: 1;\n\t\t\ttransition: all 0.2s 0.6s ease;\n\t\t\tvisibility: visible;\n\t\t\tz-index: 99999999;\n\t\t}\n\n\t}\n\n\t[data-tip] {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip);\n\t\t}\n\t}\n\t[data-tip].active {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip-active);\n\t\t}\n\t}\n\n}\n","#adminmenu {\n\n\t.toplevel_page_lifterlms .wp-menu-image img {\n\t\tpadding-top: 6px;\n\t\twidth: 20px;\n\t}\n\n\t.toplevel_page_lifterlms,\n\t.opensub .wp-submenu li.current,\n\t.wp-submenu li.current,\n\t.wp-submenu li.current,\n\t.wp-submenu li.current,\n\ta.wp-has-current-submenu:focus+.wp-submenu li.current {\n\t\ta[href*=\"page=llms-add-ons\"] {\n\t\t\tcolor: $color-orange;\n\t\t}\n\t}\n\n}\n\n\n","/******************************************************************\n\nGrids for Breakpoints\n\n******************************************************************/\n\n// using a mixin since we can't use placeholder selectors\n@mixin grid-col {\n float: left;\n padding-right: 0.75em;\n box-sizing: border-box;\n\n}\n\n// the last column\n.last-col {\n float: right;\n padding-right: 0 !important;\n}\n.last-col:after {\n clear: both;\n}\n\n/*\nMobile Grid Styles\nThese are the widths for the mobile grid.\nThere are four types, but you can add or customize\nthem however you see fit.\n*/\n@media (max-width: 767px) {\n\n .m-all {\n @include grid-col;\n width: 100%;\n padding-right: 0;\n }\n\n .m-1of2 {\n @include grid-col;\n width: 50%;\n }\n\n .m-1of3 {\n @include grid-col;\n width: 33.33%;\n }\n\n .m-2of3 {\n @include grid-col;\n width: 66.66%;\n }\n\n .m-1of4 {\n @include grid-col;\n width: 25%;\n }\n\n .m-3of4 {\n @include grid-col;\n width: 75%;\n }\n\n\t.m-right {\n\t\ttext-align: center;\n\t}\n\t.m-center {\n\t\ttext-align: center;\n\t}\n\t.m-left {\n\t\ttext-align: center;\n\t}\n\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n\n} // end mobile styles\n\n\n/* Portrait tablet to landscape */\n@media (min-width: 768px) and (max-width: 1029px) {\n\n .t-all {\n @include grid-col;\n width: 100%;\n padding-right: 0;\n }\n\n .t-1of2 {\n @include grid-col;\n width: 50%;\n }\n\n .t-1of3 {\n @include grid-col;\n width: 33.33%;\n }\n\n .t-2of3 {\n @include grid-col;\n width: 66.66%;\n }\n\n .t-1of4 {\n @include grid-col;\n width: 25%;\n }\n\n .t-3of4 {\n @include grid-col;\n width: 75%;\n }\n\n .t-1of5 {\n @include grid-col;\n width: 20%;\n }\n\n .t-2of5 {\n @include grid-col;\n width: 40%;\n }\n\n .t-3of5 {\n @include grid-col;\n width: 60%;\n }\n\n .t-4of5 {\n @include grid-col;\n width: 80%;\n }\n\n\t.d-right {\n\t\ttext-align: right;\n\t}\n\t.d-center {\n\t\ttext-align: center;\n\t}\n\t.d-left {\n\t\ttext-align: left;\n\t}\n\n} // end tablet\n\n/* Landscape to small desktop */\n@media (min-width: 1030px) {\n\n .d-all {\n @include grid-col;\n width: 100%;\n padding-right: 0;\n }\n\n .d-1of2 {\n @include grid-col;\n width: 50%;\n }\n\n .d-1of3 {\n @include grid-col;\n width: 33.33%;\n }\n\n .d-2of3 {\n @include grid-col;\n width: 66.66%;\n }\n\n .d-1of4 {\n @include grid-col;\n width: 25%;\n }\n\n .d-3of4 {\n @include grid-col;\n width: 75%;\n }\n\n .d-1of5 {\n @include grid-col;\n width: 20%;\n }\n\n .d-2of5 {\n @include grid-col;\n width: 40%;\n }\n\n .d-3of5 {\n @include grid-col;\n width: 60%;\n }\n\n .d-4of5 {\n @include grid-col;\n width: 80%;\n }\n\n .d-1of6 {\n @include grid-col;\n width: 16.6666666667%;\n }\n\n .d-1of7 {\n @include grid-col;\n width: 14.2857142857%;\n }\n\n .d-2of7 {\n @include grid-col;\n width: 28.5714286%;\n }\n\n .d-3of7 {\n @include grid-col;\n width: 42.8571429%;\n }\n\n .d-4of7 {\n @include grid-col;\n width: 57.1428572%;\n }\n\n .d-5of7 {\n @include grid-col;\n width: 71.4285715%;\n }\n\n .d-6of7 {\n @include grid-col;\n width: 85.7142857%;\n }\n\n .d-1of8 {\n @include grid-col;\n width: 12.5%;\n }\n\n .d-1of9 {\n @include grid-col;\n width: 11.1111111111%;\n }\n\n .d-1of10 {\n @include grid-col;\n width: 10%;\n }\n\n .d-1of11 {\n @include grid-col;\n width: 9.09090909091%;\n }\n\n .d-1of12 {\n @include grid-col;\n width: 8.33%;\n }\n\n\t.d-right {\n\t\ttext-align: right;\n\t}\n\t.d-center {\n\t\ttext-align: center;\n\t}\n\t.d-left {\n\t\ttext-align: left;\n\t}\n\n} // end desktop styles\n","/******************************************************************\n\nForm Styles\n\n******************************************************************/\n\n// lifterlms form wrapper\n#llms-form-wrapper {\n\n\t// setup defaults\n\tinput[type=\"text\"],\n\tinput[type=\"password\"],\n\tinput[type=\"datetime\"],\n\tinput[type=\"datetime-local\"],\n\tinput[type=\"date\"],\n\tinput[type=\"month\"],\n\tinput[type=\"time\"],\n\tinput[type=\"week\"],\n\tinput[type=\"number\"],\n\tinput[type=\"email\"],\n\tinput[type=\"url\"],\n\tinput[type=\"search\"],\n\tinput[type=\"tel\"],\n\tinput[type=\"color\"],\n\tinput[type=\"checkbox\"],\n\tselect,\n\ttextarea,\n\t.llms-field {\n\n\t\t// a focused input (or hovered on)\n\t\t&:focus,\n\t\t&:active {\n\n\t\t} // end hover or focus\n\t}\n\n\t// sub wrapper for search filter form (analytics)\n\t.llms-search-form-wrapper {\n\t\tborder-bottom: 1px solid $color-grey;\n\t\tmargin: 20px 0;\n\n\t}\n\n\n\t#llms_analytics_search {\n\t\tborder:none !important;\n\t\ttext-shadow: none !important;\n\t\tborder: none !important;\n\t\toutline: none !important;\n\t\tbox-shadow: none !important;\n\t\tmargin: 0 !important;\n\t\tcolor: $color-white !important;\n\t\tbackground: $color-blue !important;\n\t\tborder-radius: 0;\n\t\ttransition: .5s;\n\n\t\t&:hover {\n\t\t\tbackground: $color-darkblue !important;\n\n\t\t}&:active {\n\t\t\tbackground: $color-lightblue !important;\n\t\t}\n\t}\n\n} // end input defaults\n\n\n#llms-skip-setup-form {\n\t.llms-admin-link {\n\t\tbackground:none!important;\n\t\tborder:none;\n\t\tpadding:0!important;\n\t\tcolor:#0074a2;\n\t\tcursor:pointer;\n\t\t&:hover {\n\t\t\tcolor:#2ea2cc\n\t\t}&:focus{\n\t\t\tcolor:#124964;\n\t\t}\n\n\t}\n\n}\n\n/**\n * Toggle Switch ( replaces checkbox on admin panels )\n */\n.llms-switch {\n\tposition: relative;\n\n\t.llms-toggle {\n\t\tposition: absolute;\n\t\tmargin-left: -9999px;\n\t\tvisibility: hidden;\n\t}\n\n\t.llms-toggle + label {\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tcursor: pointer;\n\t\toutline: none;\n\t\tuser-select: none;\n\t}\n\n\tinput.llms-toggle-round + label {\n\t\tborder: 2px solid #6c7781;\n\t\tborder-radius: 10px;\n\t\theight: 20px;\n\t\twidth: 36px;\n\t}\n\tinput.llms-toggle-round + label:before,\n\tinput.llms-toggle-round + label:after {\n\t\tbox-sizing: border-box;\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\ttransition: background 0.4s;\n\t}\n\n\tinput.llms-toggle-round:checked + label {\n\t\tborder-color: #11a0d2;\n\t \tbackground-color: #11a0d2;\n\t}\n\n\t// Primary dot (that moves.)\n\tinput.llms-toggle-round + label:after {\n\t\theight: 12px;\n\t\tleft: 2px;\n\t\ttop: 2px;\n\t\tbackground-color: #6c7781;\n\t\tborder-radius: 50%;\n\t\ttransition: margin 0.4s;\n\t\twidth: 12px;\n\t\tz-index: 3;\n\t}\n\n\t// Primary dot when toggle on.\n\tinput.llms-toggle-round:checked + label:after {\n\t\tbackground-color: $color-white;\n\t\tmargin-left: 16px;\n\t}\n\n\t// Secondary dot: empty on the right side of the toggle when toggled off.\n\tinput.llms-toggle-round + label:before {\n\t\theight: 8px;\n\t\ttop: 4px;\n\t\tborder: 1px solid #6c7781;\n\t\tborder-radius: 50%;\n\t\tright: 4px;\n\t\twidth: 8px;\n\t\tz-index: 2;\n\t}\n\n\tinput.llms-toggle-round:checked + label:before {\n\t\tborder-color: $color-white;\n\t\tborder-radius: 0;\n\t\tleft: 6px;\n\t\tright: auto;\n\t\twidth: 2px;\n\t}\n\n}\n\n#llms-profile-fields {\n\tmargin: 50px 0;\n\t.llms-form-field {\n\t\tpadding-left: 0;\n\t}\n\tlabel {\n\t\tdisplay: block;\n\t\tfont-weight: bold;\n\t\tpadding: 8px 0 2px;\n\t}\n\t.type-checkbox .type-checkbox {\n\t\tlabel {\n\t\t\tdisplay: initial;\n\t\t\tfont-weight: initial;\n\t\t\tpadding: 0;\n\t\t}\n\t\tinput {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-bottom: 0;\n\t\t\twidth: 1rem;\n\t\t}\n\t}\n\tselect {\n\t\tmax-width: 100%;\n\t}\n}\n","a.llms-voucher-delete {\n\tbackground: $color-danger;\n\tcolor: $color-white;\n\tdisplay: block;\n\tpadding: 4px 2px;\n\ttext-decoration: none;\n\ttransition: ease .3s all;\n\n\t&:hover {\n\t\tbackground: #af3a26;\n\t}\n}\n\n\n\n.llms-voucher-codes-wrapper,\n.llms-voucher-redemption-wrapper {\n\n table {\n width: 100%;\n border-collapse: collapse;\n\n th, td {\n border: none;\n }\n\n thead {\n background-color: $color-blue;\n color:#fff;\n th {\n padding: 10px 10px;\n }\n }\n\n tr {\n counter-increment: row-counter;\n &:nth-child(even) {\n background-color: #F1F1F1;\n }\n\n td {\n padding: 5px;\n &:first-child:before {\n content: counter( row-counter );\n }\n }\n }\n }\n}\n\n.llms-voucher-codes-wrapper {\n\n table {\n width: 100%;\n border-collapse: collapse;\n\n th, td {\n border: none;\n }\n\n thead {\n background-color: $color-blue;\n color:#fff;\n }\n\n tr {\n &:nth-child(even) {\n background-color: #F1F1F1;\n }\n\n td {\n\n span {\n display: inline-block;\n min-width: 30px;\n }\n }\n }\n }\n\n button {\n cursor: pointer;\n }\n\n .llms-voucher-delete {\n float: right;\n margin-right: 15px;\n }\n\n .llms-voucher-uses {\n width: 50px;\n }\n\n .llms-voucher-add-codes {\n float: right;\n\n input[type=\"text\"] {\n width: 30px;\n }\n }\n}\n\n.llms-voucher-export-wrapper {\n\n .llms-voucher-export-type {\n width: 100%;\n\n p {\n margin: 0 0 0 15px;\n }\n }\n\n .llms-voucher-email-wrapper {\n width: 100%;\n margin: 25px 0;\n\n input[type=\"text\"] {\n width: 100%;\n }\n\n p {\n margin: 0;\n }\n }\n\n > button {\n float: right;\n }\n}\n\n.postbox .inside {\n overflow: auto;\n}\n",".llms-widget {\n\tbackground-color: #FFF;\n\tborder: 1px solid #dedede;\n\tborder-radius: 12px;\n\tbox-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n\tbox-sizing: border-box;\n\tmargin-bottom: 20px;\n\tpadding: 20px;\n\tposition: relative;\n\twidth: 100%;\n\n\t&.alt {\n\n\t\tborder: 1px solid $color-lightgrey;\n\t\tbackground-color: #efefef;\n\t\tmargin-bottom: 10px;\n\n\t\t.llms-label {\n\t\t\tcolor: #777;\n\t\t\tfont-size: 14px;\n\t\t\tmargin-bottom: 10px;\n\t\t\tpadding-bottom: 5px;\n\t\t}\n\n\t\th2 {\n\t\t\tcolor: #444;\n\t\t\tfont-weight: 300;\n\t\t}\n\n\t}\n\n\ta {\n\t\tborder-bottom: 1px dotted $color-brand-blue;\n\t\tdisplay: inline-block;\n\t\ttext-decoration: none;\n\n\t\t&:hover {\n\t\t\tborder-bottom: 1px dotted $color-brand-blue-dark;\n\t\t}\n\t}\n\n\t// Nested for specificity (matches h1).\n\t.llms-widget-content {\n\t\tmargin: .67em 0;\n\t\tcolor: $color-brand-blue;\n\t\tfont-size: 2.4em;\n\t\tfont-weight: 700;\n\t\tline-height: 1;\n\t\tword-break: break-all;\n\t}\n\n\th2 {\n\t\tfont-size: 1.8em;\n\t}\n\n\t.llms-label {\n\t\tbox-sizing: border-box;\n\t\tfont-size: 18px;\n\t\tfont-weight: 400;\n\t\tmargin: 0 0 10px 0;\n\t\ttext-align: center;\n\t}\n\n\t.llms-chart {\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tbox-sizing: border-box;\n\t}\n\n\tmark.yes {\n\t\tbackground-color: #7ad03a;\n\t}\n\n\t.llms-subtitle {\n\t\tmargin-bottom: 0;\n\t}\n\n\t.spinner {\n\t\tfloat: none;\n\t\tleft: 50%;\n\t\tmargin: -10px 0 0 -10px;\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\tz-index: 2;\n\t}\n\n\t&.is-loading {\n\n\t\t&:before {\n\t\t\tbackground: $color-white;\n\t\t\tbottom: 0;\n\t\t\tcontent: '';\n\t\t\tleft: 0;\n\t\t\topacity: 0.9;\n\t\t\tposition: absolute;\n\t\t\tright: 0;\n\t\t\ttop: 0;\n\t\t\tz-index: 1;\n\t\t}\n\n\t\t.spinner {\n\t\t\tvisibility: visible;\n\t\t}\n\n\t}\n\n\ttd[colspan=\"2\"] {\n\t\tpadding-left: 0;\n\t}\n\n\ttr.llms-disabled-field {\n\t\topacity: 0.5;\n\t\tpointer-events: none;\n\t}\n\n}\n\n.llms-widget-1-3,\n.llms-widget-1-4,\n.llms-widget-1-5 {\n\ttext-align: center;\n}\n\n\n.llms-widget {\n\t.llms-widget-info-toggle {\n\t\tcolor: #AAA;\n\t\tcursor: pointer;\n\t\tfont-size: 16px;\n\t\tposition: absolute;\n\t\tright: 20px;\n\t\ttop: 20px;\n\t}\n\n\t&.info-showing {\n\t\t.llms-widget-info {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n.llms-widget-info {\n\tbackground: $color-cinder;\n\tcolor: $color-white;\n\tbottom: -50px;\n\tdisplay: none;\n\tpadding: 15px;\n\tposition: absolute;\n\ttext-align: center;\n\tleft: 10px;\n\tright: 15px;\n\tz-index: 3;\n\t&:before {\n\t\tcontent: '';\n\t\tborder: 12px solid transparent;\n\t\tborder-bottom-color: $color-cinder;\n\t\tleft: 50%;\n\t\tmargin-left: -12px;\n\t\tposition: absolute;\n\t\ttop: -24px;\n\t}\n\n\tp {\n\t\tmargin: 0;\n\t}\n\n}\n\n.llms-widget-row {\n\t@include clearfix();\n}\n\n.llms-widget-row .no-padding {\n\tpadding: 0 !important;\n}\n","\n@mixin clearfix() {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\t&:after {\n\t clear: both;\n\t}\n}\n\n//\n// Positioning mixin\n//\n// @param [string] $position: position\n// @param [list] $args (()): offsets list\n//\n// @source http://hugogiraudel.com/2013/08/05/offsets-sass-mixin/\n//\n@mixin position($position, $args: ()) {\n\t$offsets: top right bottom left;\n\tposition: $position;\n\n\t@each $offset in $offsets {\n\t\t$index: index($args, $offset);\n\n\t\t@if $index {\n\t\t\t@if $index == length($args) {\n\t\t\t\t#{$offset}: 0;\n\t\t\t}\n\t\t\t@else {\n\t\t\t\t$next: nth($args, $index + 1);\n\t\t\t\t@if is-valid-length($next) {\n\t\t\t\t\t#{$offset}: $next;\n\t\t\t\t}\n\t\t\t\t@else if index($offsets, $next) {\n\t\t\t\t\t#{$offset}: 0;\n\t\t\t\t}\n\t\t\t\t@else {\n\t\t\t\t\t@warn \"Invalid value `#{$next}` for offset `#{$offset}`.\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n//\n// Function checking if $value is a valid length\n// @param [literal] $value: value to test\n// @return [bool]\n//\n@function is-valid-length($value) {\n\t$r: (type-of($value) == \"number\" and not unitless($value)) or (index(auto initial inherit 0, $value) != null);\n\t@return $r;\n}\n\n//\n// Shorthands\n//\n@mixin absolute($args: ()) {\n\t@include position(absolute, $args);\n}\n\n@mixin fixed($args: ()) {\n\t@include position(fixed, $args);\n}\n\n@mixin relative($args: ()) {\n\t@include position(relative, $args);\n}\n\n\n\n@mixin order_status_badges() {\n\n\t.llms-status {\n\t\tborder-radius: 3px;\n\t\tborder-bottom: 1px solid #fff;\n\t\tdisplay: inline-block;\n\t\tfont-size: 80%;\n\t\tpadding: 3px 6px;\n\t\tvertical-align: middle;\n\n\t\t&.llms-size--large {\n\t\t\tfont-size: 105%;\n\t\t\tpadding: 6px 12px;\n\t\t}\n\n\t\t&.llms-active,\n\t\t&.llms-completed,\n\t\t&.llms-pass, // quiz\n\t\t&.llms-txn-succeeded {\n\t\t\tcolor: darken( $color-green, 45 );\n\t\t\tbackground-color: $color-green;\n\t\t}\n\n\t\t&.llms-fail, // quiz\n\t\t&.llms-failed,\n\t\t&.llms-expired,\n\t\t&.llms-cancelled,\n\t\t&.llms-txn-failed {\n\t\t\tcolor: darken( $color-red, 40 );\n\t\t\tbackground-color: $color-red;\n\t\t}\n\n\t\t&.llms-incomplete, // assignment\n\t\t&.llms-on-hold,\n\t\t&.llms-pending,\n\t\t&.llms-pending-cancel,\n\t\t&.llms-refunded,\n\t\t&.llms-txn-pending,\n\t\t&.llms-txn-refunded {\n\t\t\tcolor: darken( orange, 30 );\n\t\t\tbackground-color: orange;\n\t\t}\n\n\t}\n\n}\n","/******************************************************************\n\nSVG Styles\n\n******************************************************************/\n\nsvg {\n &.icon {\n height: 24px;\n width: 24px;\n display: inline-block;\n fill: currentColor; // Inherit color\n vertical-align: baseline; // Options: baseline, sub, super, text-top, text-bottom, middle, top, bottom\n\n // Different styling for when an icon appears in a button element\n button & {\n height: 18px;\n width: 18px;\n margin: 4px -4px 0 4px;\n filter: drop-shadow( 0 1px #eee );\n float: right;\n \n }&.menu-icon {\n height: 20px;\n width: 20px;\n display: inline-block;\n fill: currentColor;\n vertical-align: text-bottom;\n margin-right: 10px;\n \n }&.tree-icon {\n height: 13px;\n width: 13px;\n vertical-align: middle;\n \n }&.section-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n \n }&.button-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n \n }&.button-icon-attr {\n height: 10px;\n width: 10px;\n vertical-align: middle;\n \n }&.list-icon {\n height: 12px;\n width: 12px;\n vertical-align: middle;\n \n &.on {\n color: $color-blue;\n\n }&.off {\n color: $color-cinder;\n }\n \n }&.detail-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n cursor:default;\n \n &.on {\n color: $color-blue;\n\n }&.off {\n color: $color-lightgrey;\n }\n }\n\n }\n\n &.icon-ion {}\n\n &.icon-ion-edit {}\n\n // rotate for arrow tips\n &.icon-ion-arrow-up {\n transform: rotate(90deg);\n }\n\n use {\n pointer-events: none;\n }\n\n}","/******************************************************************\n\nMetabox Tabs\n\n******************************************************************/\n\n// free space up if the metabox is on the side\n#side-sortables .tab-content {\n\tpadding: 0;\n}\n\n.llms-mb-container .tab-content{\n display: none;\n background-color: #FFF;\n padding: 0 20px;\n \n ul:not(.select2-selection__rendered) {\n margin: 0 0 15px 0;\n\n > li {\n padding: 20px 0;\n margin: 0;\n\n &.select:not([class*=\"d-\"]) {\n \twidth: 100%;\n }\n\n &:last-child {\n border: 0;\n padding-bottom: 0;\n\n }\n\n &.top {\n border-bottom: 0;\n padding-bottom: 0;\n }\n\n }\n }\n\n .full-width { width: 100%; }\n\n #wp-content-editor-tools {\n background: none;\n }\n\n}\n\n.llms-mb-container .tab-content.llms-active{\n display: inherit;\n}\n\n\n.llms-mb-container .tab-content .no-border {\n border-bottom: 0px;\n}\n","/******************************************************************\n\nStyles for topModal modal\n\n******************************************************************/\n\n/**\n * Base modal styles\n */\n.topModal {\n display:none;\n position:relative;\n border:4px solid #808080;\n background:#fff;\n z-index:1000001;\n padding:2px;\n max-width:500px;\n margin: 34px auto 0;\n box-sizing: border-box;\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-color: #ffffff;\n border-radius: 2px;\n border: 1px solid #dddddd;\n\n}.topModalClose {\n float:right;\n cursor:pointer;\n margin-right: 10px;\n margin-top: 10px;\n\n}.topModalContainer {\n display: none;\n overflow: auto;\n overflow-y: hidden;\n position: fixed;\n top: 0 !important;\n right: 0;\n bottom: 0;\n left: 0;\n -webkit-overflow-scrolling: touch;\n width: auto !important;\n margin-left: 0 !important;\n background-color: transparent !important;\n z-index: 100002 !important;\n\n}.topModalBackground {\n display:none;\n background:#000;\n position:fixed;\n height:100%;\n width:100%;\n top:0 !important;\n left:0;\n margin-left: 0 !important;\n z-index: 100002 !important;\n box-sizing: border-box;\n overflow: auto;\n overflow-y: hidden;\n\n}body.modal-open {\n overflow: hidden;\n\n}.llms-modal-header {\n border-top-right-radius: 1px;\n border-top-left-radius: 1px;\n background: $color-blue;\n color: #eeeeee;\n padding: 10px 15px;\n font-size: 18px;\n\n}#llms-icon-modal-close {\n width:16px;\n height: 16px;\n fill: $color-white;\n\n}.llms-modal-content {\n padding: 20px;\n\n h3 {\n margin-top: 0;\n }\n\n}\n\n/**\n * Custom Modal Styles for LifterLMS\n */\n.llms-modal-form {\n\n h1 {\n margin-top: 0;\n }\n\n input[type=text] {\n width: 100%;\n }\n\n textarea,\n input[type=\"text\"],\n input[type=\"password\"],\n input[type=\"file\"],\n input[type=\"datetime\"],\n input[type=\"datetime-local\"],\n input[type=\"date\"],\n input[type=\"month\"],\n input[type=\"time\"],\n input[type=\"week\"],\n input[type=\"number\"],\n input[type=\"email\"],\n input[type=\"url\"],\n input[type=\"search\"],\n input[type=\"tel\"],\n input[type=\"color\"] {\n padding: 0 .4em 0 .4em;\n margin-bottom: 2em;\n vertical-align: middle;\n border-radius: 3px;\n min-width: 50px;\n max-width: 635px;\n width: 100%;\n min-height: 32px;\n background-color: #fff;\n border: 1px solid $color-lightgrey;\n margin: 0 0 24px 0;\n outline: none;\n transition: border 0.3s ease-in-out 0s;\n\n &:focus {\n background: $color-white;\n border: 1px solid $color-blue;\n\n }\n }\n\n textarea {\n padding: .4em !important;\n height: 100px !important;\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n outline: none;\n box-sizing: border-box;\n\n &:focus {\n background: $color-white;\n border: 1px solid $color-blue;\n\n }\n\n }\n\n .chosen-container-single .chosen-single {\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n border: 1px solid $color-lightgrey;\n width: 100%;\n background: $color-white !important;\n outline: none;\n box-sizing: border-box;\n box-shadow: 0 0 0 #fff;\n line-height: 32px;\n margin: 0 0 24px 0;\n\n &:focus {\n background: $color-white;\n border: 1px solid $color-blue;\n }\n }\n\n .chosen-container-single .chosen-single div b {\n margin-top: 4px;\n }\n\n .chosen-search input[type=text] {\n border: 1px solid $color-lightgrey;\n\n &:focus {\n background-color: $color-white;\n border: 1px solid $color-blue;\n }\n\n }\n\n .chosen-container-single .chosen-drop {\n margin-top: -28px;\n }\n\n .llms-button-primary, .llms-button-secondary {\n padding: 10px 10px;\n border-radius: 0;\n transition: .5s;\n box-shadow: 0 1px 1px #ccc;\n\n &.full {\n width: 100%;\n }\n }\n}\n\n.modal-open .select2-dropdown {\n z-index: 1000005;\n}\n",".button.llms-merge-code-button {\n\tvertical-align: middle;\n\tsvg {\n\t\tmargin-right: 2px;\n\t\tposition: relative;\n\t\ttop: 4px;\n\t\twidth: 16px;\n\t\tg {\n\t\t\tfill: currentColor;\n\t\t}\n\t}\n}\n\n.llms-mb-container {\n\t.llms-merge-code-wrapper {\n\t\tfloat: right;\n\t\ttop: -5px;\n\t}\n}\n\n.llms-merge-code-wrapper {\n\tdisplay: inline;\n\tposition: relative;\n}\n\n.llms-merge-codes {\n background: #f7f7f7;\n\tborder: 1px solid #ccc;\n\tborder-radius: 3px;\n box-shadow: 0 1px 0 #ccc;\n color: #555;\n\tdisplay: none;\n\tleft: 1px;\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 30px;\n\twidth: 200px;\n\n\tul {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\tli {\n\t\tcursor: pointer;\n\t\tmargin: 0;\n\t\tpadding: 4px 8px !important;\n\t\tborder-bottom: 1px solid #ccc;\n\t}\n\n\tli:hover {\n\t\tcolor: #23282d;\n\t\tbackground: #fefefe;\n\t}\n\n\t&.active {\n\t\tdisplay: block;\n\t\tz-index: 777;\n\t}\n\n}\n","/******************************************************************\n\nBase Mobile\n\n******************************************************************/\n\n.llms-nav-tab,\n.llms-nav-tab-filters {\n\tdisplay: block;\n\twidth: 100%;\n}\n\nform.llms-nav-tab-filters.full-width {\n\twidth: 100%;\n\n\tlabel {\n\t\tdisplay: inline-block;\n\t\twidth: 10%;\n\t\ttext-align: left;\n\t}\n\n\t.select2-container {\n\t\twidth: 85% !important;\n\t}\n}\n\n.llms-nav-tab-settings {\n\tdisplay: block;\n\twidth: 100%;\n}\n\n//select box form wrapper\n#llms-form-wrapper {\n\t.llms-select {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\n\t}.llms-checkbox {\n\t\tdisplay: inline-block;\n\t\twidth: 100%;\n\t\ttext-align: left;\n\n\t}.llms-filter-options {\n\t\twidth: 100%;\n\t\t//margin-bottom: 20px;\n\n\t}.llms-date-select {\n\t\twidth: 100%;\n\t\tdisplay: inline-block;\n\t\tmargin-bottom: 20px;\n\t\tinput[type=\"text\"] {\n\t\t\twidth: 100%;\n\t\t}\n\n\t}.llms-search-button {\n\t\t//display: inline-block;\n\t\t//width: 30%;\n\t\t#llms-search-button {\n\n\t\t//float: right;\n\t}\n\n\t}\n\n}\n\n// .llms-widget-full {\n// \t&.top {\n// \t\tmargin-top: 20px;\n// \t}\n// }\n// .llms-widget {\n// \t.form-table td {\n// \t\tpadding: 15px 0;\n// \t\tul { margin: 5px 0 0; }\n\n\n// \t\t.conditional-field {\n// \t\t\tdisplay: none;\n// \t\t\tmargin-left: 25px;\n// \t\t}\n// \t\t.conditional-radio:checked ~ .conditional-field {\n// \t\t\tdisplay: block;\n// \t\t}\n\n\n// \t}\n// }\n\nul.tabs li{\n display: block;\n }\n\n","//\n// Main Admin CSS File\n//\n\n@import \"_includes/vars\";\n@import \"_includes/vars-brand-colors\";\n\n@import \"_includes/extends\";\n@import \"_includes/buttons\";\n@import \"_includes/mixins\";\n\n@import \"_includes/tooltip\";\n\n// wp menu item\n@import \"admin/_wp-menu\";\n\n// grid layout for breakpoints\n@import \"admin/partials/grid\";\n\n// forms\n@import \"admin/modules/forms\";\n\n// voucher\n@import \"admin/modules/voucher\";\n\n// widgets\n@import \"admin/modules/widgets\";\n\n// icons\n@import \"admin/modules/icons\";\n\n// icons\n@import \"admin/modules/mb-tabs\";\n\n// icons\n@import \"admin/modules/top-modal\";\n\n@import \"admin/modules/merge-codes\";\n\n// Base (mobile)\n@import \"admin/breakpoints/base\";\n\n// Larger mobile devices\n@media only screen and (min-width: 481px) {\n\t@import \"admin/breakpoints/481up\";\n}\n\n// Tablets and smaller laptops\n@media only screen and (min-width: 768px) {\n\t@import \"admin/breakpoints/768up\";\n}\n\n// Desktops\n@media only screen and (min-width: 1030px) {\n\t@import \"admin/breakpoints/1030up\";\n}\n\n// Larger Monitors and TVs\n@media only screen and (min-width: 1240px) {\n\t@import \"admin/breakpoints/1240up\";\n}\n\n@import \"admin/main\";\n\n@import \"admin/llms-table\";\n@import \"admin/modules/llms-order-note\";\n\n// metabox related\n@import \"admin/metaboxes/llms-metabox\";\n@import \"admin/metaboxes/metabox-instructors\";\n@import \"admin/metaboxes/metabox-orders\";\n@import \"admin/metaboxes/metabox-engagements-type\";\n@import \"admin/metaboxes/metabox-product\";\n@import \"admin/metaboxes/metabox-students\";\n@import \"admin/metaboxes/metabox-field-repeater\";\n@import \"admin/metaboxes/builder-launcher\";\n\n@import \"admin/post-tables/llms_orders\";\n@import \"admin/post-tables/post-tables\";\n\n@import \"admin/tabs\";\n@import \"admin/fonts\";\n@import \"admin/reporting\";\n\n@import \"admin/settings\";\n\n@import \"admin/dashboard\";\n@import \"admin/dashboard-widget\";\n\n@import \"admin/quiz-attempt-review\";\n\n@import \"_includes/llms-form-field\";\n@import \"_includes/vendor/_font-awesome\";\n","/******************************************************************\n\nLarger Phones\n\n******************************************************************/\n\n//select box form wrapper\n#llms-form-wrapper {\n\t\n\t.llms-checkbox {\n\t\twidth: 33%;\n\t\t//text-align: center;\n\t\t\t\n\t}\n}\n","/******************************************************************\n\nTablets and small computers\n\n******************************************************************/\n\nul.tabs li{\n display: inline-block;\n }\n\n//option page tab menu\n.llms-nav-tab {\n\tdisplay: inline-block;\n\twidth: 33%;\n}\n.llms-nav-tab-settings {\n\tdisplay: inline-block;\n\twidth: 25%;\n}\n\n//select box form wrapper\n#llms-form-wrapper {\n\t.llms-select {\n\t\twidth: 50%;\n\t\tmax-width: 500px;\n\n\t}.llms-filter-options {\n\t\twidth: 50%;\n\t\t//display: inline-block;\n\t\tmax-width: 500px;\n\n\t}.llms-date-select {\n\t\twidth: 47.5%;\n\n\t\t&:first-child {\n\t\t\tmargin-right: 5%\n\t\t}\n\n\t}\n}\n\n.llms-widget {\n\tinput[type=\"text\"],\n\tinput[type=\"password\"],\n\tinput[type=\"datetime\"],\n\tinput[type=\"datetime-local\"],\n\tinput[type=\"date\"],\n\tinput[type=\"month\"],\n\tinput[type=\"time\"],\n\tinput[type=\"week\"],\n\tinput[type=\"number\"],\n\tinput[type=\"email\"],\n\tinput[type=\"url\"],\n\tinput[type=\"search\"],\n\tinput[type=\"tel\"],\n\tinput[type=\"color\"],\n\tselect,\n\ttextarea, {\n\t\twidth: 50%;\n\n\t\t&.medium { width: 30%; }\n\t\t&.small { width: 20%; }\n\t\t&.tiny { width: 10%; }\n\t}\n\n\t// .form-table th {\n\t// \twidth: 140px;\n\t// }\n\n}\n\n\n\n","/******************************************************************\n\nDesktop Stylesheet\n\n******************************************************************/\n\n//option page tab menu\n.llms-nav-tab {\n\tdisplay: inline-block;\n\twidth: 33.333%;\n}\n.llms-nav-tab-settings {\n\tdisplay: inline-block;\n\twidth: 25%;\n}\n\n//select box form wrapper\n#llms-form-wrapper {\n\t.llms-select {\n\t\tdisplay: inline-block;\n\t\twidth: 47.5%;\n\t\t&:first-child {\n\t\t\tmargin-right: 5%;\n\t\t}\n\n\t}.llms-filter-options {\n\t\tdisplay: inline-block;\n\t\twidth: 47.5%;\n\n\t\t&.date-filter {\n\t\t\tmargin-right: 5%;\n\t\t}.llms-date-select {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}.llms-date-select {\n\t\twidth: 47.5%;\n\n\t\t&:first-child {\n\t\t\tmargin-right: 5%\n\t\t}\n\n\t}\n}\n\n.llms-widget-row {\n\t@include clearfix;\n\t.llms-widget-1-5 {\n\t\tvertical-align: top;\n\t\twidth: 20%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t}\n\t.llms-widget-1-4 {\n\t\tvertical-align: top;\n\t\twidth: 25%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t}\n\t.llms-widget-1-3 {\n\t\twidth: 33.3%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t}\n\t.llms-widget-1-2 {\n\t\twidth: 50%;\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\tpadding: 0 5px;\n\t\tvertical-align: top;\n\t}\n\n}\n","/******************************************************************\n\nlarge Monitor Stylesheet\n\n******************************************************************/\n\n.llms-nav-tab-filters,\n.llms-nav-tab-settings {\n\tfloat: left;\n\twidth: 12.5%;\n}\n",".wrap.lifterlms {\n\tmargin-top: 0;\n}\n\n.llms-header {\n\tbackground-color: #FFF;\n\tmargin: 0 0 0 -20px;\n\tpadding: 20px 10px;\n\tposition: relative;\n\tz-index: 1;\n\n\t.llms-inside-wrap {\n\t\tdisplay: flex;\n\t\tpadding: 0 10px;\n\t}\n\n\n\t.lifterlms-logo {\n\t\tflex: 0 0 190px;\n\t\tmax-height: 52px;\n\t\tmargin-right: 10px;\n\t}\n\n\t.llms-meta {\n\t\talign-self: center;\n\t\tdisplay: flex;\n\t\tflex: 1;\n\t\tfont-size: 16px;\n\t\tjustify-content: space-between;\n\t\tline-height: 1.5;\n\n\t\t.llms-version {\n\t\t\tbackground-color: #1d2327;\n\t\t\tcolor: #FFF;\n\t\t\tborder-radius: 999px;\n\t\t\tfont-size: 13px;\n\t\t\tfont-weight: 700;\n\t\t\tpadding: 6px 12px;\n\t\t}\n\n\t\ta {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t\t.llms-license {\n\t\t\tborder-right: 1px solid #CCC;\n\t\t\tfont-weight: 700;\n\t\t\tmargin-right: 12px;\n\t\t\tpadding-right: 12px;\n\n\t\t\ta {\n\t\t\t\ttext-decoration: none;\n\n\t\t\t\t&:before {\n\t\t\t\t\tcontent: \"\\f534\";\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tfont: 400 16px/1 dashicons;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tpadding-right: 3px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\tvertical-align: text-bottom;\n\t\t\t\t}\n\n\t\t\t\t&.llms-license-none {\n\t\t\t\t\tcolor: #888;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: \"\\f335\";\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&.llms-license-active {\n\t\t\t\t\tcolor: #008a20;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: \"\\f112\";\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t\t.llms-support {\n\t\t\tfont-weight: 700;\n\n\t\t\ta {\n\t\t\t\tcolor: #1d2327;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n.llms-subheader {\n\talign-items: center;\n\tbackground-color: #FFF;\n\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );\n\tdisplay: flex;\n\tflex-direction: row;\n\tmargin-left: -20px;\n\tpadding: 10px 20px;\n\twidth: 100%;\n\tz-index: 1;\n\n\th1 {\n\t\tfont-weight: 700;\n\t\tpadding: 0;\n\n\t\ta {\n\t\t\tcolor: inherit;\n\t\t\ttext-decoration: none;\n\t\t}\n\t}\n\n}\n\n#post_course_difficulty {\n\tmin-width: 200px;\n}\n#_video-embed, #_audio-embed {\n\twidth: 100%;\n}\n\n.clear {\n\tclear: both;\n\twidth: 100%;\n}\n\nhr {\n\tbackground-color: #CCC;\n\tborder: none;\n\theight: 1px;\n\tmargin: 30px 0;\n\tpadding: 0;\n}\n\n.llms_certificate_default_image, .llms_certificate_image {\n\twidth: 300px;\n}\n\n.llms_achievement_default_image, .llms_achievement_image {\n\twidth: 120px;\n}\n\ndiv[id^=\"lifterlms-\"] .inside {\n\toverflow: visible;\n}\n\n.notice.llms-admin-notice {\n\tbackground-color: #FFF;\n\tborder: 1px solid #ccd0d4;\n\tbox-shadow: 0 1px 4px rgba( 0, 0, 0, 0.15 );\n\tdisplay: flex;\n\tpadding: 0 !important;\n\tposition: relative;\n\n\t.notice-dismiss {\n\t\ttext-decoration: none;\n\t}\n\n\t&.notice-warning {\n\t\tborder-left: 4px solid #F8954F;\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #FEF4ED;\n\t\t}\n\t}\n\n\t&.notice-info {\n\t\tborder-left: 4px solid #466DD8;\n\n\t\th3 {\n\t\t\tcolor: #466DD8;\n\t\t}\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #EDF0FB;\n\t\t}\n\n\t}\n\n\t&.notice-success {\n\t\tborder-left: 4px solid #18A957;\n\n\t\th3 {\n\t\t\tcolor: #18A957;\n\t\t}\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #E8F6EE;\n\t\t}\n\n\t}\n\n\t&.notice-error {\n\t\tborder-left: 4px solid #DF1642;\n\n\t\th3 {\n\t\t\tcolor: #9C0F2E;\n\t\t}\n\n\t\t.llms-admin-notice-icon {\n\t\t\tbackground-color: #FCE8EC;\n\t\t}\n\n\t}\n\n\t.llms-admin-notice-icon {\n\t\tbackground-image: url(../../assets/images/lifterlms-icon-color.png);\n\t\tbackground-position: center center;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: 30px;\n\t\tmin-width: 70px;\n\n\t}\n\n\t.llms-admin-notice-content {\n\t\tcolor: #111;\n\t\tpadding: 20px;\n\t}\n\n\th3 {\n\t\tfont-size: 18px;\n\t\tfont-weight: 700;\n\t\tline-height: 25px;\n\t\tmargin: 0 0 15px 0;\n\t}\n\n\tbutton,\n\t.llms-button-primary {\n\t\tdisplay: inline-block;\n\t}\n\n\tp {\n\t\tfont-size: 14px;\n\t\tline-height: 22px;\n\t\tmargin: 0 0 15px 0;\n\t\tmax-width: 65em;\n\t\tpadding: 0;\n\t}\n\n\tp:last-of-type {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n\t&.small .dashicons {\n\t\tfont-size: 13px;\n\t\theight: 13px;\n\t\twidth: 13px;\n\t}\n\n\t&:hover {\n\t\tbox-shadow: none;\n\t}\n}\n\na.llms-view-as {\n\tline-height: 2;\n\tmargin-right: 8px;\n}\n\n.llms-image-field-preview {\n\tmax-height: 80px;\n\tvertical-align: middle;\n\twidth: auto;\n}\n\n.llms-image-field-remove {\n\t&.hidden { display: none; }\n}\n\n.llms-log-viewer {\n\tbackground: #fff;\n\tborder: 1px solid #e5e5e5;\n\tbox-shadow: 0 1px 1px rgba(0,0,0,.04);\n\tmargin: 20px 0;\n\tpadding: 25px;\n\n\tpre {\n\t\tfont-family: monospace;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\twhite-space: pre-wrap;\n\t}\n}\n\n.llms-status--tools {\n\t.llms-table {\n\t\tbackground: #fff;\n\t\tborder: 1px solid #e5e5e5;\n\t\tbox-shadow: 0 1px 1px rgba(0,0,0,.04);\n\t\ttd, th {\n\t\t\tpadding: 10px;\n\t\t\tvertical-align: top;\n\t\t}\n\t\tth {\n\t\t\twidth: 28%;\n\t\t}\n\t\tp {\n\t\t\tmargin: 0 0 10px;\n\t\t}\n\t}\n}\n\n.llms-error {\n\tcolor: $color-red;\n\tfont-style: italic;\n}\n\n.llms-rating-stars {\n\tcolor: #ffb900;\n\ttext-decoration: none;\n}\n\n@media screen and (max-width: 782px) {\n\t.llms-header {\n\t\ttop: 46px;\n\n\t\t.llms-inside-wrap {\n\t\t\tflex-direction: column;\n\t\t\tgap: 20px;\n\n\t\t\t.lifterlms-logo {\n\t\t\t\talign-self: center;\n\t\t\t\tflex: inherit;\n\t\t\t\tmax-height: initial;\n\t\t\t\tmax-width: 200px;\n\t\t\t}\n\n\t\t\t.llms-meta {\n\t\t\t\tcolumn-gap: 10px;\n\t\t\t}\n\t\t}\n\t}\n}\n",".llms-table-wrap {\n\tposition: relative;\n}\n\n.llms-table-header {\n\tpadding: 0;\n\n\t@include clearfix();\n\n\th2 {\n\t\tfont-size: 20px;\n\t\tpadding: 0;\n\t\tdisplay: inline-block;\n\t\tline-height: 1.5;\n\t\tmargin: 0 0 20px 0;\n\t\tvertical-align: middle;\n\t}\n\n\t.llms-table-search,\n\t.llms-table-filters {\n\t\tfloat: right;\n\t\tpadding-left: 10px;\n\t}\n\n\t.llms-table-search input {\n\t\tmargin: 0;\n\t\tpadding: 0 8px;\n\t}\n\n}\n\n.llms-table {\n\n\tborder: 1px solid #c3c4c7;\n\tborder-collapse: collapse;\n\twidth: 100%;\n\n\ta:not(.small) {\n\t\tcolor: $color-brand-blue;\n\t\t&:hover {\n\t\t\tcolor: $color-brand-blue-dark;\n\t\t}\n\t}\n\n\ttd, th {\n\t\tborder-bottom: 1px solid #c3c4c7;\n\t\tpadding: 10px 12px;\n\t\ttext-align: center;\n\n\t\t&.expandable.closed {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.llms-button-primary,\n\t\t.llms-button-secondary,\n\t\t.llms-button-action,\n\t\t.llms-button-danger {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n\ttr.llms-quiz-pending {\n\t\ttd {\n\t\t\tfont-weight: 700;\n\t\t}\n\t}\n\n\tthead th,\n\ttfoot th {\n\t\tbackground-color: #FFF;\n\t\tfont-weight: 700;\n\n\t\ta.llms-sortable {\n\t\t\t// display: block;\n\t\t\tpadding-right: 16px;\n\t\t\tposition: relative;\n\t\t\ttext-decoration: none;\n\t\t\twidth: 100%;\n\t\t\t&.active {\n\t\t\t\t// show the current sorted when a sort is active\n\t\t\t\t&[data-order=\"DESC\"] .asc { opacity: 1; }\n\t\t\t\t&[data-order=\"ASC\"] .desc { opacity: 1; }\n\t\t\t}\n\t\t\t// show the opposite on hover\n\t\t\t&:hover {\n\t\t\t\t&[data-order=\"DESC\"] {\n\t\t\t\t\t.asc { opacity: 0; }\n\t\t\t\t\t.desc { opacity: 1; }\n\t\t\t\t}\n\t\t\t\t&[data-order=\"ASC\"] {\n\t\t\t\t\t.asc { opacity: 1; }\n\t\t\t\t\t.desc { opacity: 0; }\n\t\t\t\t}\n\t\t\t}\n\t\t\t.dashicons {\n\t\t\t\tcolor: #444;\n\t\t\t\tfont-size: 16px;\n\t\t\t\theight: 16px;\n\t\t\t\topacity: 0;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 16px;\n\t\t\t}\n\t\t}\n\t}\n\n\ttfoot th {\n\t\tborder-bottom: none;\n\n\t\t.llms-table-export {\n\t\t\tfloat: left;\n\t\t\t.llms-table-progress {\n\t\t\t\tbackground: #efefef;\n\t\t\t\tdisplay: none;\n\t\t\t\tmargin-left: 8px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 100px;\n\t\t\t}\n\t\t}\n\n\t\t.llms-table-pagination {\n\t\t\tfloat: right;\n\t\t}\n\n\t}\n\n\t&.zebra tbody tr:nth-child( even ) {\n\t\tth, td { background-color: #fff; }\n\t}\n\n\t&.zebra tbody tr:nth-child( odd ) {\n\t\tth, td { background-color: #f6f7f7; }\n\t}\n\n\t&.text-left {\n\t\ttd, th {\n\t\t\ttext-align: left;\n\t\t}\n\t}\n\n\t&.size-large {\n\t\ttd, th {\n\t\t\tfont-size: 14px;\n\t\t\tpadding: 10px 12px;\n\t\t}\n\t}\n\n\t.llms-drag-handle {\n\t\tcolor: #777;\n\t\tcursor: pointer;\n\t\t-webkit-transition: color 0.4s ease;\n\t\ttransition: color 0.4s ease;\n\t}\n\n\t.llms-action-icon {\n\t\tcolor: #777;\n\t\ttext-decoration: none;\n\n\t\t.tooltip {\n\t\t\tcursor: pointer;\n\t\t}\n\n\t\t&:hover {\n\t\t\tcolor: $color-blue;\n\t\t}\n\n\t\t&.danger:hover {\n\t\t\tcolor: $color-danger;\n\t\t}\n\t}\n\n\t.llms-table-page-count {\n\t\tfont-size: 12px;\n\t\tpadding: 0 5px;\n\t}\n\n}\n\n// progress bars within the tables\n.llms-table-progress {\n\ttext-align: center;\n\t.llms-table-progress-bar {\n\t\tbackground: #eee;\n\t\tborder-radius: 10px;\n\t\theight: 16px;\n\t\toverflow: hidden;\n\t\tposition: relative;\n\t\t.llms-table-progress-inner {\n\t\t\tbackground: $color-brand-blue;\n\t\t\theight: 100%;\n\t\t\ttransition: width 0.2s ease;\n\t\t}\n\t}\n\t.llms-table-progress-text {\n\t\tcolor: $color-brand-blue;\n\t\tfont-size: 12px;\n\t\tfont-weight: 700;\n\t\tline-height: 16px;\n\t}\n}\n\n\n.llms-table.llms-gateway-table,\n.llms-table.llms-integrations-table {\n\t.status {\n\t\t.fa {\n\t\t\tcolor: $color-brand-blue;\n\t\t\tfont-size: 22px;\n\t\t}\n\t}\n\t.sort {\n\t\tcursor: move;\n\t\ttext-align: center;\n\t\twidth: 10px;\n\t}\n}\n\n.llms-gb-table-notifications {\n\tth, td {\n\t\ttext-align: left;\n\t}\n}\n",".llms-order-note {\n\n\t.llms-order-note-content {\n\t\tbackground: #efefef;\n\t\tmargin-bottom: 10px;\n\t\tpadding: 10px;\n\t\tposition: relative;\n\t\t&:after {\n\t\t\tborder-style: solid;\n\t\t\tborder-color: #efefef transparent;\n\t\t\tborder-width: 10px 10px 0 0;\n\t\t\tbottom: -10px;\n\t\t\tcontent: '';\n\t\t\tdisplay: block;\n\t\t\theight: 0;\n\t\t\tleft: 20px;\n\t\t\tposition: absolute;\n\t\t\twidth: 0;\n\n\t\t}\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1.5;\n\t\t}\n\t}\n\n\t.llms-order-note-meta {\n\t\tcolor: #999;\n\t\tfont-size: 11px;\n\t\tmargin-left: 10px;\n\t}\n\n\n}\n","\n// This is a \"legacy\" rule that may be removable\n.llms-mb-list {\n\n\tlabel {\n\t\tfont-size: 15px;\n\t\tfont-weight: 700;\n\t\tline-height: 1.5;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.description {\n\t\tmargin-bottom: 8px;\n\t}\n\n\t.input-full {\n\t\twidth: 100%;\n\t}\n}\n\n\n#poststuff .llms-metabox {\n\n\t@extend %cf;\n\n\th2, h3, h6 {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\th2 {\n\t\tfont-size: 18px;\n\t\tfont-weight: 700;\n\t}\n\n\th3 {\n\t\tcolor: #777;\n\t\tfont-size: 16px;\n\t}\n\n\th4 {\n\t\tborder-bottom: 1px solid #e5e5e5;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.llms-transaction-test-mode {\n\t\tbackground: #ffffd7;\n\t\tfont-style: italic;\n\t\tleft: 0;\n\t\tpadding: 2px;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 0;\n\t\ttext-align: center;\n\t}\n\n\ta.llms-editable,\n\t.llms-metabox-icon,\n\tbutton.llms-editable {\n\t\tcolor: $color-grey;\n\t\ttext-decoration: none;\n\t\t&:hover {\n\t\t\tcolor: $color-brand-blue;\n\t\t}\n\t}\n\n\tbutton.llms-editable {\n\t\tborder: none;\n\t\tbackground: none;\n\t\tcursor: pointer;\n\t\tpadding: 0;\n\t\tvertical-align: top;\n\t}\n\n\th4 button.llms-editable {\n\t\tfloat: right;\n\t}\n\n\t.llms-table {\n\t\tmargin-top: 10px;\n\n\t}\n}\n\n.llms-metabox-section {\n\tbackground: #fff;\n\tmargin-top: 25px;\n\tposition: relative;\n\n\t&.no-top-margin {\n\t\tmargin-top: 0;\n\t}\n\n\t.llms-metabox-field {\n\t\tmargin: 15px 0;\n\t\tposition: relative;\n\t\tlabel {\n\t\t\tcolor: #777;\n\t\t\tdisplay: block;\n\t\t\tmargin-bottom: 5px;\n\t\t\tfont-weight: 500;\n\t\t\tvertical-align: baseline;\n\t\t}\n\n\t\tselect,\n\t\ttextarea,\n\t\tinput[type=\"text\"],\n\t\tinput[type=\"number\"] {\n\t\t\twidth: 100%;\n\t\t}\n\n\t\tinput.md-text {\n\t\t\twidth: 105px;\n\t\t}\n\n\t\tinput.sm-text {\n\t\t\twidth: 45px;\n\t\t}\n\n\n\t\t.llms-datetime-field {\n\n\t\t\t.llms-date-input {\n\t\t\t\twidth: 95px;\n\t\t\t}\n\t\t\t.llms-time-input {\n\t\t\t\twidth: 45px;\n\t\t\t}\n\t\t\tem {\n\t\t\t\tfont-style: normal;\n\t\t\t\tpadding: 0 3px;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\n}\n\n.llms-collapsible {\n\n\t@extend %clearfix;\n\n\tborder: 1px solid #e5e5e5;\n\tposition: relative;\n\tmargin-top: 0;\n\tmargin-bottom: -1px;\n\n\t&:last-child {\n\t\tmargin-bottom: 0;\n\t}\n\n\t&.opened .llms-collapsible-header {\n\t\t.dashicons-arrow-down {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.dashicons-arrow-up {\n\t\t\tdisplay: inline;\n\t\t}\n\t}\n\n\t.llms-collapsible-header {\n\t\t@extend %clearfix;\n\t\tpadding: 10px;\n\n\t\th3 {\n\t\t\tcolor: #777;\n\t\t\tmargin: 0;\n\t\t\tfont-size: 16px;\n\t\t}\n\n\t\t.dashicons-arrow-up {\n\t\t\tdisplay: inline;\n\t\t}\n\t\t.dashicons-arrow-up {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t.dashicons {\n\t\t\tcolor: #777;\n\t\t\tcursor: pointer;\n\t\t\ttransition: color .4s ease;\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-blue;\n\t\t\t}\n\n\t\t\t&.dashicons-warning,&.dashicons-warning:hover,\n\t\t\t&.dashicons-trash:hover,\n\t\t\t&.dashicons-no:hover {\n\t\t\t\tcolor: $color-danger;\n\t\t\t}\n\t\t\t&.dashicons-warning.medium-danger {\n\t\t\t\t&,\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $color-orange;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t.llms-collapsible-body {\n\t\t@extend %clearfix;\n\t\tdisplay: none;\n\t\tpadding: 10px;\n\t}\n\n}\n","._llms_instructors_data.repeater {\n\t.llms-repeater-rows .llms-repeater-row:first-child {\n\t\t.llms-repeater-remove { display: none; }\n\t}\n\n\t.llms-mb-list {\n\t\tpadding: 0 5px !important;\n\t}\n}\n",".post-type-llms_order #post-body-content { display: none; }\n#lifterlms-order-details {\n\t.handlediv,\n\t.handlediv.button-link,\n\t.postbox-header { display: none;}\n\t.inside {\n\t\tpadding: 20px;\n\t\tmargin-top: 0;\n\n\t}\n}\n\n// failed transaction color\n.llms-table tbody tr.llms-txn-failed td {\n\tbackground-color: rgba( $color-red, 0.5 );\n\tborder-bottom-color: rgba( $color-red, 0.5 );\n}\n\n// refunded transaction color\n.llms-table tbody tr.llms-txn-refunded td {\n\tbackground-color: rgba( orange, 0.5 );\n\tborder-bottom-color: rgba( orange, 0.5 );\n}\n\n.llms-txn-refund-form,\n.llms-manual-txn-form {\n\t.llms-metabox-section {\n\t\tmargin-top: 0;\n\t}\n\t.llms-metabox-field {\n\t\ttext-align: right;\n\t\tinput {\n\t\t\t&[type=\"number\"] { max-width: 100px; }\n\t\t\t&[type=\"text\"] { max-width: 340px; }\n\n\t\t}\n\t}\n}\n\n.llms-manual-txn-form {\n\tbackground-color: #eaeaea;\n\t.llms-metabox-section {\n\t\tbackground-color: #eaeaea;\n\t}\n}\n\n#llms-remaining-edit {\n\tdisplay: none;\n}\n.llms-remaining-edit--content {\n\tlabel, span, textarea {\n\t\tdisplay: block;\n\t}\n\n\tlabel {\n\t\tmargin-bottom: 20px;\n\t}\n\n\ttextarea, input {\n\t\twidth: 100%;\n\t}\n}\n",".submitbox .llms-mb-section,\n.llms-award-engagement-submitbox .llms-mb-list {\n\tmargin-bottom: 12px;\n\t&:last-of-type {\n\t\tmargin-bottom: 0;\n\t}\n\t@at-root .sync-action,\n\t&.student-info,\n\t&.post_author_override label {\n\t\t&:before {\n\t\t\t// dashicons-admin-users.\n\t\t\tfont: normal 20px/1 dashicons;\n\t\t\tspeak: never;\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: -1px;\n\t\t\tpadding-right: 3px;\n\t\t\tvertical-align: top;\n\t\t\t-webkit-font-smoothing: antialiased;\n\t\t\t-moz-osx-font-smoothing: grayscale;\n\t\t\tposition: relative;\n\t\t\ttop: -1px;\n\t\t\tcolor: #8c8f94;\n\t\t\tbody:not(.admin-color-fresh) & {\n\t\t\t\tcolor: currentColor; // Used when selecting a different admin color scheme from the default one.\n\t\t\t}\n\t\t}\n\t}\n\t&.student-info,\n\t&.post_author_override label {\n\t\t&:before {\n\t\t\tcontent: '\\f110';\n\t\t}\n\t}\n\t@at-root .sync-action:before {\n\t\tcontent: '\\f113';\n\t\tcolor: white;\n\t}\n\t&.post_author_override label {\n\t\tdisplay: inline-block;\n\t\twidth: auto;;\n\t}\n}\n",".llms-metabox {\n\n\t#llms-new-access-plan-model {\n\t\tdisplay: none;\n\t}\n\n\t.llms-access-plans {\n\t\t@extend %clearfix;\n\t\tmargin-top: 10px;\n\n\t\t> .llms-no-plans-msg { display: none; }\n\t\t> .llms-no-plans-msg:last-child {\n\t\t\tbox-shadow: inset 0 0 0 1px #e5e5e5;\n\t\t\tdisplay: block;\n\t\t\ttext-align: center;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t&.dragging {\n\t\t\tbackground: #efefef;\n\t\t\tbox-shadow: inset 0 0 0 1px #e5e5e5;\n\t\t}\n\n\t\t.llms-spinning {\n\t\t\tz-index: 1;\n\t\t}\n\n\t\t.llms-invalid {\n\t\t\tborder-color: $color-danger;\n\t\t\t.dashicons-warning {\n\t\t\t\tdisplay: inline;\n\t\t\t}\n\t\t}\n\t\t.llms-needs-attention .dashicons-warning.medium-danger {\n\t\t\tdisplay: inline;\n\t\t}\n\t\t.dashicons-warning {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.llms-access-plan {\n\n\t\ttext-align: left;\n\n\t\t[data-tip]:before {\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t.llms-plan-link,\n\t\t[data-controller] {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&:hover,\n\t\t&.opened {\n\t\t\t.llms-plan-link {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t}\n\n\t\t.llms-metabox-field {\n\t\t\tmargin: 5px 0;\n\t\t}\n\n\t\t.llms-required {\n\t\t\tcolor: $color-danger;\n\t\t\tmargin-left: 3px;\n\t\t}\n\t\t.notice {\n\t\t\tmargin-left: 0;\n\t\t}\n\t}\n\n}\n",".llms-metabox-students {\n\t.llms-table {\n\t\ttr .name {\n\t\t\ttext-align: left;\n\t\t}\n\t}\n\n\t.llms-add-student:hover {\n\t\tcolor: $color-green;\n\t}\n\t.llms-remove-student:hover {\n\t\tcolor: $color-red;\n\t}\n\n}\n",".llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields > li.llms-mb-list {\n\tborder-bottom: none;\n\tpadding: 0 0 10px;\n}\n\n.llms-mb-list.repeater {\n\n\t.llms-repeater-rows {\n\t\tposition: relative;\n\t\tmargin-top: 10px;\n\t\tmin-height: 10px;\n\n\t\t&.dragging {\n\t\t\tbackground: #efefef;\n\t\t\tbox-shadow: inset 0 0 0 1px #e5e5e5;\n\t\t}\n\t}\n\n\t.llms-repeater-row {\n\t\tbackground: #fff;\n\t}\n\n\t.llms-mb-repeater-fields {\n\n\t}\n\n\t.llms-mb-repeater-footer {\n\t\ttext-align: right;\n\t\tmargin-top: 20px;\n\t}\n\n\t.tmce-active .wp-editor-area {\n\t\tcolor: #32373c; // wp core default color\n\t}\n\n}\n",".llms-builder-launcher {\n\n\tp {\n\t\tmargin-top: 0;\n\t}\n\n\tol {\n\t\tmargin-top: -6px;\n\t}\n\n\t.llms-button-primary {\n\t\tbox-sizing: border-box;\n\t}\n\n}\n",".wp-list-table {\n\t@include order_status_badges();\n}\n\n#lifterlms-order-transactions .llms-table tfoot th {\n\ttext-align: right;\n}\n",".llms-post-table-post-filter {\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tmax-width: 100%;\n\twidth: 220px;\n}\n",".llms-nav-tab-wrapper {\n\tbackground: $color-blue;\n\tmargin: 20px 0;\n\n\t&.llms-nav-secondary {\n\t\tbackground: #e1e1e1;\n\n\t\t.llms-nav-item {\n\t\t\tmargin: 0;\n\n\t\t\t.llms-nav-link:hover,\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: darken( #e1e1e1, 8 );\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-nav-link {\n\t\t\tcolor: #414141;\n\t\t\tfont-size: 15px;\n\t\t\tpadding: 8px 14px;\n\n\t\t\t.dashicons {\n\t\t\t\tfont-size: 15px;\n\t\t\t\theight: 15px;\n\t\t\t\twidth: 15px;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t&.llms-nav-text {\n\t\tbackground: inherit;\n\t\t.llms-nav-items {\n\t\t\tpadding-left: 0;\n\t\t}\n\t\t.llms-nav-item {\n\t\t\tbackground: inherit;\n\t\t\tcolor: #646970;\n\t\t\t&:last-child:after {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tcontent: '|';\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin: 0 8px 0 6px;\n\t\t\t}\n\t\t\t.llms-nav-link:hover {\n\t\t\t\tbackground: inherit;\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t}\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: inherit;\n\t\t\t\tcolor: #000;\n\t\t\t\tfont-weight: 600;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\t\t\t.llms-nav-link {\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tletter-spacing: 0;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\ttext-decoration: underline;\n\t\t\t\ttext-transform: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.llms-nav-style-tabs {\n\t\tbackground-color: $color-brand-dark-blue;\n\t\tmargin: 0;\n\t\tpadding-top: 8px;\n\n\t\t.llms-nav-item {\n\t\t\tmargin: 0 3px;\n\n\t\t\t.llms-nav-link {\n\t\t\t\tborder-top-left-radius: 4px;\n\t\t\t\tborder-top-right-radius: 4px;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground-color: #FFF;\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t&.llms-nav-style-filters {\n\t\tbackground-color: $color-brand-blue;\n\t\tborder-radius: 12px;\n\t\tmargin: 20px 0;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\n\t\t.llms-nav-items {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: space-between;\n\t\t\tpadding-left: 0;\n\n\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\tflex-direction: row;\n\t\t\t}\n\n\t\t\t.llms-nav-item {\n\t\t\t\tfloat: none;\n\n\t\t\t\t.llms-nav-link {\n\t\t\t\t\tpadding: 14px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.llms-nav-items {\n\t\t@include clearfix;\n\t\tmargin: 0;\n\t\tpadding-left: 10px;\n\t}\n\n\t\t.llms-nav-item {\n\t\t\tmargin: 0;\n\n\t\t\t.llms-nav-link:hover {\n\t\t\t\tbackground: $color-brand-blue;\n\t\t\t}\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: $color-brand-dark-blue;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tfont-weight: 400;\n\t\t\t}\n\n\t\t\t@media only screen and (min-width: 768px) {\n\t\t\t\tfloat: left;\n\n\t\t\t\t&.llms-nav-item-right {\n\t\t\t\t\tfloat: right;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t\t.llms-nav-link {\n\n\t\t\t\tcolor: #fff;\n\t\t\t\tcursor: pointer;\n\t\t\t\tdisplay: block;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 15px;\n\t\t\t\tpadding: 9px 18px;\n\t\t\t\ttext-align: center;\n\t\t\t\ttext-decoration: none;\n\t\t\t\ttransition: all .3s ease;\n\n\t\t\t}\n}\n","#llms-options-page-contents {\n\th2 {\n\t\tcolor: #999;\n\t\tfont-weight: 500;\n\t\tletter-spacing: 2px;\n\t\tborder-bottom: 1px solid #999;\n\t}\n}\n",".llms-reporting.wrap {\n\n\t.llms-options-page-contents {\n\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t}\n\t}\n\n\t.llms-stab-title {\n\t\tcolor: $color-brand-dark-blue;\n\t\tfont-size: 36px;\n\t\tfont-weight: 300;\n\t\tmargin-bottom: 20px;\n\t}\n\n\ttd.id a {\n\t\ttext-decoration: none;\n\t}\n\n\tth.id, td.id,\n\tth.name, td.name,\n\tth.registered, td.registered,\n\tth.last_seen, td.last_seen,\n\tth.overall_progress, td.overall_progress,\n\tth.title, td.title,\n\tth.course, td.course,\n\tth.lesson, td.lesson { text-align: left; }\n\n\ttd.section-title {\n\t\tbackground: #eaeaea;\n\t\ttext-align: left;\n\t\tfont-weight: 700;\n\t\tpadding: 16px 4px;\n\t}\n\n\ttd.questions-table {\n\t\ttext-align: left;\n\n\t\t.correct,\n\t\t.question,\n\t\t.selected {\n\t\t\ttext-align: left;\n\t\t\tmax-width: 300px;\n\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tmax-width: 64px;\n\t\t\t}\n\t\t}\n\t}\n\n\ttable.quiz-attempts {\n\t\tmargin-bottom: 40px;\n\t}\n\n\t&.tab--students {\n\t\t.llms-options-page-contents {\n\n\t\t\t#llms-award-certificate-wrapper .components-button.is-secondary {\n\t\t\t\tbackground: #e1e1e1;\n\t\t\t\tborder-radius: 8px;\n\t\t\t\tbox-shadow: none;\n\t\t\t\tcolor: #414141;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tfont-weight: 700;\n\t\t\t\theight: auto;\n\t\t\t\tpadding: 8px 14px;\n\t\t\t}\n\n\t\t}\n\t}\n\n\t&.tab--enrollments,\n\t&.tab--sales {\n\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t.llms-options-page-contents {\n\t\t\tbox-shadow: none;\n\t\t\tbackground: none;\n\t\t\tmargin-top: 20px;\n\t\t\tpadding: 0;\n\t\t}\n\n\t\t.llms-nav-style-filters {\n\n\t\t\t.llms-analytics-form {\n\t\t\t\talign-items: center;\n\t\t\t\talign-self: center;\n\t\t\t\tcolor: #FFF;\n\t\t\t\tdisplay: flex;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tgap: 5px;\n\n\t\t\t\tlabel {\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t}\n\n\t\t\t\tinput {\n\t\t\t\t\tborder: 0;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 0 4px;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t\twidth: 110px;\n\t\t\t\t}\n\n\t\t\t\t.select2-container {\n\t\t\t\t\tinput {\n\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.button.small {\n\t\t\theight: 23px;\n\t\t\tline-height: 23px;\n\t\t}\n\n\t\t.llms-analytics-filters {\n\t\t\tdisplay: none;\n\n\t\t\t.llms-inside-wrap {\n\t\t\t\tbackground-color: #FFF;\n\t\t\t\tbackground-color: #FFF;\n\t\t\t\tbox-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n\t\t\t\tmargin: -20px 10px 20px 10px;\n\t\t\t\tpadding: 20px;\n\t\t\t}\n\n\t\t\t.llms-nav-items {\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\tgap: 20px;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tmargin: 0;\n\n\t\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\t\tflex-direction: row;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t.llms-nav-item {\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\twidth: 100%;\n\n\t\t\t\tlabel {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t\tmargin: 0 0 5px 0;\n\t\t\t\t}\n\n\t\t\t\t.select2-selection__rendered{\n\t\t\t\t\tword-wrap: break-word;\n\t\t\t\t\ttext-overflow: inherit;\n\t\t\t\t\twhite-space: normal;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tmargin: 0;\n\t\t\t\ttext-align: right;\n\n\t\t\t\t.llms-button-primary {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\t}\n\n\t.llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap {\n\t\twidth: 160px;\n\t}\n\n\n}\n\n.llms-charts-wrapper {\n\tbackground-color: #FFF;\n\tborder: 1px solid #dedede;\n\tborder-radius: 12px;\n\tbox-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n\tpadding: 20px;\n}\n\n.llms-reporting-tab {\n\n\th1, h2, h3, h4, h5, h6 {\n\t\tmargin: 0;\n\t\ta {\n\t\t\tcolor: $color-brand-blue;\n\t\t\ttext-decoration: none;\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t}\n\t\t}\n\t}\n\n\th2 {\n\t\tfont-size: 22px;\n\t\tline-height: 1.5;\n\n\t\t&.llms-table-title {\n\t\t\tmargin-bottom: 20px;\n\t\t}\n\n\t}\n\n\th5 {\n\t\tfont-size: 15px;\n\t\tline-height: 1.5;\n\t}\n\n\t.llms-reporting-body {\n\t\tbackground-color: #FFF;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, .13 );\n\t\tmargin: 20px auto;\n\t\tpadding: 0;\n\n\t\t.llms-reporting-stab {\n\t\t\tpadding: 30px;\n\n\t\t\t.llms-table-header {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t}\n\n\t\t.llms-gb-tab {\n\t\t\tpadding: 30px;\n\t\t}\n\n\t\t.llms-reporting-header {\n\t\t\tpadding: 30px;\n\t\t\tmargin: 0;\n\n\t\t\t.llms-reporting-header-img {\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-right: 10px;\n\t\t\t\toverflow: hidden;\n\t\t\t\tvertical-align: middle;\n\t\t\t\timg {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tmax-height: 64px;\n\t\t\t\t\twidth: auto;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-reporting-header-info {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tvertical-align: middle;\n\n\t\t\t}\n\n\t\t}\n\t}\n\n}\n\n.llms-reporting-breadcrumbs {\n\tmargin: 0;\n\tpadding: 0;\n\ta {\n\t\tcolor: $color-brand-blue;\n\t\tfont-size: 15px;\n\t\ttext-decoration: none;\n\t\t&:hover {\n\t\t\tcolor: $color-brand-blue-dark;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: ' > ';\n\t\t\tcolor: #646970;\n\t\t}\n\n\t\t&:last-child {\n\t\t\tcolor: #000;\n\t\t\tfont-weight: 700;\n\t\t\t&:after { display: none; }\n\t\t}\n\t}\n}\n\n#llms-students-table .name {\n\ttext-align: left;\n}\n\n.llms-reporting-tab-content {\n\tdisplay: flex;\n\n\t> header {\n\t\t@include clearfix;\n\t}\n\n\th3 {\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.llms-reporting-tab-filter {\n\t\tfloat: right;\n\t\tposition: relative;\n\t\tmargin-right: 0.75em;\n\t\twidth: 180px;\n\t\ttop: -3px;\n\t}\n\n\n\t.llms-reporting-tab-main {\n\t\tflex: 3;\n\t\tmax-width: 75%;\n\t}\n\t.llms-reporting-tab-side {\n\t\tflex: 1;\n\t\tmargin-left: 20px;\n\t}\n\n\t> .llms-table-wrap {\n\t\tflex: 1;\n\t}\n\n}\n\n\n.llms-reporting-widgets {\n\t@include clearfix;\n}\n\n.llms-reporting-widget {\n\n\tborder-top: 4px solid $color-brand-blue;\n\tbackground: #fafafa;\n\tmargin-bottom: 10px;\n\tpadding: 30px;\n\t@include clearfix;\n\n\t.fa {\n\t\tcolor: #999;\n\t\tfloat: left;\n\t\tfont-size: 32px;\n\t\tmargin-right: 10px;\n\t}\n\n\tstrong {\n\t\tcolor: #333;\n\t\tfont-size: 20px;\n\t\tline-height: 1.2;\n\t}\n\n\t&.llms-reporting-student-address {\n\t\tstrong {\n\t\t\tline-height: 1.1;\n\t\t}\n\t}\n\n\tsup,\n\t.llms-price-currency-symbol {\n\t\tfont-size: 75%;\n\t\tposition: relative;\n\t\ttop: -4px;\n\t\tvertical-align: baseline;\n\t}\n\n\tsmall {\n\t\tfont-size: 13px;\n\t\t&.compare {\n\t\t\tmargin-left: 5px;\n\t\t\t&.positive {\n\t\t\t\tcolor: $color-green;\n\t\t\t}\n\t\t\t&.negative {\n\t\t\t\tcolor: $color-red;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n.llms-reporting-event {\n\tborder-left: 4px solid #555;\n\tbackground: #fafafa;\n\tfont-size: 11px;\n\tline-height: 1.2;\n\tmargin-bottom: 0.75em;\n\tpadding: 10px;\n\t@include clearfix;\n\n\t&.color--blue {\n\t\tborder-left-color: $color-blue;\n\t}\n\n\t&.color--green,\n\t&._enrollment_trigger,\n\t&._is_complete.yes {\n\t\tborder-left-color: $color-green;\n\t}\n\n\t&.color--purple,\n\t&._status.enrolled {\n\t\tborder-left-color: $color-purple;\n\t}\n\n\t&.color--red,\n\t&._status.expired,\n\t&._status.cancelled {\n\t\tborder-left-color: $color-red;\n\t}\n\t&.color--orange,\n\t&._achievement_earned,\n\t&._certificate_earned,\n\t&._email_sent {\n\t\tborder-left-color: $color-orange;\n\t}\n\n\ttime {\n\t\tcolor: #888;\n\t}\n\n\t.llms-student-avatar {\n\t\tmargin-left: 10px;\n\t\tfloat: right;\n\t}\n\n\ta {\n\t\ttext-decoration: none;\n\t\tcolor: inherit;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\t.llms-reporting.wrap {\n\t\t.llms-options-page-contents {\n\t\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\n@import \"../_includes/quiz-result-question-list\";\n",".llms-quiz-attempt-results {\n\tmargin: 0;\n\tpadding: 0;\n\tlist-style-type: none;\n\n\t.llms-quiz-attempt-question {\n\t\tbackground: #efefef;\n\t\tmargin: 0 0 10px;\n\t\tposition: relative;\n\t\tlist-style-type: none;\n\t\t.toggle-answer {\n\t\t\t@include clearfix();\n\t\t\tcolor: inherit;\n\t\t\tdisplay: block;\n\t\t\tpadding: 10px 35px 10px 10px;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t&.status--waiting.correct,\n\t\t&.status--waiting.incorrect {\n\t\t\tbackground: rgba( $color-orange, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-orange;\n\t\t\t}\n\t\t}\n\n\t\t&.status--graded.correct {\n\t\t\tbackground: rgba( $color-green, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-green;\n\t\t\t}\n\t\t}\n\t\t&.status--graded.incorrect {\n\t\t\tbackground: rgba( $color-red, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-red;\n\t\t\t}\n\t\t}\n\t\tpre {\n\t\t\toverflow: auto;\n\t\t}\n\t\t.llms-question-title {\n\t\t\tfloat: left;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-points {\n\t\t\tfloat: right;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-status-icon-tip {\n\t\t\tposition: absolute;\n\t\t\tright: -12px;\n\t\t\ttop: -2px;\n\t\t}\n\n\t\t.llms-status-icon {\n\t\t\tcolor: rgba( 255, 255, 255, 0.65 );\n\t\t\tborder-radius: 50%;\n\t\t\tfont-size: 30px;\n\t\t\theight: 40px;\n\t\t\tline-height: 40px;\n\t\t\ttext-align: center;\n\t\t\twidth: 40px;\n\t\t}\n\n\t\t.llms-quiz-attempt-question-main {\n\t\t\tdisplay: none;\n\t\t\tpadding: 0 10px 10px;\n\n\t\t\t.llms-quiz-results-label {\n\t\t\t\tfont-weight: 700;\n\t\t\t\tmargin-bottom: 10px;\n\t\t\t}\n\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tmargin: 0 0 0 30px;\n\t\t\t\t\t&:only-child {\n\t\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tmax-width: 200px;\n\t\t\t}\n\n\t\t\t.llms-quiz-attempt-answer-section {\n\t\t\t\tborder-top: 2px solid rgba( #fff, 0.5 );\n\t\t\t\tmargin-top: 20px;\n\t\t\t\tpadding-top: 20px;\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-top: none;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tpadding-top: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t&.type--picture_choice,\n\t\t&.type--picture_reorder {\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tlist-style-type: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 5px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type--removed {\n\t\t\t.llms-question-title {\n\t\t\t\tfont-style: italic;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t\topacity: .5;\n\t\t}\n\n\t}\n}\n",".wrap.llms-reporting,\n.wrap.lifterlms-settings,\n.wrap.llms-status {\n\n\t.llms-inside-wrap {\n\t\tbox-sizing: border-box;\n\t\tmargin: 0 auto;\n\n\t\t.llms-nav-text {\n\t\t\tmargin: 0 auto;\n\t\t}\n\t}\n\n\t.llms-subheader {\n\n\t\t.llms-save {\n\t\t\tflex: auto;\n\t\t\ttext-align: right;\n\t\t}\n\n\t}\n\n\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\tbackground-color: #FFF;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );\n\t\tmargin: 0 -20px 20px -10px;\n\n\t\t.llms-nav-items {\n\t\t\tpadding-left: 0;\n\t\t}\n\n\t\t.llms-nav-item {\n\t\t\t.llms-nav-link:hover {\n\t\t\t\tbackground: #f0f0f1;\n\t\t\t\tcolor: #222222;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tbackground: #fafafa;\n\t\t\t\tcolor: $color-blue;\n\t\t\t\tborder-top-color: $color-blue;\n\t\t\t}\n\n\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\n\t\t.llms-nav-link {\n\t\t\tborder-top: 2px solid transparent;\n\t\t\tpadding: 14px;\n\t\t}\n\n\t}\n\n\t.llms-setting-group {\n\t\tbackground-color: #FFF;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, .13 );\n\t\tmargin: 20px auto;\n\t\tpadding: 20px;\n\n\t\t.llms-label {\n\t\t\tborder-bottom: 1px solid #efefef;\n\t\t\tfont-weight: 700;\n\t\t\tfont-size: 20px;\n\t\t\tpadding: 20px;\n\t\t\tmargin: -20px -20px 20px;\n\n\t\t\t.llms-button-primary {\n\t\t\t\tmargin-left: 10px;\n\t\t\t}\n\t\t}\n\n\t\t.llms-help-tooltip .dashicons {\n\t\t\tcolor: #444;\n\t\t\tcursor: help;\n\t\t}\n\n\t\t.form-table {\n\t\t\tmargin: 0;\n\t\t\ttr:first-child .llms-subtitle {\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\n\t\ttd[colspan=\"2\"] {\n\t\t\tpadding-top: 0;\n\t\t\tpadding-left: 0;\n\t\t}\n\n\t\ttr.llms-disabled-field {\n\t\t\topacity: 0.5;\n\t\t\tpointer-events: none;\n\t\t}\n\n\t\tp {\n\t\t\tfont-size: 14px;\n\t\t}\n\t\tinput[type=\"text\"],\n\t\tinput[type=\"password\"],\n\t\tinput[type=\"datetime\"],\n\t\tinput[type=\"datetime-local\"],\n\t\tinput[type=\"date\"],\n\t\tinput[type=\"month\"],\n\t\tinput[type=\"time\"],\n\t\tinput[type=\"week\"],\n\t\tinput[type=\"number\"],\n\t\tinput[type=\"email\"],\n\t\tinput[type=\"url\"],\n\t\tinput[type=\"search\"],\n\t\tinput[type=\"tel\"],\n\t\tinput[type=\"color\"],\n\t\tselect,\n\t\ttextarea:not(.wp-editor-area) {\n\t\t\twidth: 50%;\n\t\t\t&.medium { width: 30%; }\n\t\t\t&.small { width: 20%; }\n\t\t\t&.tiny { width: 10%; }\n\t\t}\n\t}\n\n\t@media only screen and (min-width: 782px) {\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\t.llms-nav-item {\n\t\t\t\t&.llms-active .llms-nav-link {\n\t\t\t\t\tbackground: #fff;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Email Delivery providers.\n\t#llms-mailhawk-connect {\n\t\theight: auto;\n\t\tmargin: 0 0 6px;\n\t\tposition: relative;\n\n\t\t.dashicons {\n\t\t\tmargin: -4px 4px 0 0;\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\t#llms-sendwp-connect {\n\t\theight: auto;\n\t\tmargin: 0 0 6px;\n\t\tposition: relative;\n\n\t\t.fa {\n\t\t\tmargin-right: 4px;\n\t\t}\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\t.wrap.lifterlms-settings {\n\t\t.llms-subheader {\n\t\t\theight: 40px;\n\t\t\tposition: sticky;\n\t\t\ttop: 32px;\n\t\t}\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin: 0 -20px 20px -22px;\n\n\t\t\t.llms-nav-items {\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\n\t\t}\n\t}\n\n\t.wrap.llms-reporting {\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin: 0 -20px 20px -22px;\n\n\t\t\t.llms-nav-items {\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\n\t\t}\n\t}\n\t\n\n\t.wrap.llms-status {\n\t\t.llms-nav-tab-wrapper.llms-nav-secondary {\n\t\t\tmargin: 0 -20px 20px -22px;\n\n\t\t\t.llms-nav-items {\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\n\t\t}\n\t}\n}\n",".wrap.llms-dashboard {\n\n\t.llms-inside-wrap {\n\t\tpadding-top: 30px;\n\t}\n\n\t#poststuff {\n\n\t\th2 {\n\t\t\tpadding: 12px 20px;\n\t\t}\n\n\t}\n\n\t.llms-dashboard-activity {\n\n\t\th2 {\n\t\t\tfont-size: 20px;\n\t\t\tfont-weight: 700;\n\t\t\tline-height: 1.5;\n\t\t\tmargin-top: 0;\n\t\t\ttext-align: center;\n\t\t}\n\t}\n\n\t.postbox {\n\t\tbackground-color: #FFF;\n\t\tborder: none;\n\t\tbox-shadow: 0 1px 3px rgba( 0, 0, 0, 0.13 );\n\n\t\t.postbox-header {\n\t\t\tborder-bottom-color: #efefef;\n\n\t\t}\n\n\t\t.inside {\n\t\t\tpadding: 20px;\n\t\t}\n\t}\n\n\t#llms_dashboard_addons {\n\n\t\t.llms-addons-wrap {\n\t\t\tmargin-top: 0;\n\n\t\t\t.llms-add-on-item {\n\t\t\t\tmargin-top: 0;\n\n\t\t\t\tp {\n\t\t\t\t\ttext-align: left;\n\t\t\t\t}\n\n\t\t\t\tfooter.llms-actions {\n\t\t\t\t\tpadding-top: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tp {\n\t\t\ttext-align: center;\n\n\t\t\t.llms-button-primary {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-top: 15px;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t#llms_dashboard_quick_links {\n\n\t\tul {\n\t\t\tlist-style: disc;\n\t\t\tmargin: 5px 0 0 20px;\n\n\t\t\tli {\n\t\t\t\tfont-size: 15px;\n\t\t\t\tline-height: 1.5;\n\t\t\t}\n\t\t}\n\n\t\t.llms-quick-links {\n\t\t\tdisplay: grid;\n\t\t\tgrid-template-columns: 1fr;\n\t\t\tgrid-gap: 30px;\n\n\t\t\ta {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.llms-list {\n\n\t\t\t\th3 {\n\t\t\t\t\tmargin: 0 0 10px 0;\n\t\t\t\t}\n\n\t\t\t\tul {\n\t\t\t\t\tmargin-bottom: 20px;\n\n\t\t\t\t\t&.llms-checklist {\n\t\t\t\t\t\tlist-style: none;\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.fa {\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\twidth: 16px;\n\t\t\t\t}\n\n\t\t\t\t.fa-check {\n\t\t\t\t\tcolor: #008a20;\n\t\t\t\t}\n\n\t\t\t\t.fa-times {\n\t\t\t\t\tcolor: #d63638;\n\t\t\t\t}\n\n\t\t\t\t.llms-button-primary,\n\t\t\t\t.llms-button-secondary,\n\t\t\t\t.llms-button-action {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\tgrid-template-columns: 1fr 1fr 1fr;\n\t\t\t}\n\t\t}\n\n\t\t.llms-help-links {\n\t\t\tdisplay: grid;\n\t\t\tgrid-template-columns: 1fr 1fr;\n\t\t\tgrid-gap: 20px;\n\n\t\t\t.llms-list {\n\n\t\t\t\th3 {\n\t\t\t\t\tmargin: 0;\n\n\t\t\t\t\t.dashicons {\n\t\t\t\t\t\tcolor: #AAA;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\t@media only screen and (min-width: 782px) {\n\t\t\t\tgrid-template-columns: 1fr 1fr 1fr 1fr;\n\t\t\t}\n\n\t\t}\n\n\t}\n\t#llms_dashboard_blog,\n\t#llms_dashboard_podcast {\n\n\t\tul {\n\t\t\tmargin: 0;\n\n\t\t\tli {\n\t\t\t\tmargin: 0 0 15px 0;\n\n\t\t\t\ta {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 15px 0;\n\t\t\ttext-align: center;\n\n\t\t\ta {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t}\n\t}\n\n}\n","#llms_dashboard_widget {\n\n\t.inside {\n\t\tmargin: 0;\n\t\tpadding-bottom: 8px;\n\t}\n\n\t.llms-dashboard-widget-wrap {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\talign-items: center;\n\t\tpadding-top: 12px;\n\t}\n\n\t.activity-block {\n\t\tpadding-bottom: 8px;\n\t\tborder-color: #e8e8e8;\n\t}\n\n\th3 {\n\t\tmargin-bottom: 0;\n\t}\n\n\t.llms-charts-wrapper {\n\t\tdisplay: none;\n\t}\n\n\t.llms-widget-row {\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\tgap: 8px;\n\t\twidth: 100%;\n\t\talign-items: stretch;\n\t\tpadding: 4px 0;\n\n\t\t&:before,\n\t\t&:after {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t.llms-widget-1-4 {\n\t\tpadding: 0;\n\t\tflex: 1;\n\t}\n\n\t.llms-widget {\n\t\tpadding: 8px 8px 12px;\n\t\tmargin: 0;\n\t\tborder-radius: 6px;\n\t\tborder: 1px solid #e8e8e8;\n\t\tbox-shadow: 0px 2px 4px rgb(246 247 247);\n\t\theight: 100%;\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tjustify-content: center;\n\t\talign-items: flex-end;\n\t}\n\n\t.llms-label {\n\t\tfont-size: 14px;\n\t\twidth: 100%;\n\t\talign-self: flex-start;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t\toverflow: hidden;\n\t}\n\n\t.llms-widget-content {\n\t\tfont-size: 20px;\n\t\tmargin: 0;\n\t}\n\n\t.llms-widget-info-toggle {\n\t\tdisplay: none;\n\t}\n\n\ta {\n\t\tborder: 0;\n\t}\n\n\t.subsubsub {\n\t\tcolor: #dcdcde;\n\t}\n}\n\n.llms-dashboard-widget-feed {\n\tmargin: 0 -12px;\n\tpadding: 0;\n\tbackground-color: #f6f7f7;\n\n\tli {\n\t\tmargin: 0;\n\t\tpadding: 8px 12px;\n\t\tborder-bottom: 1px solid #e8e8e8;\n\t}\n\n\tspan {\n\t\tdisplay: block;\n\t}\n}\n",".llms-remarks {\n\n\t.llms-remarks-field {\n\t\theight: 120px;\n\t\twidth: 100%;\n\t}\n\n\tinput[type=\"number\"] {\n\t\twidth: 60px;\n\t}\n\n\n}\n\n\nbutton[name=\"llms_quiz_attempt_action\"] {\n\t.save { display: none; }\n\t&.grading {\n\t\t.default { display: none };\n\t\t.save { display: inline; }\n\t}\n}\n\n",".llms-form-fields {\n\t@extend %clearfix;\n\tbox-sizing: border-box;\n\t& * {\n\t\tbox-sizing: border-box;\n\t}\n\t&.flush {\n\t\t.llms-form-field {\n\t\t\tpadding: 0 0 10px;\n\t\t}\n\t}\n\n\t.wp-block-columns, .wp-block-column {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n\t.llms-form-heading {\n\t\tpadding: 0 10px 10px;\n\t}\n\n\t.llms-form-field {\n\t\tfloat: left;\n\t\tpadding: 0 10px 10px;\n\t\tposition: relative;\n\t\twidth: 100%;\n\n\t\t// Ensure \"empty\" labels don't break the layout.\n\t\t// See the billing_address_2 field which has no label.\n\t\tlabel:empty:after {\n\t\t\tcontent: '\\00a0';\n\t\t}\n\n\t\t&.valid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( #83c373, .3 );\n\t\t\t\tborder-color: #83c373;\n\t\t\t}\n\t\t}\n\n\t\t&.error,\n\t\t&.invalid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( $color-red, .3 );\n\t\t\t\tborder-color: $color-red;\n\t\t\t}\n\t\t}\n\n\t\t&.llms-visually-hidden-field {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&.align-right {\n\t\t\ttext-align: right;\n\t\t}\n\n\t\t@media screen and ( min-width: 600px ) {\n\t\t\t$i: 1;\n\t\t\t@while $i <= 12 {\n\t\t\t\t&.llms-cols-#{$i} {\n\t\t\t\t\twidth: calc( $i / 12 ) * 100%;\n\t\t\t\t\t$i: $i + 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type-hidden { padding: 0; }\n\n\t\t&.type-radio,\n\t\t&.type-checkbox {\n\t\t\tinput,\n\t\t\tlabel {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: auto;\n\t\t\t}\n\t\t\tinput {\n\t\t\t\tmargin-right: 5px;\n\t\t\t}\n\t\t\tlabel + .llms-description {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\n\t\t&.type-radio:not(.is-group) {\n\n\t\t\tinput[type=\"radio\"] {\n\t\t\t\tposition: absolute;\n\t\t\t\topacity: 0;\n\t\t\t\tvisibility: none;\n\t\t\t}\n\n\t\t\tlabel:before {\n\t\t\t\tbackground: #fafafa;\n\t\t\t\tbackground-position: -24px 0;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tbox-shadow: hsla( 0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.35) 0 0 0 1px;\n\t\t\t\tcontent: '';\n\t\t\t\tcursor: pointer;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: 22px;\n\t\t\t\tmargin-right: 5px;\n\t\t\t\tposition: relative;\n\t\t\t\ttransition: background-position .15s cubic-bezier(.8, 0, 1, 1);\n\t\t\t\ttop: -3px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 22px;\n\t\t\t\tz-index: 2;\n\t\t\t}\n\n\t\t\tinput[type=\"radio\"]:checked + label:before {\n\t\t\t\ttransition: background-position .2s .15s cubic-bezier(0, 0, .2, 1);\n\t\t\t\tbackground-position: 0 0;\n\t\t\t\tbackground-image: radial-gradient(ellipse at center, $color-brand-blue 0%,$color-brand-blue 40%, #fafafa 45%);\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-input-group {\n\t\t\tmargin-top: 5px;\n\t\t\t.llms-form-field {\n\t\t\t\tpadding: 0 0 5px 5px;\n\t\t\t}\n\t\t}\n\n\t\t&.type-reset,\n\t\t&.type-button,\n\t\t&.type-submit {\n\t\t\tbutton:not(.auto) { width: 100%; }\n\t\t}\n\n\t\t.llms-description {\n\t\t\tfont-size: 14px;\n\t\t\tfont-style: italic;\n\t\t}\n\n\t\t.llms-required {\n\t\t\tcolor: $color-red;\n\t\t\tmargin-left: 4px;\n\t\t}\n\n\t\tinput, textarea, select {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 5px;\n\t\t}\n\n\t\t.select2-container .select2-selection--single {\n\t\t\theight: auto;\n\t\t\tpadding: 4px 6px;\n\t\t}\n\t\t.select2-container--default .select2-selection--single .select2-selection__arrow {\n\t\t\theight: 100%;\n\t\t}\n\n\t}\n\n\n\t.llms-password-strength-meter {\n\t\tborder: 1px solid #dadada;\n\t\tdisplay: none;\n\t\tfont-size: 10px;\n\t\tmargin-top: -10px;\n\t\tpadding: 1px;\n\t\tposition: relative;\n\t\ttext-align: center;\n\n\t\t&:before {\n\t\t\tbottom: 0;\n\t\t\tcontent: '';\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\ttransition: width .4s ease;\n\t\t}\n\n\t\t&.mismatch,\n\t\t&.too-short,\n\t\t&.very-weak {\n\t\t\tborder-color: #e35b5b;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #e35b5b, 0.25 );\n\t\t\t\twidth: 25%;\n\t\t\t}\n\t\t}\n\n\t\t&.too-short:before {\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&.weak {\n\t\t\tborder-color: #f78b53;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #f78b53, 0.25 );\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t}\n\n\t\t&.medium {\n\t\t\tborder-color: #ffc733;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #ffc733, 0.25 );\n\t\t\t\twidth: 75%;\n\t\t\t}\n\t\t}\n\n\t\t&.strong {\n\t\t\tborder-color: #83c373;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #83c373, 0.25 );\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n","/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: 'FontAwesome';\n src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');\n src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.fa-pull-left {\n float: left;\n}\n.fa-pull-right {\n float: right;\n}\n.fa.fa-pull-left {\n margin-right: .3em;\n}\n.fa.fa-pull-right {\n margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n.fa-music:before {\n content: \"\\f001\";\n}\n.fa-search:before {\n content: \"\\f002\";\n}\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n.fa-heart:before {\n content: \"\\f004\";\n}\n.fa-star:before {\n content: \"\\f005\";\n}\n.fa-star-o:before {\n content: \"\\f006\";\n}\n.fa-user:before {\n content: \"\\f007\";\n}\n.fa-film:before {\n content: \"\\f008\";\n}\n.fa-th-large:before {\n content: \"\\f009\";\n}\n.fa-th:before {\n content: \"\\f00a\";\n}\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n.fa-check:before {\n content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n.fa-power-off:before {\n content: \"\\f011\";\n}\n.fa-signal:before {\n content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n.fa-home:before {\n content: \"\\f015\";\n}\n.fa-file-o:before {\n content: \"\\f016\";\n}\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n.fa-road:before {\n content: \"\\f018\";\n}\n.fa-download:before {\n content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n.fa-refresh:before {\n content: \"\\f021\";\n}\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n.fa-lock:before {\n content: \"\\f023\";\n}\n.fa-flag:before {\n content: \"\\f024\";\n}\n.fa-headphones:before {\n content: \"\\f025\";\n}\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n.fa-tag:before {\n content: \"\\f02b\";\n}\n.fa-tags:before {\n content: \"\\f02c\";\n}\n.fa-book:before {\n content: \"\\f02d\";\n}\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n.fa-print:before {\n content: \"\\f02f\";\n}\n.fa-camera:before {\n content: \"\\f030\";\n}\n.fa-font:before {\n content: \"\\f031\";\n}\n.fa-bold:before {\n content: \"\\f032\";\n}\n.fa-italic:before {\n content: \"\\f033\";\n}\n.fa-text-height:before {\n content: \"\\f034\";\n}\n.fa-text-width:before {\n content: \"\\f035\";\n}\n.fa-align-left:before {\n content: \"\\f036\";\n}\n.fa-align-center:before {\n content: \"\\f037\";\n}\n.fa-align-right:before {\n content: \"\\f038\";\n}\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n.fa-list:before {\n content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n.fa-indent:before {\n content: \"\\f03c\";\n}\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n.fa-pencil:before {\n content: \"\\f040\";\n}\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n.fa-adjust:before {\n content: \"\\f042\";\n}\n.fa-tint:before {\n content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n.fa-arrows:before {\n content: \"\\f047\";\n}\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n.fa-backward:before {\n content: \"\\f04a\";\n}\n.fa-play:before {\n content: \"\\f04b\";\n}\n.fa-pause:before {\n content: \"\\f04c\";\n}\n.fa-stop:before {\n content: \"\\f04d\";\n}\n.fa-forward:before {\n content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n.fa-eject:before {\n content: \"\\f052\";\n}\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n.fa-ban:before {\n content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n.fa-expand:before {\n content: \"\\f065\";\n}\n.fa-compress:before {\n content: \"\\f066\";\n}\n.fa-plus:before {\n content: \"\\f067\";\n}\n.fa-minus:before {\n content: \"\\f068\";\n}\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n.fa-gift:before {\n content: \"\\f06b\";\n}\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n.fa-fire:before {\n content: \"\\f06d\";\n}\n.fa-eye:before {\n content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n.fa-plane:before {\n content: \"\\f072\";\n}\n.fa-calendar:before {\n content: \"\\f073\";\n}\n.fa-random:before {\n content: \"\\f074\";\n}\n.fa-comment:before {\n content: \"\\f075\";\n}\n.fa-magnet:before {\n content: \"\\f076\";\n}\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n.fa-retweet:before {\n content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n.fa-folder:before {\n content: \"\\f07b\";\n}\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n.fa-key:before {\n content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n.fa-comments:before {\n content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n.fa-star-half:before {\n content: \"\\f089\";\n}\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n.fa-trophy:before {\n content: \"\\f091\";\n}\n.fa-github-square:before {\n content: \"\\f092\";\n}\n.fa-upload:before {\n content: \"\\f093\";\n}\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n.fa-phone:before {\n content: \"\\f095\";\n}\n.fa-square-o:before {\n content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n.fa-twitter:before {\n content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n.fa-github:before {\n content: \"\\f09b\";\n}\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n.fa-square:before {\n content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n.fa-table:before {\n content: \"\\f0ce\";\n}\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n.fa-money:before {\n content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n.fa-columns:before {\n content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n.fa-desktop:before {\n content: \"\\f108\";\n}\n.fa-laptop:before {\n content: \"\\f109\";\n}\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n.fa-spinner:before {\n content: \"\\f110\";\n}\n.fa-circle:before {\n content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n.fa-terminal:before {\n content: \"\\f120\";\n}\n.fa-code:before {\n content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n.fa-crop:before {\n content: \"\\f125\";\n}\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n.fa-question:before {\n content: \"\\f128\";\n}\n.fa-info:before {\n content: \"\\f129\";\n}\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n.fa-microphone:before {\n content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n.fa-shield:before {\n content: \"\\f132\";\n}\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n.fa-rocket:before {\n content: \"\\f135\";\n}\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n.fa-html5:before {\n content: \"\\f13b\";\n}\n.fa-css3:before {\n content: \"\\f13c\";\n}\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n.fa-ticket:before {\n content: \"\\f145\";\n}\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n.fa-level-up:before {\n content: \"\\f148\";\n}\n.fa-level-down:before {\n content: \"\\f149\";\n}\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n.fa-compass:before {\n content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n.fa-gbp:before {\n content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n.fa-file:before {\n content: \"\\f15b\";\n}\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n.fa-youtube:before {\n content: \"\\f167\";\n}\n.fa-xing:before {\n content: \"\\f168\";\n}\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n.fa-adn:before {\n content: \"\\f170\";\n}\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n.fa-apple:before {\n content: \"\\f179\";\n}\n.fa-windows:before {\n content: \"\\f17a\";\n}\n.fa-android:before {\n content: \"\\f17b\";\n}\n.fa-linux:before {\n content: \"\\f17c\";\n}\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n.fa-skype:before {\n content: \"\\f17e\";\n}\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n.fa-trello:before {\n content: \"\\f181\";\n}\n.fa-female:before {\n content: \"\\f182\";\n}\n.fa-male:before {\n content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n.fa-archive:before {\n content: \"\\f187\";\n}\n.fa-bug:before {\n content: \"\\f188\";\n}\n.fa-vk:before {\n content: \"\\f189\";\n}\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n.fa-renren:before {\n content: \"\\f18b\";\n}\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n.fa-slack:before {\n content: \"\\f198\";\n}\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n.fa-openid:before {\n content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n.fa-google:before {\n content: \"\\f1a0\";\n}\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n.fa-language:before {\n content: \"\\f1ab\";\n}\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n.fa-building:before {\n content: \"\\f1ad\";\n}\n.fa-child:before {\n content: \"\\f1ae\";\n}\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n.fa-database:before {\n content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n.fa-git:before {\n content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n.fa-history:before {\n content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n.fa-header:before {\n content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n.fa-at:before {\n content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n.fa-bus:before {\n content: \"\\f207\";\n}\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n.fa-angellist:before {\n content: \"\\f209\";\n}\n.fa-cc:before {\n content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n.fa-diamond:before {\n content: \"\\f219\";\n}\n.fa-ship:before {\n content: \"\\f21a\";\n}\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n.fa-venus:before {\n content: \"\\f221\";\n}\n.fa-mars:before {\n content: \"\\f222\";\n}\n.fa-mercury:before {\n content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n.fa-server:before {\n content: \"\\f233\";\n}\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n.fa-user-times:before {\n content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n.fa-train:before {\n content: \"\\f238\";\n}\n.fa-subway:before {\n content: \"\\f239\";\n}\n.fa-medium:before {\n content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n.fa-object-group:before {\n content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n.fa-clone:before {\n content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n.fa-registered:before {\n content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n.fa-gg:before {\n content: \"\\f260\";\n}\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n.fa-safari:before {\n content: \"\\f267\";\n}\n.fa-chrome:before {\n content: \"\\f268\";\n}\n.fa-firefox:before {\n content: \"\\f269\";\n}\n.fa-opera:before {\n content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n.fa-contao:before {\n content: \"\\f26d\";\n}\n.fa-500px:before {\n content: \"\\f26e\";\n}\n.fa-amazon:before {\n content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n.fa-industry:before {\n content: \"\\f275\";\n}\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n.fa-map-o:before {\n content: \"\\f278\";\n}\n.fa-map:before {\n content: \"\\f279\";\n}\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n.fa-edge:before {\n content: \"\\f282\";\n}\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n.fa-modx:before {\n content: \"\\f285\";\n}\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n.fa-usb:before {\n content: \"\\f287\";\n}\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n.fa-percent:before {\n content: \"\\f295\";\n}\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n.fa-envira:before {\n content: \"\\f299\";\n}\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n.fa-blind:before {\n content: \"\\f29d\";\n}\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n"],"sourceRoot":"../../scss"} \ No newline at end of file diff --git a/assets/maps/css/admin.min.css.map b/assets/maps/css/admin.min.css.map index 4ae1739957..a7dd0208e6 100644 --- a/assets/maps/css/admin.min.css.map +++ b/assets/maps/css/admin.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["admin.css"],"names":[],"mappings":"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","file":"../../css/admin.min.css","sourcesContent":["@charset \"UTF-8\";\n#poststuff .llms-metabox:before, #poststuff .llms-metabox:after,\n.llms-form-fields:before,\n.llms-metabox .llms-access-plans:before,\n.llms-collapsible .llms-collapsible-body:before,\n.llms-collapsible .llms-collapsible-header:before,\n.llms-collapsible:before,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n content: \" \";\n display: table;\n}\n#poststuff .llms-metabox:after,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n clear: both;\n}\n\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #466dd8;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #2b55cb;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #6888df;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n -webkit-transition: all 0.2s 0.1s ease;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n -webkit-transition: all 0.2s 0.6s ease;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n#adminmenu .toplevel_page_lifterlms .wp-menu-image img {\n padding-top: 6px;\n width: 20px;\n}\n#adminmenu .toplevel_page_lifterlms a[href*=\"page=llms-add-ons\"],\n#adminmenu .opensub .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a[href*=\"page=llms-add-ons\"] {\n color: #ff922b;\n}\n\n/******************************************************************\n\nGrids for Breakpoints\n\n******************************************************************/\n.last-col {\n float: right;\n padding-right: 0 !important;\n}\n\n.last-col:after {\n clear: both;\n}\n\n/*\nMobile Grid Styles\nThese are the widths for the mobile grid.\nThere are four types, but you can add or customize\nthem however you see fit.\n*/\n@media (max-width: 767px) {\n .m-all {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .m-1of2 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 50%;\n }\n .m-1of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 33.33%;\n }\n .m-2of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 66.66%;\n }\n .m-1of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 25%;\n }\n .m-3of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 75%;\n }\n .m-right {\n text-align: center;\n }\n .m-center {\n text-align: center;\n }\n .m-left {\n text-align: center;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Portrait tablet to landscape */\n@media (min-width: 768px) and (max-width: 1029px) {\n .t-all {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .t-1of2 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 50%;\n }\n .t-1of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 33.33%;\n }\n .t-2of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 66.66%;\n }\n .t-1of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 25%;\n }\n .t-3of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 75%;\n }\n .t-1of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 20%;\n }\n .t-2of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 40%;\n }\n .t-3of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 60%;\n }\n .t-4of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 80%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Landscape to small desktop */\n@media (min-width: 1030px) {\n .d-all {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .d-1of2 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 50%;\n }\n .d-1of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 33.33%;\n }\n .d-2of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 66.66%;\n }\n .d-1of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 25%;\n }\n .d-3of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 75%;\n }\n .d-1of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 20%;\n }\n .d-2of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 40%;\n }\n .d-3of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 60%;\n }\n .d-4of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 80%;\n }\n .d-1of6 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 16.6666666667%;\n }\n .d-1of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 14.2857142857%;\n }\n .d-2of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 28.5714286%;\n }\n .d-3of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 42.8571429%;\n }\n .d-4of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 57.1428572%;\n }\n .d-5of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 71.4285715%;\n }\n .d-6of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 85.7142857%;\n }\n .d-1of8 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 12.5%;\n }\n .d-1of9 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 11.1111111111%;\n }\n .d-1of10 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 10%;\n }\n .d-1of11 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 9.0909090909%;\n }\n .d-1of12 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 8.33%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/******************************************************************\n\nForm Styles\n\n******************************************************************/\n#llms-form-wrapper .llms-search-form-wrapper {\n border-bottom: 1px solid #999;\n margin: 20px 0;\n}\n#llms-form-wrapper #llms_analytics_search {\n border: none !important;\n text-shadow: none !important;\n border: none !important;\n outline: none !important;\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n margin: 0 !important;\n color: #fefefe !important;\n background: #466dd8 !important;\n border-radius: 0;\n -webkit-transition: 0.5s;\n transition: 0.5s;\n}\n#llms-form-wrapper #llms_analytics_search:hover {\n background: #0185a3 !important;\n}\n#llms-form-wrapper #llms_analytics_search:active {\n background: #33b1cb !important;\n}\n\n#llms-skip-setup-form .llms-admin-link {\n background: none !important;\n border: none;\n padding: 0 !important;\n color: #0074a2;\n cursor: pointer;\n}\n#llms-skip-setup-form .llms-admin-link:hover {\n color: #2ea2cc;\n}\n#llms-skip-setup-form .llms-admin-link:focus {\n color: #124964;\n}\n\n/**\n * Toggle Switch ( replaces checkbox on admin panels )\n */\n.llms-switch {\n position: relative;\n}\n.llms-switch .llms-toggle {\n position: absolute;\n margin-left: -9999px;\n visibility: hidden;\n}\n.llms-switch .llms-toggle + label {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: block;\n position: relative;\n cursor: pointer;\n outline: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.llms-switch input.llms-toggle-round + label {\n border: 2px solid #6c7781;\n border-radius: 10px;\n height: 20px;\n width: 36px;\n}\n.llms-switch input.llms-toggle-round + label:before,\n.llms-switch input.llms-toggle-round + label:after {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n content: \"\";\n display: block;\n position: absolute;\n -webkit-transition: background 0.4s;\n transition: background 0.4s;\n}\n.llms-switch input.llms-toggle-round:checked + label {\n border-color: #11a0d2;\n background-color: #11a0d2;\n}\n.llms-switch input.llms-toggle-round + label:after {\n height: 12px;\n left: 2px;\n top: 2px;\n background-color: #6c7781;\n border-radius: 50%;\n -webkit-transition: margin 0.4s;\n transition: margin 0.4s;\n width: 12px;\n z-index: 3;\n}\n.llms-switch input.llms-toggle-round:checked + label:after {\n background-color: #fefefe;\n margin-left: 16px;\n}\n.llms-switch input.llms-toggle-round + label:before {\n height: 8px;\n top: 4px;\n border: 1px solid #6c7781;\n border-radius: 50%;\n right: 4px;\n width: 8px;\n z-index: 2;\n}\n.llms-switch input.llms-toggle-round:checked + label:before {\n border-color: #fefefe;\n border-radius: 0;\n left: 6px;\n right: auto;\n width: 2px;\n}\n\n#llms-profile-fields {\n margin: 50px 0;\n}\n#llms-profile-fields .llms-form-field {\n padding-left: 0;\n}\n#llms-profile-fields label {\n display: block;\n font-weight: bold;\n padding: 8px 0 2px;\n}\n#llms-profile-fields .type-checkbox .type-checkbox label {\n display: initial;\n font-weight: initial;\n padding: 0;\n}\n#llms-profile-fields .type-checkbox .type-checkbox input {\n display: inline-block;\n margin-bottom: 0;\n width: 1rem;\n}\n#llms-profile-fields select {\n max-width: 100%;\n}\n\na.llms-voucher-delete {\n background: #e5554e;\n color: #fefefe;\n display: block;\n padding: 4px 2px;\n text-decoration: none;\n -webkit-transition: ease 0.3s all;\n transition: ease 0.3s all;\n}\na.llms-voucher-delete:hover {\n background: #af3a26;\n}\n\n.llms-voucher-codes-wrapper table,\n.llms-voucher-redemption-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td,\n.llms-voucher-redemption-wrapper table th,\n.llms-voucher-redemption-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead,\n.llms-voucher-redemption-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table thead th,\n.llms-voucher-redemption-wrapper table thead th {\n padding: 10px 10px;\n}\n.llms-voucher-codes-wrapper table tr,\n.llms-voucher-redemption-wrapper table tr {\n counter-increment: row-counter;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even),\n.llms-voucher-redemption-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td,\n.llms-voucher-redemption-wrapper table tr td {\n padding: 5px;\n}\n.llms-voucher-codes-wrapper table tr td:first-child:before,\n.llms-voucher-redemption-wrapper table tr td:first-child:before {\n content: counter(row-counter);\n}\n\n.llms-voucher-codes-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td span {\n display: inline-block;\n min-width: 30px;\n}\n.llms-voucher-codes-wrapper button {\n cursor: pointer;\n}\n.llms-voucher-codes-wrapper .llms-voucher-delete {\n float: right;\n margin-right: 15px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-uses {\n width: 50px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes {\n float: right;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text] {\n width: 30px;\n}\n\n.llms-voucher-export-wrapper .llms-voucher-export-type {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-export-type p {\n margin: 0 0 0 15px;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper {\n width: 100%;\n margin: 25px 0;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text] {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper p {\n margin: 0;\n}\n.llms-voucher-export-wrapper > button {\n float: right;\n}\n\n.postbox .inside {\n overflow: auto;\n}\n\n.llms-widget {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n -webkit-box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin-bottom: 20px;\n padding: 20px;\n position: relative;\n width: 100%;\n}\n.llms-widget.alt {\n border: 1px solid #ccc;\n background-color: #efefef;\n margin-bottom: 10px;\n}\n.llms-widget.alt .llms-label {\n color: #777;\n font-size: 14px;\n margin-bottom: 10px;\n padding-bottom: 5px;\n}\n.llms-widget.alt h2 {\n color: #444;\n font-weight: 300;\n}\n.llms-widget a {\n border-bottom: 1px dotted #466dd8;\n display: inline-block;\n text-decoration: none;\n}\n.llms-widget a:hover {\n border-bottom: 1px dotted #2b55cb;\n}\n.llms-widget .llms-widget-content {\n margin: 0.67em 0;\n color: #466dd8;\n font-size: 2.4em;\n font-weight: 700;\n line-height: 1;\n word-break: break-all;\n}\n.llms-widget h2 {\n font-size: 1.8em;\n}\n.llms-widget .llms-label {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-size: 18px;\n font-weight: 400;\n margin: 0 0 10px 0;\n text-align: center;\n}\n.llms-widget .llms-chart {\n width: 100%;\n padding: 10px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-widget mark.yes {\n background-color: #7ad03a;\n}\n.llms-widget .llms-subtitle {\n margin-bottom: 0;\n}\n.llms-widget .spinner {\n float: none;\n left: 50%;\n margin: -10px 0 0 -10px;\n position: absolute;\n top: 50%;\n z-index: 2;\n}\n.llms-widget.is-loading:before {\n background: #fefefe;\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0.9;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 1;\n}\n.llms-widget.is-loading .spinner {\n visibility: visible;\n}\n.llms-widget td[colspan=\"2\"] {\n padding-left: 0;\n}\n.llms-widget tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n\n.llms-widget-1-3,\n.llms-widget-1-4,\n.llms-widget-1-5 {\n text-align: center;\n}\n\n.llms-widget .llms-widget-info-toggle {\n color: #AAA;\n cursor: pointer;\n font-size: 16px;\n position: absolute;\n right: 20px;\n top: 20px;\n}\n.llms-widget.info-showing .llms-widget-info {\n display: block;\n}\n\n.llms-widget-info {\n background: #444;\n color: #fefefe;\n bottom: -50px;\n display: none;\n padding: 15px;\n position: absolute;\n text-align: center;\n left: 10px;\n right: 15px;\n z-index: 3;\n}\n.llms-widget-info:before {\n content: \"\";\n border: 12px solid transparent;\n border-bottom-color: #444;\n left: 50%;\n margin-left: -12px;\n position: absolute;\n top: -24px;\n}\n.llms-widget-info p {\n margin: 0;\n}\n\n.llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n}\n.llms-widget-row:after {\n clear: both;\n}\n\n.llms-widget-row .no-padding {\n padding: 0 !important;\n}\n\n/******************************************************************\n\nSVG Styles\n\n******************************************************************/\nsvg.icon {\n height: 24px;\n width: 24px;\n display: inline-block;\n fill: currentColor;\n vertical-align: baseline;\n}\nbutton svg.icon {\n height: 18px;\n width: 18px;\n margin: 4px -4px 0 4px;\n -webkit-filter: drop-shadow(0 1px #eee);\n filter: drop-shadow(0 1px #eee);\n float: right;\n}\nsvg.icon.menu-icon {\n height: 20px;\n width: 20px;\n display: inline-block;\n fill: currentColor;\n vertical-align: text-bottom;\n margin-right: 10px;\n}\nsvg.icon.tree-icon {\n height: 13px;\n width: 13px;\n vertical-align: middle;\n}\nsvg.icon.section-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon-attr {\n height: 10px;\n width: 10px;\n vertical-align: middle;\n}\nsvg.icon.list-icon {\n height: 12px;\n width: 12px;\n vertical-align: middle;\n}\nsvg.icon.list-icon.on {\n color: #466dd8;\n}\nsvg.icon.list-icon.off {\n color: #444;\n}\nsvg.icon.detail-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n cursor: default;\n}\nsvg.icon.detail-icon.on {\n color: #466dd8;\n}\nsvg.icon.detail-icon.off {\n color: #ccc;\n}\nsvg.icon-ion-arrow-up {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\nsvg use {\n pointer-events: none;\n}\n\n/******************************************************************\n\nMetabox Tabs\n\n******************************************************************/\n#side-sortables .tab-content {\n padding: 0;\n}\n\n.llms-mb-container .tab-content {\n display: none;\n background-color: #FFF;\n padding: 0 20px;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) {\n margin: 0 0 15px 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li {\n padding: 20px 0;\n margin: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.select:not([class*=d-]) {\n width: 100%;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li:last-child {\n border: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.top {\n border-bottom: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content .full-width {\n width: 100%;\n}\n.llms-mb-container .tab-content #wp-content-editor-tools {\n background: none;\n}\n\n.llms-mb-container .tab-content.llms-active {\n display: inherit;\n}\n\n.llms-mb-container .tab-content .no-border {\n border-bottom: 0px;\n}\n\n/******************************************************************\n\nStyles for topModal modal\n\n******************************************************************/\n/**\n * Base modal styles\n */\n.topModal {\n display: none;\n position: relative;\n border: 4px solid #808080;\n background: #fff;\n z-index: 1000001;\n padding: 2px;\n max-width: 500px;\n margin: 34px auto 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-color: #ffffff;\n border-radius: 2px;\n border: 1px solid #dddddd;\n}\n\n.topModalClose {\n float: right;\n cursor: pointer;\n margin-right: 10px;\n margin-top: 10px;\n}\n\n.topModalContainer {\n display: none;\n overflow: auto;\n overflow-y: hidden;\n position: fixed;\n top: 0 !important;\n right: 0;\n bottom: 0;\n left: 0;\n -webkit-overflow-scrolling: touch;\n width: auto !important;\n margin-left: 0 !important;\n background-color: transparent !important;\n z-index: 100002 !important;\n}\n\n.topModalBackground {\n display: none;\n background: #000;\n position: fixed;\n height: 100%;\n width: 100%;\n top: 0 !important;\n left: 0;\n margin-left: 0 !important;\n z-index: 100002 !important;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: auto;\n overflow-y: hidden;\n}\n\nbody.modal-open {\n overflow: hidden;\n}\n\n.llms-modal-header {\n border-top-right-radius: 1px;\n border-top-left-radius: 1px;\n background: #466dd8;\n color: #eeeeee;\n padding: 10px 15px;\n font-size: 18px;\n}\n\n#llms-icon-modal-close {\n width: 16px;\n height: 16px;\n fill: #fefefe;\n}\n\n.llms-modal-content {\n padding: 20px;\n}\n.llms-modal-content h3 {\n margin-top: 0;\n}\n\n/**\n * Custom Modal Styles for LifterLMS\n */\n.llms-modal-form h1 {\n margin-top: 0;\n}\n.llms-modal-form input[type=text] {\n width: 100%;\n}\n.llms-modal-form textarea,\n.llms-modal-form input[type=text],\n.llms-modal-form input[type=password],\n.llms-modal-form input[type=file],\n.llms-modal-form input[type=datetime],\n.llms-modal-form input[type=datetime-local],\n.llms-modal-form input[type=date],\n.llms-modal-form input[type=month],\n.llms-modal-form input[type=time],\n.llms-modal-form input[type=week],\n.llms-modal-form input[type=number],\n.llms-modal-form input[type=email],\n.llms-modal-form input[type=url],\n.llms-modal-form input[type=search],\n.llms-modal-form input[type=tel],\n.llms-modal-form input[type=color] {\n padding: 0 0.4em 0 0.4em;\n margin-bottom: 2em;\n vertical-align: middle;\n border-radius: 3px;\n min-width: 50px;\n max-width: 635px;\n width: 100%;\n min-height: 32px;\n background-color: #fff;\n border: 1px solid #ccc;\n margin: 0 0 24px 0;\n outline: none;\n -webkit-transition: border 0.3s ease-in-out 0s;\n transition: border 0.3s ease-in-out 0s;\n}\n.llms-modal-form textarea:focus,\n.llms-modal-form input[type=text]:focus,\n.llms-modal-form input[type=password]:focus,\n.llms-modal-form input[type=file]:focus,\n.llms-modal-form input[type=datetime]:focus,\n.llms-modal-form input[type=datetime-local]:focus,\n.llms-modal-form input[type=date]:focus,\n.llms-modal-form input[type=month]:focus,\n.llms-modal-form input[type=time]:focus,\n.llms-modal-form input[type=week]:focus,\n.llms-modal-form input[type=number]:focus,\n.llms-modal-form input[type=email]:focus,\n.llms-modal-form input[type=url]:focus,\n.llms-modal-form input[type=search]:focus,\n.llms-modal-form input[type=tel]:focus,\n.llms-modal-form input[type=color]:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form textarea {\n padding: 0.4em !important;\n height: 100px !important;\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n outline: none;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-modal-form textarea:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single {\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n border: 1px solid #ccc;\n width: 100%;\n background: #fefefe !important;\n outline: none;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-box-shadow: 0 0 0 #fff;\n box-shadow: 0 0 0 #fff;\n line-height: 32px;\n margin: 0 0 24px 0;\n}\n.llms-modal-form .chosen-container-single .chosen-single:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single div b {\n margin-top: 4px;\n}\n.llms-modal-form .chosen-search input[type=text] {\n border: 1px solid #ccc;\n}\n.llms-modal-form .chosen-search input[type=text]:focus {\n background-color: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-drop {\n margin-top: -28px;\n}\n.llms-modal-form .llms-button-primary, .llms-modal-form .llms-button-secondary {\n padding: 10px 10px;\n border-radius: 0;\n -webkit-transition: 0.5s;\n transition: 0.5s;\n -webkit-box-shadow: 0 1px 1px #ccc;\n box-shadow: 0 1px 1px #ccc;\n}\n.llms-modal-form .llms-button-primary.full, .llms-modal-form .llms-button-secondary.full {\n width: 100%;\n}\n\n.modal-open .select2-dropdown {\n z-index: 1000005;\n}\n\n.button.llms-merge-code-button {\n vertical-align: middle;\n}\n.button.llms-merge-code-button svg {\n margin-right: 2px;\n position: relative;\n top: 4px;\n width: 16px;\n}\n.button.llms-merge-code-button svg g {\n fill: currentColor;\n}\n\n.llms-mb-container .llms-merge-code-wrapper {\n float: right;\n top: -5px;\n}\n\n.llms-merge-code-wrapper {\n display: inline;\n position: relative;\n}\n\n.llms-merge-codes {\n background: #f7f7f7;\n border: 1px solid #ccc;\n border-radius: 3px;\n -webkit-box-shadow: 0 1px 0 #ccc;\n box-shadow: 0 1px 0 #ccc;\n color: #555;\n display: none;\n left: 1px;\n overflow: hidden;\n position: absolute;\n top: 30px;\n width: 200px;\n}\n.llms-merge-codes ul {\n margin: 0;\n padding: 0;\n}\n.llms-merge-codes li {\n cursor: pointer;\n margin: 0;\n padding: 4px 8px !important;\n border-bottom: 1px solid #ccc;\n}\n.llms-merge-codes li:hover {\n color: #23282d;\n background: #fefefe;\n}\n.llms-merge-codes.active {\n display: block;\n z-index: 777;\n}\n\n/******************************************************************\n\nBase Mobile\n\n******************************************************************/\n.llms-nav-tab,\n.llms-nav-tab-filters {\n display: block;\n width: 100%;\n}\n\nform.llms-nav-tab-filters.full-width {\n width: 100%;\n}\nform.llms-nav-tab-filters.full-width label {\n display: inline-block;\n width: 10%;\n text-align: left;\n}\nform.llms-nav-tab-filters.full-width .select2-container {\n width: 85% !important;\n}\n\n.llms-nav-tab-settings {\n display: block;\n width: 100%;\n}\n\n#llms-form-wrapper .llms-select {\n width: 100%;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-checkbox {\n display: inline-block;\n width: 100%;\n text-align: left;\n}\n#llms-form-wrapper .llms-filter-options {\n width: 100%;\n}\n#llms-form-wrapper .llms-date-select {\n width: 100%;\n display: inline-block;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-date-select input[type=text] {\n width: 100%;\n}\nul.tabs li {\n display: block;\n}\n\n@media only screen and (min-width: 481px) {\n /******************************************************************\n\n Larger Phones\n\n ******************************************************************/\n #llms-form-wrapper .llms-checkbox {\n width: 33%;\n }\n}\n@media only screen and (min-width: 768px) {\n /******************************************************************\n\n Tablets and small computers\n\n ******************************************************************/\n ul.tabs li {\n display: inline-block;\n }\n .llms-nav-tab {\n display: inline-block;\n width: 33%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-filter-options {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget input[type=text],\n.llms-widget input[type=password],\n.llms-widget input[type=datetime],\n.llms-widget input[type=datetime-local],\n.llms-widget input[type=date],\n.llms-widget input[type=month],\n.llms-widget input[type=time],\n.llms-widget input[type=week],\n.llms-widget input[type=number],\n.llms-widget input[type=email],\n.llms-widget input[type=url],\n.llms-widget input[type=search],\n.llms-widget input[type=tel],\n.llms-widget input[type=color],\n.llms-widget select,\n.llms-widget textarea {\n width: 50%;\n }\n .llms-widget input[type=text].medium,\n.llms-widget input[type=password].medium,\n.llms-widget input[type=datetime].medium,\n.llms-widget input[type=datetime-local].medium,\n.llms-widget input[type=date].medium,\n.llms-widget input[type=month].medium,\n.llms-widget input[type=time].medium,\n.llms-widget input[type=week].medium,\n.llms-widget input[type=number].medium,\n.llms-widget input[type=email].medium,\n.llms-widget input[type=url].medium,\n.llms-widget input[type=search].medium,\n.llms-widget input[type=tel].medium,\n.llms-widget input[type=color].medium,\n.llms-widget select.medium,\n.llms-widget textarea.medium {\n width: 30%;\n }\n .llms-widget input[type=text].small,\n.llms-widget input[type=password].small,\n.llms-widget input[type=datetime].small,\n.llms-widget input[type=datetime-local].small,\n.llms-widget input[type=date].small,\n.llms-widget input[type=month].small,\n.llms-widget input[type=time].small,\n.llms-widget input[type=week].small,\n.llms-widget input[type=number].small,\n.llms-widget input[type=email].small,\n.llms-widget input[type=url].small,\n.llms-widget input[type=search].small,\n.llms-widget input[type=tel].small,\n.llms-widget input[type=color].small,\n.llms-widget select.small,\n.llms-widget textarea.small {\n width: 20%;\n }\n .llms-widget input[type=text].tiny,\n.llms-widget input[type=password].tiny,\n.llms-widget input[type=datetime].tiny,\n.llms-widget input[type=datetime-local].tiny,\n.llms-widget input[type=date].tiny,\n.llms-widget input[type=month].tiny,\n.llms-widget input[type=time].tiny,\n.llms-widget input[type=week].tiny,\n.llms-widget input[type=number].tiny,\n.llms-widget input[type=email].tiny,\n.llms-widget input[type=url].tiny,\n.llms-widget input[type=search].tiny,\n.llms-widget input[type=tel].tiny,\n.llms-widget input[type=color].tiny,\n.llms-widget select.tiny,\n.llms-widget textarea.tiny {\n width: 10%;\n }\n}\n@media only screen and (min-width: 1030px) {\n /******************************************************************\n\n Desktop Stylesheet\n\n ******************************************************************/\n .llms-nav-tab {\n display: inline-block;\n width: 33.333%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-select:first-child {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-filter-options.date-filter {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options .llms-date-select {\n margin-bottom: 0;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n }\n .llms-widget-row:after {\n clear: both;\n }\n .llms-widget-row .llms-widget-1-5 {\n vertical-align: top;\n width: 20%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-4 {\n vertical-align: top;\n width: 25%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-3 {\n width: 33.3%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-2 {\n width: 50%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n vertical-align: top;\n }\n}\n@media only screen and (min-width: 1240px) {\n /******************************************************************\n\n large Monitor Stylesheet\n\n ******************************************************************/\n .llms-nav-tab-filters,\n.llms-nav-tab-settings {\n float: left;\n width: 12.5%;\n }\n}\n.wrap.lifterlms {\n margin-top: 0;\n}\n\n.llms-header {\n background-color: #FFF;\n margin: 0 0 0 -20px;\n padding: 20px 10px;\n position: relative;\n z-index: 1;\n}\n.llms-header .llms-inside-wrap {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n padding: 0 10px;\n}\n.llms-header .lifterlms-logo {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 190px;\n flex: 0 0 190px;\n max-height: 52px;\n margin-right: 10px;\n}\n.llms-header .llms-meta {\n -ms-flex-item-align: center;\n align-self: center;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-size: 16px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n line-height: 1.5;\n}\n.llms-header .llms-meta .llms-version {\n background-color: #1d2327;\n color: #FFF;\n border-radius: 999px;\n font-size: 13px;\n font-weight: 700;\n padding: 6px 12px;\n}\n.llms-header .llms-meta a {\n display: inline-block;\n}\n.llms-header .llms-meta .llms-license {\n border-right: 1px solid #CCC;\n font-weight: 700;\n margin-right: 12px;\n padding-right: 12px;\n}\n.llms-header .llms-meta .llms-license a {\n text-decoration: none;\n}\n.llms-header .llms-meta .llms-license a:before {\n content: \"\\f534\";\n display: inline-block;\n font: 400 16px/1 dashicons;\n left: 0;\n padding-right: 3px;\n position: relative;\n text-decoration: none;\n vertical-align: text-bottom;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none {\n color: #888;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none:before {\n content: \"\\f335\";\n}\n.llms-header .llms-meta .llms-license a.llms-license-active {\n color: #008a20;\n}\n.llms-header .llms-meta .llms-license a.llms-license-active:before {\n content: \"\\f112\";\n}\n.llms-header .llms-meta .llms-support {\n font-weight: 700;\n}\n.llms-header .llms-meta .llms-support a {\n color: #1d2327;\n text-decoration: none;\n}\n\n.llms-subheader {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n margin-left: -20px;\n padding: 10px 20px;\n width: 100%;\n z-index: 1;\n}\n.llms-subheader h1 {\n font-weight: 700;\n padding: 0;\n}\n.llms-subheader h1 a {\n color: inherit;\n text-decoration: none;\n}\n\n#post_course_difficulty {\n min-width: 200px;\n}\n\n#_video-embed, #_audio-embed {\n width: 100%;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\nhr {\n background-color: #CCC;\n border: none;\n height: 1px;\n margin: 30px 0;\n padding: 0;\n}\n\n.llms_certificate_default_image, .llms_certificate_image {\n width: 300px;\n}\n\n.llms_achievement_default_image, .llms_achievement_image {\n width: 120px;\n}\n\ndiv[id^=lifterlms-] .inside {\n overflow: visible;\n}\n\n.notice.llms-admin-notice {\n background-color: #FFF;\n border: 1px solid #ccd0d4;\n -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n padding: 0 !important;\n position: relative;\n}\n.notice.llms-admin-notice .notice-dismiss {\n text-decoration: none;\n}\n.notice.llms-admin-notice.notice-warning {\n border-left: 4px solid #F8954F;\n}\n.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon {\n background-color: #FEF4ED;\n}\n.notice.llms-admin-notice.notice-info {\n border-left: 4px solid #466DD8;\n}\n.notice.llms-admin-notice.notice-info h3 {\n color: #466DD8;\n}\n.notice.llms-admin-notice.notice-info .llms-admin-notice-icon {\n background-color: #EDF0FB;\n}\n.notice.llms-admin-notice.notice-success {\n border-left: 4px solid #18A957;\n}\n.notice.llms-admin-notice.notice-success h3 {\n color: #18A957;\n}\n.notice.llms-admin-notice.notice-success .llms-admin-notice-icon {\n background-color: #E8F6EE;\n}\n.notice.llms-admin-notice.notice-error {\n border-left: 4px solid #DF1642;\n}\n.notice.llms-admin-notice.notice-error h3 {\n color: #9C0F2E;\n}\n.notice.llms-admin-notice.notice-error .llms-admin-notice-icon {\n background-color: #FCE8EC;\n}\n.notice.llms-admin-notice .llms-admin-notice-icon {\n background-image: url(../../assets/images/lifterlms-icon-color.png);\n background-position: center center;\n background-repeat: no-repeat;\n background-size: 30px;\n min-width: 70px;\n}\n.notice.llms-admin-notice .llms-admin-notice-content {\n color: #111;\n padding: 20px;\n}\n.notice.llms-admin-notice h3 {\n font-size: 18px;\n font-weight: 700;\n line-height: 25px;\n margin: 0 0 15px 0;\n}\n.notice.llms-admin-notice button,\n.notice.llms-admin-notice .llms-button-primary {\n display: inline-block;\n}\n.notice.llms-admin-notice p {\n font-size: 14px;\n line-height: 22px;\n margin: 0 0 15px 0;\n max-width: 65em;\n padding: 0;\n}\n.notice.llms-admin-notice p:last-of-type {\n margin-bottom: 0;\n}\n\n.llms-button-action.small .dashicons,\n.llms-button-danger.small .dashicons,\n.llms-button-primary.small .dashicons,\n.llms-button-secondary.small .dashicons {\n font-size: 13px;\n height: 13px;\n width: 13px;\n}\n.llms-button-action:hover,\n.llms-button-danger:hover,\n.llms-button-primary:hover,\n.llms-button-secondary:hover {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\na.llms-view-as {\n line-height: 2;\n margin-right: 8px;\n}\n\n.llms-image-field-preview {\n max-height: 80px;\n vertical-align: middle;\n width: auto;\n}\n\n.llms-image-field-remove.hidden {\n display: none;\n}\n\n.llms-log-viewer {\n background: #fff;\n border: 1px solid #e5e5e5;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n margin: 20px 0;\n padding: 25px;\n}\n.llms-log-viewer pre {\n font-family: monospace;\n margin: 0;\n padding: 0;\n white-space: pre-wrap;\n}\n\n.llms-status--tools .llms-table {\n background: #fff;\n border: 1px solid #e5e5e5;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n}\n.llms-status--tools .llms-table td, .llms-status--tools .llms-table th {\n padding: 10px;\n vertical-align: top;\n}\n.llms-status--tools .llms-table th {\n width: 28%;\n}\n.llms-status--tools .llms-table p {\n margin: 0 0 10px;\n}\n\n.llms-error {\n color: #e5554e;\n font-style: italic;\n}\n\n.llms-rating-stars {\n color: #ffb900;\n text-decoration: none;\n}\n\n@media screen and (max-width: 782px) {\n .llms-header {\n top: 46px;\n }\n .llms-header .llms-inside-wrap {\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n gap: 20px;\n }\n .llms-header .llms-inside-wrap .lifterlms-logo {\n -ms-flex-item-align: center;\n align-self: center;\n -webkit-box-flex: inherit;\n -ms-flex: inherit;\n flex: inherit;\n max-height: initial;\n max-width: 200px;\n }\n .llms-header .llms-inside-wrap .llms-meta {\n -webkit-column-gap: 10px;\n -moz-column-gap: 10px;\n column-gap: 10px;\n }\n}\n.llms-table-wrap {\n position: relative;\n}\n\n.llms-table-header {\n padding: 0;\n}\n.llms-table-header:before, .llms-table-header:after {\n content: \" \";\n display: table;\n}\n.llms-table-header:after {\n clear: both;\n}\n.llms-table-header h2 {\n font-size: 20px;\n padding: 0;\n display: inline-block;\n line-height: 1.5;\n margin: 0 0 20px 0;\n vertical-align: middle;\n}\n.llms-table-header .llms-table-search,\n.llms-table-header .llms-table-filters {\n float: right;\n padding-left: 10px;\n}\n.llms-table-header .llms-table-search input {\n margin: 0;\n padding: 0 8px;\n}\n\n.llms-table {\n border: 1px solid #c3c4c7;\n border-collapse: collapse;\n width: 100%;\n}\n.llms-table a:not(.small) {\n color: #466dd8;\n}\n.llms-table a:not(.small):hover {\n color: #2b55cb;\n}\n.llms-table td, .llms-table th {\n border-bottom: 1px solid #c3c4c7;\n padding: 10px 12px;\n text-align: center;\n}\n.llms-table td.expandable.closed, .llms-table th.expandable.closed {\n display: none;\n}\n.llms-table td .llms-button-primary,\n.llms-table td .llms-button-secondary,\n.llms-table td .llms-button-action,\n.llms-table td .llms-button-danger, .llms-table th .llms-button-primary,\n.llms-table th .llms-button-secondary,\n.llms-table th .llms-button-action,\n.llms-table th .llms-button-danger {\n display: inline-block;\n}\n.llms-table tr.llms-quiz-pending td {\n font-weight: 700;\n}\n.llms-table thead th,\n.llms-table tfoot th {\n background-color: #FFF;\n font-weight: 700;\n}\n.llms-table thead th a.llms-sortable,\n.llms-table tfoot th a.llms-sortable {\n padding-right: 16px;\n position: relative;\n text-decoration: none;\n width: 100%;\n}\n.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable .dashicons,\n.llms-table tfoot th a.llms-sortable .dashicons {\n color: #444;\n font-size: 16px;\n height: 16px;\n opacity: 0;\n position: absolute;\n width: 16px;\n}\n.llms-table tfoot th {\n border-bottom: none;\n}\n.llms-table tfoot th .llms-table-export {\n float: left;\n}\n.llms-table tfoot th .llms-table-export .llms-table-progress {\n background: #efefef;\n display: none;\n margin-left: 8px;\n vertical-align: middle;\n width: 100px;\n}\n.llms-table tfoot th .llms-table-pagination {\n float: right;\n}\n.llms-table.zebra tbody tr:nth-child(even) th, .llms-table.zebra tbody tr:nth-child(even) td {\n background-color: #fff;\n}\n.llms-table.zebra tbody tr:nth-child(odd) th, .llms-table.zebra tbody tr:nth-child(odd) td {\n background-color: #f6f7f7;\n}\n.llms-table.text-left td, .llms-table.text-left th {\n text-align: left;\n}\n.llms-table.size-large td, .llms-table.size-large th {\n font-size: 14px;\n padding: 10px 12px;\n}\n.llms-table .llms-drag-handle {\n color: #777;\n cursor: pointer;\n -webkit-transition: color 0.4s ease;\n transition: color 0.4s ease;\n}\n.llms-table .llms-action-icon {\n color: #777;\n text-decoration: none;\n}\n.llms-table .llms-action-icon .tooltip {\n cursor: pointer;\n}\n.llms-table .llms-action-icon:hover {\n color: #466dd8;\n}\n.llms-table .llms-action-icon.danger:hover {\n color: #e5554e;\n}\n.llms-table .llms-table-page-count {\n font-size: 12px;\n padding: 0 5px;\n}\n\n.llms-table-progress {\n text-align: center;\n}\n.llms-table-progress .llms-table-progress-bar {\n background: #eee;\n border-radius: 10px;\n height: 16px;\n overflow: hidden;\n position: relative;\n}\n.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner {\n background: #466dd8;\n height: 100%;\n -webkit-transition: width 0.2s ease;\n transition: width 0.2s ease;\n}\n.llms-table-progress .llms-table-progress-text {\n color: #466dd8;\n font-size: 12px;\n font-weight: 700;\n line-height: 16px;\n}\n\n.llms-table.llms-gateway-table .status .fa,\n.llms-table.llms-integrations-table .status .fa {\n color: #466dd8;\n font-size: 22px;\n}\n.llms-table.llms-gateway-table .sort,\n.llms-table.llms-integrations-table .sort {\n cursor: move;\n text-align: center;\n width: 10px;\n}\n\n.llms-gb-table-notifications th, .llms-gb-table-notifications td {\n text-align: left;\n}\n\n.llms-order-note .llms-order-note-content {\n background: #efefef;\n margin-bottom: 10px;\n padding: 10px;\n position: relative;\n}\n.llms-order-note .llms-order-note-content:after {\n border-style: solid;\n border-color: #efefef transparent;\n border-width: 10px 10px 0 0;\n bottom: -10px;\n content: \"\";\n display: block;\n height: 0;\n left: 20px;\n position: absolute;\n width: 0;\n}\n.llms-order-note .llms-order-note-content p {\n font-size: 13px;\n margin: 0;\n line-height: 1.5;\n}\n.llms-order-note .llms-order-note-meta {\n color: #999;\n font-size: 11px;\n margin-left: 10px;\n}\n\n.llms-mb-list label {\n font-size: 15px;\n font-weight: 700;\n line-height: 1.5;\n display: block;\n width: 100%;\n}\n.llms-mb-list .description {\n margin-bottom: 8px;\n}\n.llms-mb-list .input-full {\n width: 100%;\n}\n\n#poststuff .llms-metabox h2, #poststuff .llms-metabox h3, #poststuff .llms-metabox h6 {\n margin: 0;\n padding: 0;\n}\n#poststuff .llms-metabox h2 {\n font-size: 18px;\n font-weight: 700;\n}\n#poststuff .llms-metabox h3 {\n color: #777;\n font-size: 16px;\n}\n#poststuff .llms-metabox h4 {\n border-bottom: 1px solid #e5e5e5;\n padding: 0;\n margin: 0;\n}\n#poststuff .llms-metabox .llms-transaction-test-mode {\n background: #ffffd7;\n font-style: italic;\n left: 0;\n padding: 2px;\n position: absolute;\n right: 0;\n top: 0;\n text-align: center;\n}\n#poststuff .llms-metabox a.llms-editable,\n#poststuff .llms-metabox .llms-metabox-icon,\n#poststuff .llms-metabox button.llms-editable {\n color: #999;\n text-decoration: none;\n}\n#poststuff .llms-metabox a.llms-editable:hover,\n#poststuff .llms-metabox .llms-metabox-icon:hover,\n#poststuff .llms-metabox button.llms-editable:hover {\n color: #466dd8;\n}\n#poststuff .llms-metabox button.llms-editable {\n border: none;\n background: none;\n cursor: pointer;\n padding: 0;\n vertical-align: top;\n}\n#poststuff .llms-metabox h4 button.llms-editable {\n float: right;\n}\n#poststuff .llms-metabox .llms-table {\n margin-top: 10px;\n}\n\n.llms-metabox-section {\n background: #fff;\n margin-top: 25px;\n position: relative;\n}\n.llms-metabox-section.no-top-margin {\n margin-top: 0;\n}\n.llms-metabox-section .llms-metabox-field {\n margin: 15px 0;\n position: relative;\n}\n.llms-metabox-section .llms-metabox-field label {\n color: #777;\n display: block;\n margin-bottom: 5px;\n font-weight: 500;\n vertical-align: baseline;\n}\n.llms-metabox-section .llms-metabox-field select,\n.llms-metabox-section .llms-metabox-field textarea,\n.llms-metabox-section .llms-metabox-field input[type=text],\n.llms-metabox-section .llms-metabox-field input[type=number] {\n width: 100%;\n}\n.llms-metabox-section .llms-metabox-field input.md-text {\n width: 105px;\n}\n.llms-metabox-section .llms-metabox-field input.sm-text {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input {\n width: 95px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field em {\n font-style: normal;\n padding: 0 3px;\n}\n\n.llms-collapsible {\n border: 1px solid #e5e5e5;\n position: relative;\n margin-top: 0;\n margin-bottom: -1px;\n}\n.llms-collapsible:last-child {\n margin-bottom: 0;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down {\n display: none;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header {\n padding: 10px;\n}\n.llms-collapsible .llms-collapsible-header h3 {\n color: #777;\n margin: 0;\n font-size: 16px;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: none;\n}\n.llms-collapsible .llms-collapsible-header a {\n text-decoration: none;\n}\n.llms-collapsible .llms-collapsible-header .dashicons {\n color: #777;\n cursor: pointer;\n -webkit-transition: color 0.4s ease;\n transition: color 0.4s ease;\n}\n.llms-collapsible .llms-collapsible-header .dashicons:hover {\n color: #466dd8;\n}\n.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover {\n color: #e5554e;\n}\n.llms-collapsible .llms-collapsible-body {\n display: none;\n padding: 10px;\n}\n\n._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove {\n display: none;\n}\n._llms_instructors_data.repeater .llms-mb-list {\n padding: 0 5px !important;\n}\n\n.post-type-llms_order #post-body-content {\n display: none;\n}\n\n#lifterlms-order-details .handlediv,\n#lifterlms-order-details .handlediv.button-link,\n#lifterlms-order-details .postbox-header {\n display: none;\n}\n#lifterlms-order-details .inside {\n padding: 20px;\n margin-top: 0;\n}\n\n.llms-table tbody tr.llms-txn-failed td {\n background-color: rgba(229, 85, 78, 0.5);\n border-bottom-color: rgba(229, 85, 78, 0.5);\n}\n\n.llms-table tbody tr.llms-txn-refunded td {\n background-color: rgba(255, 165, 0, 0.5);\n border-bottom-color: rgba(255, 165, 0, 0.5);\n}\n\n.llms-txn-refund-form .llms-metabox-section,\n.llms-manual-txn-form .llms-metabox-section {\n margin-top: 0;\n}\n.llms-txn-refund-form .llms-metabox-field,\n.llms-manual-txn-form .llms-metabox-field {\n text-align: right;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=number],\n.llms-manual-txn-form .llms-metabox-field input[type=number] {\n max-width: 100px;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=text],\n.llms-manual-txn-form .llms-metabox-field input[type=text] {\n max-width: 340px;\n}\n\n.llms-manual-txn-form {\n background-color: #eaeaea;\n}\n.llms-manual-txn-form .llms-metabox-section {\n background-color: #eaeaea;\n}\n\n#llms-remaining-edit {\n display: none;\n}\n\n.llms-remaining-edit--content label, .llms-remaining-edit--content span, .llms-remaining-edit--content textarea {\n display: block;\n}\n.llms-remaining-edit--content label {\n margin-bottom: 20px;\n}\n.llms-remaining-edit--content textarea, .llms-remaining-edit--content input {\n width: 100%;\n}\n\n.submitbox .llms-mb-section,\n.llms-award-engagement-submitbox .llms-mb-list {\n margin-bottom: 12px;\n}\n.submitbox .llms-mb-section:last-of-type,\n.llms-award-engagement-submitbox .llms-mb-list:last-of-type {\n margin-bottom: 0;\n}\n.sync-action:before, .submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n font: normal 20px/1 dashicons;\n speak: never;\n display: inline-block;\n margin-left: -1px;\n padding-right: 3px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: relative;\n top: -1px;\n color: #8c8f94;\n}\nbody:not(.admin-color-fresh) .sync-action:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n color: currentColor;\n}\n\n.submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n content: \"\\f110\";\n}\n.sync-action:before {\n content: \"\\f113\";\n color: white;\n}\n\n.submitbox .llms-mb-section.post_author_override label,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label {\n display: inline-block;\n width: auto;\n}\n\n.llms-metabox #llms-new-access-plan-model {\n display: none;\n}\n.llms-metabox .llms-access-plans {\n margin-top: 10px;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg {\n display: none;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg:last-child {\n -webkit-box-shadow: inset 0 0 0 1px #e5e5e5;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n display: block;\n text-align: center;\n padding: 10px;\n}\n.llms-metabox .llms-access-plans.dragging {\n background: #efefef;\n -webkit-box-shadow: inset 0 0 0 1px #e5e5e5;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-metabox .llms-access-plans .llms-spinning {\n z-index: 1;\n}\n.llms-metabox .llms-access-plans .llms-invalid {\n border-color: #e5554e;\n}\n.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning {\n display: inline;\n}\n.llms-metabox .llms-access-plans .dashicons-warning {\n display: none;\n}\n.llms-metabox .llms-access-plan {\n text-align: left;\n}\n.llms-metabox .llms-access-plan [data-tip]:before {\n text-align: center;\n}\n.llms-metabox .llms-access-plan .llms-plan-link,\n.llms-metabox .llms-access-plan [data-controller] {\n display: none;\n}\n.llms-metabox .llms-access-plan:hover .llms-plan-link, .llms-metabox .llms-access-plan.opened .llms-plan-link {\n display: inline-block;\n}\n.llms-metabox .llms-access-plan .llms-metabox-field {\n margin: 5px 0;\n}\n.llms-metabox .llms-access-plan .llms-required {\n color: #e5554e;\n margin-left: 3px;\n}\n\n.llms-metabox-students .llms-table tr .name {\n text-align: left;\n}\n.llms-metabox-students .llms-add-student:hover {\n color: #83c373;\n}\n.llms-metabox-students .llms-remove-student:hover {\n color: #e5554e;\n}\n\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields > li.llms-mb-list {\n border-bottom: none;\n padding: 0 0 10px;\n}\n\n.llms-mb-list.repeater .llms-repeater-rows {\n position: relative;\n margin-top: 10px;\n min-height: 10px;\n}\n.llms-mb-list.repeater .llms-repeater-rows.dragging {\n background: #efefef;\n -webkit-box-shadow: inset 0 0 0 1px #e5e5e5;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-mb-list.repeater .llms-repeater-row {\n background: #fff;\n}\n.llms-mb-list.repeater .llms-mb-repeater-footer {\n text-align: right;\n margin-top: 20px;\n}\n.llms-mb-list.repeater .tmce-active .wp-editor-area {\n color: #32373c;\n}\n\n.llms-builder-launcher p {\n margin-top: 0;\n}\n.llms-builder-launcher ol {\n margin-top: -6px;\n}\n.llms-builder-launcher .llms-button-primary {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n\n.wp-list-table .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.wp-list-table .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.wp-list-table .llms-status.llms-active, .wp-list-table .llms-status.llms-completed, .wp-list-table .llms-status.llms-pass, .wp-list-table .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.wp-list-table .llms-status.llms-fail, .wp-list-table .llms-status.llms-failed, .wp-list-table .llms-status.llms-expired, .wp-list-table .llms-status.llms-cancelled, .wp-list-table .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.wp-list-table .llms-status.llms-incomplete, .wp-list-table .llms-status.llms-on-hold, .wp-list-table .llms-status.llms-pending, .wp-list-table .llms-status.llms-pending-cancel, .wp-list-table .llms-status.llms-refunded, .wp-list-table .llms-status.llms-txn-pending, .wp-list-table .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n\n#lifterlms-order-transactions .llms-table tfoot th {\n text-align: right;\n}\n\n.llms-post-table-post-filter {\n display: inline-block;\n margin-right: 6px;\n max-width: 100%;\n width: 220px;\n}\n\n.llms-nav-tab-wrapper {\n background: #466dd8;\n margin: 20px 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary {\n background: #e1e1e1;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover, .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #cdcdcd;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n color: #414141;\n font-size: 15px;\n padding: 8px 14px;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons {\n font-size: 15px;\n height: 15px;\n width: 15px;\n}\n.llms-nav-tab-wrapper.llms-nav-text {\n background: inherit;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items {\n padding-left: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item {\n background: inherit;\n color: #646970;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after {\n display: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after {\n content: \"|\";\n display: inline-block;\n margin: 0 8px 0 6px;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover {\n background: inherit;\n color: #466dd8;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link {\n background: inherit;\n color: #000;\n font-weight: 600;\n text-decoration: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link {\n color: #466dd8;\n display: inline-block;\n letter-spacing: 0;\n margin: 0;\n padding: 0;\n text-decoration: underline;\n text-transform: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs {\n background-color: #1c3987;\n margin: 0;\n padding-top: 8px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item {\n margin: 0 3px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link {\n background-color: #FFF;\n color: #466dd8;\n font-weight: 700;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters {\n background-color: #466dd8;\n border-radius: 12px;\n margin: 20px 0;\n overflow: hidden;\n padding: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding-left: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item {\n float: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link {\n padding: 14px;\n}\n.llms-nav-tab-wrapper .llms-nav-items {\n margin: 0;\n padding-left: 10px;\n}\n.llms-nav-tab-wrapper .llms-nav-items:before, .llms-nav-tab-wrapper .llms-nav-items:after {\n content: \" \";\n display: table;\n}\n.llms-nav-tab-wrapper .llms-nav-items:after {\n clear: both;\n}\n.llms-nav-tab-wrapper .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover {\n background: #466dd8;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n background: #1c3987;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 400;\n}\n@media only screen and (min-width: 768px) {\n .llms-nav-tab-wrapper .llms-nav-item {\n float: left;\n }\n .llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right {\n float: right;\n }\n}\n.llms-nav-tab-wrapper .llms-nav-link {\n color: #fff;\n cursor: pointer;\n display: block;\n font-weight: 400;\n font-size: 15px;\n padding: 9px 18px;\n text-align: center;\n text-decoration: none;\n -webkit-transition: all 0.3s ease;\n transition: all 0.3s ease;\n}\n\n#llms-options-page-contents h2 {\n color: #999;\n font-weight: 500;\n letter-spacing: 2px;\n border-bottom: 1px solid #999;\n}\n\n.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0;\n padding: 0;\n}\n.llms-reporting.wrap .llms-stab-title {\n color: #1c3987;\n font-size: 36px;\n font-weight: 300;\n margin-bottom: 20px;\n}\n.llms-reporting.wrap td.id a {\n text-decoration: none;\n}\n.llms-reporting.wrap th.id, .llms-reporting.wrap td.id,\n.llms-reporting.wrap th.name, .llms-reporting.wrap td.name,\n.llms-reporting.wrap th.registered, .llms-reporting.wrap td.registered,\n.llms-reporting.wrap th.last_seen, .llms-reporting.wrap td.last_seen,\n.llms-reporting.wrap th.overall_progress, .llms-reporting.wrap td.overall_progress,\n.llms-reporting.wrap th.title, .llms-reporting.wrap td.title,\n.llms-reporting.wrap th.course, .llms-reporting.wrap td.course,\n.llms-reporting.wrap th.lesson, .llms-reporting.wrap td.lesson {\n text-align: left;\n}\n.llms-reporting.wrap td.section-title {\n background: #eaeaea;\n text-align: left;\n font-weight: 700;\n padding: 16px 4px;\n}\n.llms-reporting.wrap td.questions-table {\n text-align: left;\n}\n.llms-reporting.wrap td.questions-table .correct,\n.llms-reporting.wrap td.questions-table .question,\n.llms-reporting.wrap td.questions-table .selected {\n text-align: left;\n max-width: 300px;\n}\n.llms-reporting.wrap td.questions-table .correct img,\n.llms-reporting.wrap td.questions-table .question img,\n.llms-reporting.wrap td.questions-table .selected img {\n height: auto;\n max-width: 64px;\n}\n.llms-reporting.wrap table.quiz-attempts {\n margin-bottom: 40px;\n}\n.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary {\n background: #e1e1e1;\n border-radius: 8px;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #414141;\n font-size: 13px;\n font-weight: 700;\n height: auto;\n padding: 8px 14px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary, .llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-bottom: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-options-page-contents, .llms-reporting.wrap.tab--sales .llms-options-page-contents {\n -webkit-box-shadow: none;\n box-shadow: none;\n background: none;\n margin-top: 20px;\n padding: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-item-align: center;\n align-self: center;\n color: #FFF;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n font-size: 13px;\n gap: 5px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label {\n font-weight: 700;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input {\n border: 0;\n font-size: 13px;\n margin: 0;\n padding: 0 4px;\n vertical-align: middle;\n width: 110px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input {\n width: 100% !important;\n}\n.llms-reporting.wrap.tab--enrollments .button.small, .llms-reporting.wrap.tab--sales .button.small {\n height: 23px;\n line-height: 23px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters, .llms-reporting.wrap.tab--sales .llms-analytics-filters {\n display: none;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap {\n background-color: #FFF;\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: -20px 10px 20px 10px;\n padding: 20px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n gap: 20px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n margin: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label {\n display: block;\n font-weight: 700;\n margin: 0 0 5px 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered {\n word-wrap: break-word;\n text-overflow: inherit;\n white-space: normal;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p, .llms-reporting.wrap.tab--sales .llms-analytics-filters p {\n margin: 0;\n text-align: right;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary, .llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary {\n display: inline-block;\n}\n.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap {\n width: 160px;\n}\n\n.llms-charts-wrapper {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n -webkit-box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n padding: 20px;\n}\n\n.llms-reporting-tab h1, .llms-reporting-tab h2, .llms-reporting-tab h3, .llms-reporting-tab h4, .llms-reporting-tab h5, .llms-reporting-tab h6 {\n margin: 0;\n}\n.llms-reporting-tab h1 a, .llms-reporting-tab h2 a, .llms-reporting-tab h3 a, .llms-reporting-tab h4 a, .llms-reporting-tab h5 a, .llms-reporting-tab h6 a {\n color: #466dd8;\n text-decoration: none;\n}\n.llms-reporting-tab h1 a:hover, .llms-reporting-tab h2 a:hover, .llms-reporting-tab h3 a:hover, .llms-reporting-tab h4 a:hover, .llms-reporting-tab h5 a:hover, .llms-reporting-tab h6 a:hover {\n color: #466dd8;\n}\n.llms-reporting-tab h2 {\n font-size: 22px;\n line-height: 1.5;\n}\n.llms-reporting-tab h2.llms-table-title {\n margin-bottom: 20px;\n}\n.llms-reporting-tab h5 {\n font-size: 15px;\n line-height: 1.5;\n}\n.llms-reporting-tab .llms-reporting-body {\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header {\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-gb-tab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header {\n padding: 30px;\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img {\n border-radius: 50%;\n display: inline-block;\n margin-right: 10px;\n overflow: hidden;\n vertical-align: middle;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img {\n display: block;\n max-height: 64px;\n width: auto;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info {\n display: inline-block;\n vertical-align: middle;\n}\n\n.llms-reporting-breadcrumbs {\n margin: 0;\n padding: 0;\n}\n.llms-reporting-breadcrumbs a {\n color: #466dd8;\n font-size: 15px;\n text-decoration: none;\n}\n.llms-reporting-breadcrumbs a:hover {\n color: #2b55cb;\n}\n.llms-reporting-breadcrumbs a:after {\n content: \" > \";\n color: #646970;\n}\n.llms-reporting-breadcrumbs a:last-child {\n color: #000;\n font-weight: 700;\n}\n.llms-reporting-breadcrumbs a:last-child:after {\n display: none;\n}\n\n#llms-students-table .name {\n text-align: left;\n}\n\n.llms-reporting-tab-content {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n.llms-reporting-tab-content > header:before, .llms-reporting-tab-content > header:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-tab-content > header:after {\n clear: both;\n}\n.llms-reporting-tab-content h3 {\n margin-bottom: 20px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-filter {\n float: right;\n position: relative;\n margin-right: 0.75em;\n width: 180px;\n top: -3px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-main {\n -webkit-box-flex: 3;\n -ms-flex: 3;\n flex: 3;\n max-width: 75%;\n}\n.llms-reporting-tab-content .llms-reporting-tab-side {\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin-left: 20px;\n}\n.llms-reporting-tab-content > .llms-table-wrap {\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n\n.llms-reporting-widgets:before, .llms-reporting-widgets:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widgets:after {\n clear: both;\n}\n\n.llms-reporting-widget {\n border-top: 4px solid #466dd8;\n background: #fafafa;\n margin-bottom: 10px;\n padding: 30px;\n}\n.llms-reporting-widget:before, .llms-reporting-widget:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widget:after {\n clear: both;\n}\n.llms-reporting-widget .fa {\n color: #999;\n float: left;\n font-size: 32px;\n margin-right: 10px;\n}\n.llms-reporting-widget strong {\n color: #333;\n font-size: 20px;\n line-height: 1.2;\n}\n.llms-reporting-widget.llms-reporting-student-address strong {\n line-height: 1.1;\n}\n.llms-reporting-widget sup,\n.llms-reporting-widget .llms-price-currency-symbol {\n font-size: 75%;\n position: relative;\n top: -4px;\n vertical-align: baseline;\n}\n.llms-reporting-widget small {\n font-size: 13px;\n}\n.llms-reporting-widget small.compare {\n margin-left: 5px;\n}\n.llms-reporting-widget small.compare.positive {\n color: #83c373;\n}\n.llms-reporting-widget small.compare.negative {\n color: #e5554e;\n}\n\n.llms-reporting-event {\n border-left: 4px solid #555;\n background: #fafafa;\n font-size: 11px;\n line-height: 1.2;\n margin-bottom: 0.75em;\n padding: 10px;\n}\n.llms-reporting-event:before, .llms-reporting-event:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-event:after {\n clear: both;\n}\n.llms-reporting-event.color--blue {\n border-left-color: #466dd8;\n}\n.llms-reporting-event.color--green, .llms-reporting-event._enrollment_trigger, .llms-reporting-event._is_complete.yes {\n border-left-color: #83c373;\n}\n.llms-reporting-event.color--purple, .llms-reporting-event._status.enrolled {\n border-left-color: #845ef7;\n}\n.llms-reporting-event.color--red, .llms-reporting-event._status.expired, .llms-reporting-event._status.cancelled {\n border-left-color: #e5554e;\n}\n.llms-reporting-event.color--orange, .llms-reporting-event._achievement_earned, .llms-reporting-event._certificate_earned, .llms-reporting-event._email_sent {\n border-left-color: #ff922b;\n}\n.llms-reporting-event time {\n color: #888;\n}\n.llms-reporting-event .llms-student-avatar {\n margin-left: 10px;\n float: right;\n}\n.llms-reporting-event a {\n text-decoration: none;\n color: inherit;\n}\n\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-left: 0;\n margin-right: 0;\n }\n}\n.llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n\n.wrap.llms-reporting .llms-inside-wrap,\n.wrap.lifterlms-settings .llms-inside-wrap,\n.wrap.llms-status .llms-inside-wrap {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,\n.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,\n.wrap.llms-status .llms-inside-wrap .llms-nav-text {\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-subheader .llms-save,\n.wrap.lifterlms-settings .llms-subheader .llms-save,\n.wrap.llms-status .llms-subheader .llms-save {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n text-align: right;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0 -20px 20px -10px;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover {\n background: #f0f0f1;\n color: #222222;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fafafa;\n color: #466dd8;\n border-top-color: #466dd8;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 700;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n border-top: 2px solid transparent;\n padding: 14px;\n}\n.wrap.llms-reporting .llms-setting-group,\n.wrap.lifterlms-settings .llms-setting-group,\n.wrap.llms-status .llms-setting-group {\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label,\n.wrap.lifterlms-settings .llms-setting-group .llms-label,\n.wrap.llms-status .llms-setting-group .llms-label {\n border-bottom: 1px solid #efefef;\n font-weight: 700;\n font-size: 20px;\n padding: 20px;\n margin: -20px -20px 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,\n.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,\n.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary {\n margin-left: 10px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons {\n color: #444;\n cursor: help;\n}\n.wrap.llms-reporting .llms-setting-group .form-table,\n.wrap.lifterlms-settings .llms-setting-group .form-table,\n.wrap.llms-status .llms-setting-group .form-table {\n margin: 0;\n}\n.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle {\n margin-top: 0;\n}\n.wrap.llms-reporting .llms-setting-group td[colspan=\"2\"],\n.wrap.lifterlms-settings .llms-setting-group td[colspan=\"2\"],\n.wrap.llms-status .llms-setting-group td[colspan=\"2\"] {\n padding-top: 0;\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,\n.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,\n.wrap.llms-status .llms-setting-group tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n.wrap.llms-reporting .llms-setting-group p,\n.wrap.lifterlms-settings .llms-setting-group p,\n.wrap.llms-status .llms-setting-group p {\n font-size: 14px;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text],\n.wrap.llms-reporting .llms-setting-group input[type=password],\n.wrap.llms-reporting .llms-setting-group input[type=datetime],\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local],\n.wrap.llms-reporting .llms-setting-group input[type=date],\n.wrap.llms-reporting .llms-setting-group input[type=month],\n.wrap.llms-reporting .llms-setting-group input[type=time],\n.wrap.llms-reporting .llms-setting-group input[type=week],\n.wrap.llms-reporting .llms-setting-group input[type=number],\n.wrap.llms-reporting .llms-setting-group input[type=email],\n.wrap.llms-reporting .llms-setting-group input[type=url],\n.wrap.llms-reporting .llms-setting-group input[type=search],\n.wrap.llms-reporting .llms-setting-group input[type=tel],\n.wrap.llms-reporting .llms-setting-group input[type=color],\n.wrap.llms-reporting .llms-setting-group select,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.lifterlms-settings .llms-setting-group input[type=text],\n.wrap.lifterlms-settings .llms-setting-group input[type=password],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],\n.wrap.lifterlms-settings .llms-setting-group input[type=date],\n.wrap.lifterlms-settings .llms-setting-group input[type=month],\n.wrap.lifterlms-settings .llms-setting-group input[type=time],\n.wrap.lifterlms-settings .llms-setting-group input[type=week],\n.wrap.lifterlms-settings .llms-setting-group input[type=number],\n.wrap.lifterlms-settings .llms-setting-group input[type=email],\n.wrap.lifterlms-settings .llms-setting-group input[type=url],\n.wrap.lifterlms-settings .llms-setting-group input[type=search],\n.wrap.lifterlms-settings .llms-setting-group input[type=tel],\n.wrap.lifterlms-settings .llms-setting-group input[type=color],\n.wrap.lifterlms-settings .llms-setting-group select,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.llms-status .llms-setting-group input[type=text],\n.wrap.llms-status .llms-setting-group input[type=password],\n.wrap.llms-status .llms-setting-group input[type=datetime],\n.wrap.llms-status .llms-setting-group input[type=datetime-local],\n.wrap.llms-status .llms-setting-group input[type=date],\n.wrap.llms-status .llms-setting-group input[type=month],\n.wrap.llms-status .llms-setting-group input[type=time],\n.wrap.llms-status .llms-setting-group input[type=week],\n.wrap.llms-status .llms-setting-group input[type=number],\n.wrap.llms-status .llms-setting-group input[type=email],\n.wrap.llms-status .llms-setting-group input[type=url],\n.wrap.llms-status .llms-setting-group input[type=search],\n.wrap.llms-status .llms-setting-group input[type=tel],\n.wrap.llms-status .llms-setting-group input[type=color],\n.wrap.llms-status .llms-setting-group select,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area) {\n width: 50%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].medium,\n.wrap.llms-reporting .llms-setting-group input[type=password].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-reporting .llms-setting-group input[type=date].medium,\n.wrap.llms-reporting .llms-setting-group input[type=month].medium,\n.wrap.llms-reporting .llms-setting-group input[type=time].medium,\n.wrap.llms-reporting .llms-setting-group input[type=week].medium,\n.wrap.llms-reporting .llms-setting-group input[type=number].medium,\n.wrap.llms-reporting .llms-setting-group input[type=email].medium,\n.wrap.llms-reporting .llms-setting-group input[type=url].medium,\n.wrap.llms-reporting .llms-setting-group input[type=search].medium,\n.wrap.llms-reporting .llms-setting-group input[type=tel].medium,\n.wrap.llms-reporting .llms-setting-group input[type=color].medium,\n.wrap.llms-reporting .llms-setting-group select.medium,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,\n.wrap.lifterlms-settings .llms-setting-group select.medium,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.llms-status .llms-setting-group input[type=text].medium,\n.wrap.llms-status .llms-setting-group input[type=password].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-status .llms-setting-group input[type=date].medium,\n.wrap.llms-status .llms-setting-group input[type=month].medium,\n.wrap.llms-status .llms-setting-group input[type=time].medium,\n.wrap.llms-status .llms-setting-group input[type=week].medium,\n.wrap.llms-status .llms-setting-group input[type=number].medium,\n.wrap.llms-status .llms-setting-group input[type=email].medium,\n.wrap.llms-status .llms-setting-group input[type=url].medium,\n.wrap.llms-status .llms-setting-group input[type=search].medium,\n.wrap.llms-status .llms-setting-group input[type=tel].medium,\n.wrap.llms-status .llms-setting-group input[type=color].medium,\n.wrap.llms-status .llms-setting-group select.medium,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium {\n width: 30%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].small,\n.wrap.llms-reporting .llms-setting-group input[type=password].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-reporting .llms-setting-group input[type=date].small,\n.wrap.llms-reporting .llms-setting-group input[type=month].small,\n.wrap.llms-reporting .llms-setting-group input[type=time].small,\n.wrap.llms-reporting .llms-setting-group input[type=week].small,\n.wrap.llms-reporting .llms-setting-group input[type=number].small,\n.wrap.llms-reporting .llms-setting-group input[type=email].small,\n.wrap.llms-reporting .llms-setting-group input[type=url].small,\n.wrap.llms-reporting .llms-setting-group input[type=search].small,\n.wrap.llms-reporting .llms-setting-group input[type=tel].small,\n.wrap.llms-reporting .llms-setting-group input[type=color].small,\n.wrap.llms-reporting .llms-setting-group select.small,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].small,\n.wrap.lifterlms-settings .llms-setting-group select.small,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.llms-status .llms-setting-group input[type=text].small,\n.wrap.llms-status .llms-setting-group input[type=password].small,\n.wrap.llms-status .llms-setting-group input[type=datetime].small,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-status .llms-setting-group input[type=date].small,\n.wrap.llms-status .llms-setting-group input[type=month].small,\n.wrap.llms-status .llms-setting-group input[type=time].small,\n.wrap.llms-status .llms-setting-group input[type=week].small,\n.wrap.llms-status .llms-setting-group input[type=number].small,\n.wrap.llms-status .llms-setting-group input[type=email].small,\n.wrap.llms-status .llms-setting-group input[type=url].small,\n.wrap.llms-status .llms-setting-group input[type=search].small,\n.wrap.llms-status .llms-setting-group input[type=tel].small,\n.wrap.llms-status .llms-setting-group input[type=color].small,\n.wrap.llms-status .llms-setting-group select.small,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small {\n width: 20%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=password].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=date].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=month].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=time].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=week].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=number].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=email].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=url].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=search].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=color].tiny,\n.wrap.llms-reporting .llms-setting-group select.tiny,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,\n.wrap.lifterlms-settings .llms-setting-group select.tiny,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.llms-status .llms-setting-group input[type=text].tiny,\n.wrap.llms-status .llms-setting-group input[type=password].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-status .llms-setting-group input[type=date].tiny,\n.wrap.llms-status .llms-setting-group input[type=month].tiny,\n.wrap.llms-status .llms-setting-group input[type=time].tiny,\n.wrap.llms-status .llms-setting-group input[type=week].tiny,\n.wrap.llms-status .llms-setting-group input[type=number].tiny,\n.wrap.llms-status .llms-setting-group input[type=email].tiny,\n.wrap.llms-status .llms-setting-group input[type=url].tiny,\n.wrap.llms-status .llms-setting-group input[type=search].tiny,\n.wrap.llms-status .llms-setting-group input[type=tel].tiny,\n.wrap.llms-status .llms-setting-group input[type=color].tiny,\n.wrap.llms-status .llms-setting-group select.tiny,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny {\n width: 10%;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fff;\n }\n}\n.wrap.llms-reporting #llms-mailhawk-connect,\n.wrap.lifterlms-settings #llms-mailhawk-connect,\n.wrap.llms-status #llms-mailhawk-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-mailhawk-connect .dashicons,\n.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,\n.wrap.llms-status #llms-mailhawk-connect .dashicons {\n margin: -4px 4px 0 0;\n vertical-align: middle;\n}\n.wrap.llms-reporting #llms-sendwp-connect,\n.wrap.lifterlms-settings #llms-sendwp-connect,\n.wrap.llms-status #llms-sendwp-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-sendwp-connect .fa,\n.wrap.lifterlms-settings #llms-sendwp-connect .fa,\n.wrap.llms-status #llms-sendwp-connect .fa {\n margin-right: 4px;\n}\n\n@media only screen and (min-width: 782px) {\n .wrap.lifterlms-settings .llms-subheader {\n height: 40px;\n position: sticky;\n top: 32px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n}\n.wrap.llms-dashboard .llms-inside-wrap {\n padding-top: 30px;\n}\n.wrap.llms-dashboard #poststuff h2 {\n padding: 12px 20px;\n}\n.wrap.llms-dashboard .llms-dashboard-activity h2 {\n font-size: 20px;\n font-weight: 700;\n line-height: 1.5;\n margin-top: 0;\n text-align: center;\n}\n.wrap.llms-dashboard .postbox {\n background-color: #FFF;\n border: none;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n}\n.wrap.llms-dashboard .postbox .postbox-header {\n border-bottom-color: #efefef;\n}\n.wrap.llms-dashboard .postbox .inside {\n padding: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p {\n text-align: left;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions {\n padding-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p {\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary {\n display: inline-block;\n margin-top: 15px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul {\n list-style: disc;\n margin: 5px 0 0 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul li {\n font-size: 15px;\n line-height: 1.5;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n display: grid;\n grid-template-columns: 1fr;\n grid-gap: 30px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a {\n display: inline-block;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3 {\n margin: 0 0 10px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul {\n margin-bottom: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist {\n list-style: none;\n margin-left: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa {\n text-align: center;\n width: 16px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check {\n color: #008a20;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times {\n color: #d63638;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action {\n display: block;\n text-align: center;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n grid-template-columns: 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n display: grid;\n grid-template-columns: 1fr 1fr;\n grid-gap: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons {\n color: #AAA;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n grid-template-columns: 1fr 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul,\n.wrap.llms-dashboard #llms_dashboard_podcast ul {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li {\n margin: 0 0 15px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li a,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li a {\n display: block;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p,\n.wrap.llms-dashboard #llms_dashboard_podcast p {\n margin: 15px 0;\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p a,\n.wrap.llms-dashboard #llms_dashboard_podcast p a {\n display: inline-block;\n}\n\n#llms_dashboard_widget .inside {\n margin: 0;\n padding-bottom: 8px;\n}\n#llms_dashboard_widget .llms-dashboard-widget-wrap {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n padding-top: 12px;\n}\n#llms_dashboard_widget .activity-block {\n padding-bottom: 8px;\n border-color: #e8e8e8;\n}\n#llms_dashboard_widget h3 {\n margin-bottom: 0;\n}\n#llms_dashboard_widget .llms-charts-wrapper {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n gap: 8px;\n width: 100%;\n -webkit-box-align: stretch;\n -ms-flex-align: stretch;\n align-items: stretch;\n padding: 4px 0;\n}\n#llms_dashboard_widget .llms-widget-row:before, #llms_dashboard_widget .llms-widget-row:after {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-1-4 {\n padding: 0;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n#llms_dashboard_widget .llms-widget {\n padding: 8px 8px 12px;\n margin: 0;\n border-radius: 6px;\n border: 1px solid #e8e8e8;\n -webkit-box-shadow: 0px 2px 4px rgb(246, 247, 247);\n box-shadow: 0px 2px 4px rgb(246, 247, 247);\n height: 100%;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n -webkit-box-align: end;\n -ms-flex-align: end;\n align-items: flex-end;\n}\n#llms_dashboard_widget .llms-label {\n font-size: 14px;\n width: 100%;\n -ms-flex-item-align: start;\n align-self: flex-start;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n#llms_dashboard_widget .llms-widget-content {\n font-size: 20px;\n margin: 0;\n}\n#llms_dashboard_widget .llms-widget-info-toggle {\n display: none;\n}\n#llms_dashboard_widget a {\n border: 0;\n}\n#llms_dashboard_widget .subsubsub {\n color: #dcdcde;\n}\n\n.llms-dashboard-widget-feed {\n margin: 0 -12px;\n padding: 0;\n background-color: #f6f7f7;\n}\n.llms-dashboard-widget-feed li {\n margin: 0;\n padding: 8px 12px;\n border-bottom: 1px solid #e8e8e8;\n}\n.llms-dashboard-widget-feed span {\n display: block;\n}\n\n.llms-remarks .llms-remarks-field {\n height: 120px;\n width: 100%;\n}\n.llms-remarks input[type=number] {\n width: 60px;\n}\n\nbutton[name=llms_quiz_attempt_action] .save {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .default {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .save {\n display: inline;\n}\n\n.llms-form-fields {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n -webkit-box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n -webkit-transition: width 0.4s ease;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n/*# sourceMappingURL=../maps/css/admin.css.map */\n"],"sourceRoot":"../../css"} \ No newline at end of file +{"version":3,"sources":["admin.css"],"names":[],"mappings":"AAAA,kbACA,WAWE,CAAA,aACA,CAAA,sNAEF,UAME,CAAA,oFAGF,WAIE,CAAA,iBACA,CAAA,aACA,CAAA,cACA,CAAA,cACA,CAAA,eACA,CAAA,oBACA,CAAA,gBACA,CAAA,aACA,CAAA,QACA,CAAA,cACA,CAAA,iBACA,CAAA,iBACA,CAAA,+BACA,CAAA,uBACA,CAAA,wHAEF,UAIE,CAAA,4NAEF,aAOE,CAAA,4GAEF,aAIE,CAAA,wGAEF,UAIE,CAAA,wGAEF,aAIE,CAAA,iBACA,CAAA,UACA,CAAA,gHAEF,YAIE,CAAA,4GAEF,cAIE,CAAA,gBACA,CAAA,wIAEF,WAIE,CAAA,4GAEF,cAIE,CAAA,eACA,CAAA,iBACA,CAAA,wIAEF,YAIE,CAAA,4HAEF,SAIE,CAAA,iBACA,CAAA,qBAGF,kBACE,CAAA,wDAEF,kBACE,CAAA,uDAEF,kBACE,CAAA,uBAGF,kBACE,CAAA,aACA,CAAA,6BAEF,aACE,CAAA,kBACA,CAAA,2DAEF,aACE,CAAA,kBACA,CAAA,oBAGF,kBACE,CAAA,sDAEF,kBACE,CAAA,qDAEF,kBACE,CAAA,oBAGF,kBACE,CAAA,0BAEF,kBACE,CAAA,qDAEF,kBACE,CAAA,qBAGF,wBACE,CAAA,wBACA,CAAA,iBACA,CAAA,aACA,CAAA,cACA,CAAA,cACA,CAAA,eACA,CAAA,oBACA,CAAA,gBACA,CAAA,aACA,CAAA,QACA,CAAA,cACA,CAAA,iBACA,CAAA,iBACA,CAAA,+BACA,CAAA,uBACA,CAAA,8BAEF,UACE,CAAA,uDAEF,aACE,CAAA,2BAEF,aACE,CAAA,0BAEF,UACE,CAAA,0BAEF,aACE,CAAA,iBACA,CAAA,UACA,CAAA,4BAEF,YACE,CAAA,6YAGF,iBAYE,CAAA,qpBAEF,WAYE,CAAA,UACA,CAAA,6tBAEF,uBAYE,CAAA,yoBAEF,qBAYE,CAAA,QACA,CAAA,KACA,CAAA,itBAEF,QAYE,CAAA,yoBAEF,WAYE,CAAA,WACA,CAAA,itBAEF,uBAYE,CAAA,6nBAEF,qBAYE,CAAA,SACA,CAAA,KACA,CAAA,qsBAEF,QAYE,CAAA,6qBAEF,QAYE,CAAA,WACA,CAAA,qvBAEF,oBAYE,CAAA,iqBAEF,wBAYE,CAAA,SACA,CAAA,QACA,CAAA,yuBAEF,WAYE,CAAA,yrBAEF,QAYE,CAAA,UACA,CAAA,iwBAEF,oBAYE,CAAA,6qBAEF,wBAYE,CAAA,QACA,CAAA,QACA,CAAA,qvBAEF,WAYE,CAAA,ieAEF,eAYE,CAAA,iBACA,CAAA,UACA,CAAA,cACA,CAAA,eACA,CAAA,WACA,CAAA,eACA,CAAA,yBACA,CAAA,sBACA,CAAA,iBACA,CAAA,qdAEF,UAYE,CAAA,8BACA,CAAA,QACA,CAAA,OACA,CAAA,s7BAEF,SAuBE,CAAA,mCACA,CAAA,2BACA,CAAA,iBACA,CAAA,mBACA,CAAA,iBACA,CAAA,skCAEF,SAuBE,CAAA,mCACA,CAAA,2BACA,CAAA,kBACA,CAAA,gBACA,CAAA,uIAEF,sBAIE,CAAA,mKAEF,6BAIE,CAAA,uDAGF,eACE,CAAA,UACA,CAAA,oaAEF,aAME,CAAA,UAQF,WACE,CAAA,0BACA,CAAA,gBAGF,UACE,CAAA,yBASF,OACE,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,UACR,CAAA,eACA,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,YACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,YACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,SAEF,iBACE,CAAA,UAEF,iBACE,CAAA,QAEF,iBACE,CAAA,SAEF,gBACE,CAAA,UAEF,iBACE,CAAA,QAEF,eACE,CAAA,CAAA,gDAIJ,OACE,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,UACR,CAAA,eACA,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,YACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,YACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,SAEF,gBACE,CAAA,UAEF,iBACE,CAAA,QAEF,eACE,CAAA,CAAA,0BAIJ,OACE,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,UACR,CAAA,eACA,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,YACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,YACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,oBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,oBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,iBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,iBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,iBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,iBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,iBACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,WACR,CAAA,QAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,oBACR,CAAA,SAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,SACR,CAAA,SAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,mBACR,CAAA,SAEF,UACE,CAAA,mBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,WACR,CAAA,SAEF,gBACE,CAAA,UAEF,iBACE,CAAA,QAEF,eACE,CAAA,CAAA,6CAQJ,4BACE,CAAA,aACA,CAAA,0CAEF,sBACE,CAAA,2BACA,CAAA,sBACA,CAAA,uBACA,CAAA,kCACA,CAAA,0BACQ,CAAA,mBACR,CAAA,wBACA,CAAA,6BACA,CAAA,eACA,CAAA,sBACA,CAAA,cACA,CAAA,gDAEF,6BACE,CAAA,iDAEF,6BACE,CAAA,uCAGF,0BACE,CAAA,WACA,CAAA,oBACA,CAAA,aACA,CAAA,cACA,CAAA,6CAEF,aACE,CAAA,6CAEF,aACE,CAAA,aAMF,iBACE,CAAA,0BAEF,iBACE,CAAA,mBACA,CAAA,iBACA,CAAA,gCAEF,6BACE,CAAA,qBACQ,CAAA,aACR,CAAA,iBACA,CAAA,cACA,CAAA,YACA,CAAA,wBACA,CAAA,qBACG,CAAA,oBACC,CAAA,gBACI,CAAA,2CAEV,wBACE,CAAA,kBACA,CAAA,WACA,CAAA,UACA,CAAA,mGAEF,6BAEE,CAAA,qBACQ,CAAA,UACR,CAAA,aACA,CAAA,iBACA,CAAA,iCACA,CAAA,yBACA,CAAA,mDAEF,oBACE,CAAA,wBACA,CAAA,iDAEF,WACE,CAAA,QACA,CAAA,OACA,CAAA,wBACA,CAAA,iBACA,CAAA,6BACA,CAAA,qBACA,CAAA,UACA,CAAA,SACA,CAAA,yDAEF,wBACE,CAAA,gBACA,CAAA,kDAEF,UACE,CAAA,OACA,CAAA,wBACA,CAAA,iBACA,CAAA,SACA,CAAA,SACA,CAAA,SACA,CAAA,0DAEF,oBACE,CAAA,eACA,CAAA,QACA,CAAA,UACA,CAAA,SACA,CAAA,qBAGF,aACE,CAAA,sCAEF,cACE,CAAA,2BAEF,aACE,CAAA,gBACA,CAAA,iBACA,CAAA,yDAEF,eACE,CAAA,mBACA,CAAA,SACA,CAAA,yDAEF,oBACE,CAAA,eACA,CAAA,UACA,CAAA,4BAEF,cACE,CAAA,sBAGF,kBACE,CAAA,aACA,CAAA,aACA,CAAA,eACA,CAAA,oBACA,CAAA,+BACA,CAAA,uBACA,CAAA,4BAEF,kBACE,CAAA,yEAGF,UAEE,CAAA,wBACA,CAAA,8JAEF,WAGE,CAAA,qFAEF,wBAEE,CAAA,UACA,CAAA,2FAEF,iBAEE,CAAA,+EAEF,6BAEE,CAAA,+GAEF,wBAEE,CAAA,qFAEF,WAEE,CAAA,2HAEF,4BAEE,CAAA,kCAGF,UACE,CAAA,wBACA,CAAA,0EAEF,WACE,CAAA,wCAEF,wBACE,CAAA,UACA,CAAA,qDAEF,wBACE,CAAA,6CAEF,oBACE,CAAA,cACA,CAAA,mCAEF,cACE,CAAA,iDAEF,WACE,CAAA,iBACA,CAAA,+CAEF,UACE,CAAA,oDAEF,WACE,CAAA,qEAEF,UACE,CAAA,uDAGF,UACE,CAAA,yDAEF,iBACE,CAAA,yDAEF,UACE,CAAA,aACA,CAAA,0EAEF,UACE,CAAA,2DAEF,QACE,CAAA,oCAEF,WACE,CAAA,iBAGF,aACE,CAAA,aAGF,qBACE,CAAA,wBACA,CAAA,kBACA,CAAA,+EACA,CAAA,uEACQ,CAAA,6BACR,CAAA,qBACQ,CAAA,kBACR,CAAA,YACA,CAAA,iBACA,CAAA,UACA,CAAA,iBAEF,qBACE,CAAA,wBACA,CAAA,kBACA,CAAA,6BAEF,UACE,CAAA,cACA,CAAA,kBACA,CAAA,kBACA,CAAA,oBAEF,UACE,CAAA,eACA,CAAA,eAEF,gCACE,CAAA,oBACA,CAAA,oBACA,CAAA,qBAEF,gCACE,CAAA,kCAEF,cACE,CAAA,aACA,CAAA,eACA,CAAA,eACA,CAAA,aACA,CAAA,oBACA,CAAA,gBAEF,eACE,CAAA,yBAEF,6BACE,CAAA,qBACQ,CAAA,cACR,CAAA,eACA,CAAA,iBACA,CAAA,iBACA,CAAA,yBAEF,UACE,CAAA,YACA,CAAA,6BACA,CAAA,qBACQ,CAAA,sBAEV,wBACE,CAAA,4BAEF,eACE,CAAA,sBAEF,UACE,CAAA,QACA,CAAA,sBACA,CAAA,iBACA,CAAA,OACA,CAAA,SACA,CAAA,+BAEF,kBACE,CAAA,QACA,CAAA,UACA,CAAA,MACA,CAAA,UACA,CAAA,iBACA,CAAA,OACA,CAAA,KACA,CAAA,SACA,CAAA,iCAEF,kBACE,CAAA,6BAEF,cACE,CAAA,oCAEF,UACE,CAAA,mBACA,CAAA,mDAGF,iBAGE,CAAA,sCAGF,UACE,CAAA,cACA,CAAA,cACA,CAAA,iBACA,CAAA,UACA,CAAA,QACA,CAAA,4CAEF,aACE,CAAA,kBAGF,eACE,CAAA,aACA,CAAA,YACA,CAAA,YACA,CAAA,YACA,CAAA,iBACA,CAAA,iBACA,CAAA,SACA,CAAA,UACA,CAAA,SACA,CAAA,yBAEF,UACE,CAAA,+BACA,CAAA,wBACA,CAAA,QACA,CAAA,iBACA,CAAA,iBACA,CAAA,SACA,CAAA,oBAEF,QACE,CAAA,+CAGF,WACE,CAAA,aACA,CAAA,uBAEF,UACE,CAAA,6BAGF,oBACE,CAAA,SAQF,WACE,CAAA,UACA,CAAA,oBACA,CAAA,iBACA,CAAA,uBACA,CAAA,gBAEF,WACE,CAAA,UACA,CAAA,qBACA,CAAA,sCACA,CAAA,8BACQ,CAAA,WACR,CAAA,mBAEF,WACE,CAAA,UACA,CAAA,oBACA,CAAA,iBACA,CAAA,0BACA,CAAA,iBACA,CAAA,mBAEF,WACE,CAAA,UACA,CAAA,qBACA,CAAA,sBAEF,WACE,CAAA,UACA,CAAA,0BACA,CAAA,qBAEF,WACE,CAAA,UACA,CAAA,0BACA,CAAA,0BAEF,WACE,CAAA,UACA,CAAA,qBACA,CAAA,mBAEF,WACE,CAAA,UACA,CAAA,qBACA,CAAA,sBAEF,aACE,CAAA,uBAEF,UACE,CAAA,qBAEF,WACE,CAAA,UACA,CAAA,0BACA,CAAA,cACA,CAAA,wBAEF,aACE,CAAA,yBAEF,UACE,CAAA,sBAEF,+BACE,CAAA,uBACQ,CAAA,QAEV,mBACE,CAAA,6BAQF,SACE,CAAA,gCAGF,YACE,CAAA,qBACA,CAAA,cACA,CAAA,qEAEF,iBACE,CAAA,wEAEF,cACE,CAAA,QACA,CAAA,gGAEF,UACE,CAAA,mFAEF,QACE,CAAA,gBACA,CAAA,4EAEF,eACE,CAAA,gBACA,CAAA,4CAEF,UACE,CAAA,yDAEF,eACE,CAAA,4CAGF,eACE,CAAA,2CAGF,iBACE,CAAA,UAWF,YACE,CAAA,iBACA,CAAA,qBACA,CAAA,eACA,CAAA,eACA,CAAA,WACA,CAAA,eACA,CAAA,kBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,2CACR,CAAA,mCACQ,CAAA,qBACR,CAAA,iBACA,CAAA,qBACA,CAAA,eAGF,WACE,CAAA,cACA,CAAA,iBACA,CAAA,eACA,CAAA,mBAGF,YACE,CAAA,aACA,CAAA,iBACA,CAAA,cACA,CAAA,gBACA,CAAA,OACA,CAAA,QACA,CAAA,MACA,CAAA,gCACA,CAAA,qBACA,CAAA,wBACA,CAAA,yCACA,CAAA,yBACA,CAAA,oBAGF,YACE,CAAA,eACA,CAAA,cACA,CAAA,WACA,CAAA,UACA,CAAA,gBACA,CAAA,MACA,CAAA,wBACA,CAAA,yBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,aACR,CAAA,iBACA,CAAA,gBAGF,eACE,CAAA,mBAGF,2BACE,CAAA,0BACA,CAAA,kBACA,CAAA,UACA,CAAA,iBACA,CAAA,cACA,CAAA,uBAGF,UACE,CAAA,WACA,CAAA,YACA,CAAA,oBAGF,YACE,CAAA,uBAEF,YACE,CAAA,oBAMF,YACE,CAAA,kCAEF,UACE,CAAA,+iBAEF,qBAgBE,CAAA,iBACA,CAAA,qBACA,CAAA,iBACA,CAAA,cACA,CAAA,eACA,CAAA,UACA,CAAA,eACA,CAAA,qBACA,CAAA,qBACA,CAAA,iBACA,CAAA,YACA,CAAA,4CACA,CAAA,oCACA,CAAA,+oBAEF,kBAgBE,CAAA,wBACA,CAAA,0BAEF,uBACE,CAAA,uBACA,CAAA,iBACA,CAAA,qBACA,CAAA,eACA,CAAA,YACA,CAAA,6BACA,CAAA,qBACQ,CAAA,gCAEV,kBACE,CAAA,wBACA,CAAA,yDAEF,iBACE,CAAA,qBACA,CAAA,eACA,CAAA,qBACA,CAAA,UACA,CAAA,6BACA,CAAA,YACA,CAAA,6BACA,CAAA,qBACQ,CAAA,6BACR,CAAA,qBACQ,CAAA,gBACR,CAAA,iBACA,CAAA,+DAEF,kBACE,CAAA,wBACA,CAAA,+DAEF,cACE,CAAA,iDAEF,qBACE,CAAA,uDAEF,wBACE,CAAA,wBACA,CAAA,uDAEF,gBACE,CAAA,8EAEF,iBACE,CAAA,eACA,CAAA,sBACA,CAAA,cACA,CAAA,iCACA,CAAA,yBACQ,CAAA,wFAEV,UACE,CAAA,8BAGF,eACE,CAAA,+BAGF,qBACE,CAAA,mCAEF,gBACE,CAAA,iBACA,CAAA,OACA,CAAA,UACA,CAAA,qCAEF,iBACE,CAAA,4CAGF,WACE,CAAA,QACA,CAAA,yBAGF,cACE,CAAA,iBACA,CAAA,kBAGF,kBACE,CAAA,qBACA,CAAA,iBACA,CAAA,+BACA,CAAA,uBACQ,CAAA,UACR,CAAA,YACA,CAAA,QACA,CAAA,eACA,CAAA,iBACA,CAAA,QACA,CAAA,WACA,CAAA,qBAEF,QACE,CAAA,SACA,CAAA,qBAEF,cACE,CAAA,QACA,CAAA,0BACA,CAAA,4BACA,CAAA,2BAEF,aACE,CAAA,kBACA,CAAA,yBAEF,aACE,CAAA,WACA,CAAA,oCAQF,aAEE,CAAA,UACA,CAAA,qCAGF,UACE,CAAA,2CAEF,oBACE,CAAA,SACA,CAAA,eACA,CAAA,wDAEF,oBACE,CAAA,uBAGF,aACE,CAAA,UACA,CAAA,gCAGF,UACE,CAAA,kBACA,CAAA,kCAEF,oBACE,CAAA,UACA,CAAA,eACA,CAAA,wCAEF,UACE,CAAA,qCAEF,UACE,CAAA,oBACA,CAAA,kBACA,CAAA,sDAEF,UACE,CAAA,WAEF,aACE,CAAA,0CAGF,kCAME,SACE,CAAA,CAAA,0CAGJ,WAME,oBACE,CAAA,cAEF,oBACE,CAAA,SACA,CAAA,uBAEF,oBACE,CAAA,SACA,CAAA,gCAEF,SACE,CAAA,eACA,CAAA,wCAEF,SACE,CAAA,eACA,CAAA,qCAEF,WACE,CAAA,iDAEF,eACE,CAAA,qeAEF,SAgBE,CAAA,qlBAEF,SAgBE,CAAA,qkBAEF,SAgBE,CAAA,qjBAEF,SAgBE,CAAA,CAAA,2CAGJ,cAME,oBACE,CAAA,aACA,CAAA,uBAEF,oBACE,CAAA,SACA,CAAA,gCAEF,oBACE,CAAA,WACA,CAAA,4CAEF,eACE,CAAA,wCAEF,oBACE,CAAA,WACA,CAAA,oDAEF,eACE,CAAA,0DAEF,eACE,CAAA,qCAEF,WACE,CAAA,iDAEF,eACE,CAAA,+CAEF,WACE,CAAA,aACA,CAAA,uBAEF,UACE,CAAA,kCAEF,kBACE,CAAA,SACA,CAAA,UACA,CAAA,6BACA,CAAA,qBACQ,CAAA,aACR,CAAA,kCAEF,kBACE,CAAA,SACA,CAAA,UACA,CAAA,6BACA,CAAA,qBACQ,CAAA,aACR,CAAA,kCAEF,WACE,CAAA,UACA,CAAA,6BACA,CAAA,qBACQ,CAAA,aACR,CAAA,kCAEF,SACE,CAAA,UACA,CAAA,6BACA,CAAA,qBACQ,CAAA,aACR,CAAA,kBACA,CAAA,CAAA,2CAGJ,6CAME,UAEE,CAAA,WACA,CAAA,CAAA,gBAGJ,YACE,CAAA,aAGF,qBACE,CAAA,kBACA,CAAA,iBACA,CAAA,iBACA,CAAA,SACA,CAAA,+BAEF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,cACA,CAAA,6BAEF,kBACE,CAAA,kBACI,CAAA,cACI,CAAA,eACR,CAAA,iBACA,CAAA,wBAEF,0BACE,CAAA,iBACI,CAAA,mBACJ,CAAA,mBACA,CAAA,YACA,CAAA,kBACA,CAAA,UACI,CAAA,MACI,CAAA,cACR,CAAA,wBACA,CAAA,qBACI,CAAA,6BACI,CAAA,eACR,CAAA,sCAEF,wBACE,CAAA,UACA,CAAA,mBACA,CAAA,cACA,CAAA,eACA,CAAA,gBACA,CAAA,0BAEF,oBACE,CAAA,sCAEF,2BACE,CAAA,eACA,CAAA,iBACA,CAAA,kBACA,CAAA,wCAEF,oBACE,CAAA,+CAEF,WACE,CAAA,oBACA,CAAA,yBACA,CAAA,MACA,CAAA,iBACA,CAAA,iBACA,CAAA,oBACA,CAAA,0BACA,CAAA,0DAEF,UACE,CAAA,iEAEF,WACE,CAAA,4DAEF,aACE,CAAA,mEAEF,WACE,CAAA,sCAEF,eACE,CAAA,wCAEF,aACE,CAAA,oBACA,CAAA,gBAGF,wBACE,CAAA,qBACI,CAAA,kBACI,CAAA,qBACR,CAAA,4CACA,CAAA,oCACQ,CAAA,mBACR,CAAA,mBACA,CAAA,YACA,CAAA,6BACA,CAAA,4BACA,CAAA,sBACI,CAAA,kBACI,CAAA,iBACR,CAAA,iBACA,CAAA,UACA,CAAA,SACA,CAAA,mBAEF,eACE,CAAA,SACA,CAAA,qBAEF,aACE,CAAA,oBACA,CAAA,wBAGF,eACE,CAAA,4BAGF,UACE,CAAA,OAGF,UACE,CAAA,UACA,CAAA,GAGF,qBACE,CAAA,WACA,CAAA,UACA,CAAA,aACA,CAAA,SACA,CAAA,wDAGF,WACE,CAAA,wDAGF,WACE,CAAA,4BAGF,gBACE,CAAA,0BAGF,qBACE,CAAA,wBACA,CAAA,4CACA,CAAA,oCACQ,CAAA,mBACR,CAAA,mBACA,CAAA,YACA,CAAA,oBACA,CAAA,iBACA,CAAA,0CAEF,oBACE,CAAA,yCAEF,6BACE,CAAA,iEAEF,wBACE,CAAA,sCAEF,6BACE,CAAA,yCAEF,aACE,CAAA,8DAEF,wBACE,CAAA,yCAEF,6BACE,CAAA,4CAEF,aACE,CAAA,iEAEF,wBACE,CAAA,uCAEF,6BACE,CAAA,0CAEF,aACE,CAAA,+DAEF,wBACE,CAAA,kDAEF,kEACE,CAAA,iCACA,CAAA,2BACA,CAAA,oBACA,CAAA,cACA,CAAA,qDAEF,UACE,CAAA,YACA,CAAA,6BAEF,cACE,CAAA,eACA,CAAA,gBACA,CAAA,iBACA,CAAA,gFAEF,oBAEE,CAAA,4BAEF,cACE,CAAA,gBACA,CAAA,iBACA,CAAA,cACA,CAAA,SACA,CAAA,yCAEF,eACE,CAAA,wJAGF,cAIE,CAAA,WACA,CAAA,UACA,CAAA,4GAEF,uBAIE,CAAA,eACQ,CAAA,eAGV,aACE,CAAA,gBACA,CAAA,0BAGF,eACE,CAAA,qBACA,CAAA,UACA,CAAA,gCAGF,YACE,CAAA,iBAGF,eACE,CAAA,wBACA,CAAA,4CACA,CAAA,oCACQ,CAAA,aACR,CAAA,YACA,CAAA,qBAEF,qBACE,CAAA,QACA,CAAA,SACA,CAAA,oBACA,CAAA,gCAGF,eACE,CAAA,wBACA,CAAA,4CACA,CAAA,oCACQ,CAAA,sEAEV,YACE,CAAA,kBACA,CAAA,mCAEF,SACE,CAAA,kCAEF,eACE,CAAA,YAGF,aACE,CAAA,iBACA,CAAA,mBAGF,aACE,CAAA,oBACA,CAAA,qCAGF,aACE,QACE,CAAA,+BAEF,2BACE,CAAA,4BACA,CAAA,yBACI,CAAA,qBACI,CAAA,QACR,CAAA,+CAEF,0BACE,CAAA,iBACI,CAAA,wBACJ,CAAA,gBACI,CAAA,YACI,CAAA,kBACR,CAAA,eACA,CAAA,0CAEF,uBACE,CAAA,oBACG,CAAA,eACK,CAAA,CAAA,iBAGZ,iBACE,CAAA,mBAGF,SACE,CAAA,mDAEF,WACE,CAAA,aACA,CAAA,yBAEF,UACE,CAAA,sBAEF,cACE,CAAA,SACA,CAAA,oBACA,CAAA,eACA,CAAA,iBACA,CAAA,qBACA,CAAA,6EAEF,WAEE,CAAA,iBACA,CAAA,4CAEF,QACE,CAAA,aACA,CAAA,YAGF,wBACE,CAAA,wBACA,CAAA,UACA,CAAA,0BAEF,aACE,CAAA,gCAEF,aACE,CAAA,8BAEF,+BACE,CAAA,iBACA,CAAA,iBACA,CAAA,kEAEF,YACE,CAAA,gSAEF,oBAOE,CAAA,oCAEF,eACE,CAAA,0CAEF,qBAEE,CAAA,eACA,CAAA,0EAEF,kBAEE,CAAA,iBACA,CAAA,oBACA,CAAA,UACA,CAAA,oIAEF,SAEE,CAAA,oIAEF,SAEE,CAAA,kIAEF,SAEE,CAAA,oIAEF,SAEE,CAAA,gIAEF,SAEE,CAAA,kIAEF,SAEE,CAAA,gGAEF,UAEE,CAAA,cACA,CAAA,WACA,CAAA,SACA,CAAA,iBACA,CAAA,UACA,CAAA,qBAEF,kBACE,CAAA,wCAEF,UACE,CAAA,6DAEF,kBACE,CAAA,YACA,CAAA,eACA,CAAA,qBACA,CAAA,WACA,CAAA,4CAEF,WACE,CAAA,4FAEF,qBACE,CAAA,0FAEF,wBACE,CAAA,kDAEF,eACE,CAAA,oDAEF,cACE,CAAA,iBACA,CAAA,8BAEF,UACE,CAAA,cACA,CAAA,iCACA,CAAA,yBACA,CAAA,8BAEF,UACE,CAAA,oBACA,CAAA,uCAEF,cACE,CAAA,oCAEF,aACE,CAAA,2CAEF,aACE,CAAA,mCAEF,cACE,CAAA,aACA,CAAA,qBAGF,iBACE,CAAA,8CAEF,eACE,CAAA,kBACA,CAAA,WACA,CAAA,eACA,CAAA,iBACA,CAAA,yEAEF,kBACE,CAAA,WACA,CAAA,iCACA,CAAA,yBACA,CAAA,+CAEF,aACE,CAAA,cACA,CAAA,eACA,CAAA,gBACA,CAAA,2FAGF,aAEE,CAAA,cACA,CAAA,+EAEF,WAEE,CAAA,iBACA,CAAA,UACA,CAAA,gEAGF,eACE,CAAA,0CAGF,kBACE,CAAA,kBACA,CAAA,YACA,CAAA,iBACA,CAAA,gDAEF,kBACE,CAAA,kCACA,CAAA,0BACA,CAAA,YACA,CAAA,UACA,CAAA,aACA,CAAA,QACA,CAAA,SACA,CAAA,iBACA,CAAA,OACA,CAAA,4CAEF,cACE,CAAA,QACA,CAAA,eACA,CAAA,uCAEF,UACE,CAAA,cACA,CAAA,gBACA,CAAA,oBAGF,cACE,CAAA,eACA,CAAA,eACA,CAAA,aACA,CAAA,UACA,CAAA,2BAEF,iBACE,CAAA,0BAEF,UACE,CAAA,oFAGF,QACE,CAAA,SACA,CAAA,4BAEF,cACE,CAAA,eACA,CAAA,4BAEF,UACE,CAAA,cACA,CAAA,4BAEF,+BACE,CAAA,SACA,CAAA,QACA,CAAA,qDAEF,kBACE,CAAA,iBACA,CAAA,MACA,CAAA,WACA,CAAA,iBACA,CAAA,OACA,CAAA,KACA,CAAA,iBACA,CAAA,mIAEF,UAGE,CAAA,oBACA,CAAA,qJAEF,aAGE,CAAA,8CAEF,WACE,CAAA,eACA,CAAA,cACA,CAAA,SACA,CAAA,kBACA,CAAA,iDAEF,WACE,CAAA,qCAEF,eACE,CAAA,sBAGF,eACE,CAAA,eACA,CAAA,iBACA,CAAA,oCAEF,YACE,CAAA,0CAEF,aACE,CAAA,iBACA,CAAA,gDAEF,UACE,CAAA,aACA,CAAA,iBACA,CAAA,eACA,CAAA,uBACA,CAAA,4NAEF,UAIE,CAAA,wDAEF,WACE,CAAA,wDAEF,UACE,CAAA,gFAEF,UACE,CAAA,gFAEF,UACE,CAAA,kEAEF,iBACE,CAAA,aACA,CAAA,kBAGF,wBACE,CAAA,iBACA,CAAA,YACA,CAAA,kBACA,CAAA,6BAEF,eACE,CAAA,wEAEF,YACE,CAAA,sEAEF,cACE,CAAA,2CAEF,YACE,CAAA,8CAEF,UACE,CAAA,QACA,CAAA,cACA,CAAA,+DAEF,cACE,CAAA,+DAEF,YACE,CAAA,6CAEF,oBACE,CAAA,sDAEF,UACE,CAAA,cACA,CAAA,iCACA,CAAA,yBACA,CAAA,4DAEF,aACE,CAAA,2SAEF,aACE,CAAA,kLAEF,aACE,CAAA,yCAEF,YACE,CAAA,YACA,CAAA,0GAGF,YACE,CAAA,+CAEF,wBACE,CAAA,yCAGF,YACE,CAAA,6HAGF,YAGE,CAAA,iCAEF,YACE,CAAA,YACA,CAAA,wCAGF,mCACE,CAAA,sCACA,CAAA,0CAGF,mCACE,CAAA,sCACA,CAAA,wFAGF,YAEE,CAAA,oFAEF,gBAEE,CAAA,0HAEF,eAEE,CAAA,sHAEF,eAEE,CAAA,sBAGF,wBACE,CAAA,4CAEF,wBACE,CAAA,qBAGF,YACE,CAAA,8GAGF,aACE,CAAA,oCAEF,kBACE,CAAA,2EAEF,UACE,CAAA,2EAGF,kBAEE,CAAA,qGAEF,eAEE,CAAA,sRAEF,4BAGE,CAAA,WACA,CAAA,oBACA,CAAA,gBACA,CAAA,iBACA,CAAA,kBACA,CAAA,kCACA,CAAA,iCACA,CAAA,iBACA,CAAA,QACA,CAAA,aACA,CAAA,uaAEF,kBAGE,CAAA,kQAGF,WAGE,CAAA,oBAEF,WACE,CAAA,UACA,CAAA,iIAGF,oBAEE,CAAA,UACA,CAAA,0CAGF,YACE,CAAA,iCAEF,eACE,CAAA,oDAEF,YACE,CAAA,+DAEF,0CACE,CAAA,kCACQ,CAAA,aACR,CAAA,iBACA,CAAA,YACA,CAAA,0CAEF,kBACE,CAAA,0CACA,CAAA,kCACQ,CAAA,gDAEV,SACE,CAAA,+CAEF,oBACE,CAAA,kEAEF,cACE,CAAA,wFAEF,cACE,CAAA,oDAEF,YACE,CAAA,gCAEF,eACE,CAAA,kDAEF,iBACE,CAAA,kGAEF,YAEE,CAAA,6GAEF,oBACE,CAAA,oDAEF,YACE,CAAA,+CAEF,aACE,CAAA,eACA,CAAA,wCAEF,aACE,CAAA,4CAGF,eACE,CAAA,+CAEF,aACE,CAAA,kDAEF,aACE,CAAA,6GAGF,kBACE,CAAA,gBACA,CAAA,2CAGF,iBACE,CAAA,eACA,CAAA,eACA,CAAA,oDAEF,kBACE,CAAA,0CACA,CAAA,kCACQ,CAAA,0CAEV,eACE,CAAA,gDAEF,gBACE,CAAA,eACA,CAAA,oDAEF,aACE,CAAA,yBAGF,YACE,CAAA,0BAEF,eACE,CAAA,4CAEF,6BACE,CAAA,qBACQ,CAAA,4BAGV,iBACE,CAAA,4BACA,CAAA,oBACA,CAAA,aACA,CAAA,eACA,CAAA,qBACA,CAAA,6CAEF,cACE,CAAA,gBACA,CAAA,wKAEF,aACE,CAAA,wBACA,CAAA,8MAEF,aACE,CAAA,wBACA,CAAA,mTAEF,aACE,CAAA,uBACA,CAAA,mDAGF,gBACE,CAAA,6BAGF,oBACE,CAAA,gBACA,CAAA,cACA,CAAA,WACA,CAAA,sBAGF,kBACE,CAAA,aACA,CAAA,yCAEF,kBACE,CAAA,wDAEF,QACE,CAAA,gKAEF,kBACE,CAAA,wDAEF,aACE,CAAA,cACA,CAAA,gBACA,CAAA,mEAEF,cACE,CAAA,WACA,CAAA,UACA,CAAA,oCAEF,kBACE,CAAA,oDAEF,cACE,CAAA,mDAEF,kBACE,CAAA,aACA,CAAA,oEAEF,YACE,CAAA,yDAEF,WACE,CAAA,oBACA,CAAA,kBACA,CAAA,wEAEF,kBACE,CAAA,aACA,CAAA,8EAEF,kBACE,CAAA,UACA,CAAA,eACA,CAAA,oBACA,CAAA,kEAEF,aACE,CAAA,oBACA,CAAA,gBACA,CAAA,QACA,CAAA,SACA,CAAA,yBACA,CAAA,mBACA,CAAA,0CAEF,wBACE,CAAA,QACA,CAAA,eACA,CAAA,yDAEF,YACE,CAAA,wEAEF,0BACE,CAAA,2BACA,CAAA,oFAEF,qBACE,CAAA,aACA,CAAA,eACA,CAAA,6CAEF,wBACE,CAAA,kBACA,CAAA,aACA,CAAA,eACA,CAAA,SACA,CAAA,6DAEF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,2BACA,CAAA,4BACA,CAAA,yBACI,CAAA,qBACI,CAAA,wBACR,CAAA,qBACI,CAAA,6BACI,CAAA,cACR,CAAA,0CAEF,6DACE,6BACE,CAAA,4BACA,CAAA,sBACI,CAAA,kBACI,CAAA,CAAA,4EAGZ,UACE,CAAA,2FAEF,YACE,CAAA,sCAEF,QACE,CAAA,iBACA,CAAA,yFAEF,WACE,CAAA,aACA,CAAA,4CAEF,UACE,CAAA,qCAEF,QACE,CAAA,0DAEF,kBACE,CAAA,gEAEF,kBACE,CAAA,gEAEF,eACE,CAAA,0CAEF,qCACE,UACE,CAAA,yDAEF,WACE,CAAA,CAAA,qCAGJ,UACE,CAAA,cACA,CAAA,aACA,CAAA,eACA,CAAA,cACA,CAAA,gBACA,CAAA,iBACA,CAAA,oBACA,CAAA,+BACA,CAAA,uBACA,CAAA,+BAGF,UACE,CAAA,eACA,CAAA,kBACA,CAAA,4BACA,CAAA,0FAGF,4CACE,CAAA,oCACQ,CAAA,QACR,CAAA,SACA,CAAA,sCAEF,aACE,CAAA,cACA,CAAA,eACA,CAAA,kBACA,CAAA,6BAEF,oBACE,CAAA,ogBAEF,eAQE,CAAA,sCAEF,kBACE,CAAA,eACA,CAAA,eACA,CAAA,gBACA,CAAA,wCAEF,eACE,CAAA,qJAEF,eAGE,CAAA,eACA,CAAA,iKAEF,WAGE,CAAA,cACA,CAAA,yCAEF,kBACE,CAAA,+HAEF,kBACE,CAAA,iBACA,CAAA,uBACA,CAAA,eACQ,CAAA,aACR,CAAA,cACA,CAAA,eACA,CAAA,WACA,CAAA,gBACA,CAAA,wJAEF,eACE,CAAA,8HAEF,uBACE,CAAA,eACQ,CAAA,eACR,CAAA,eACA,CAAA,SACA,CAAA,gKAEF,wBACE,CAAA,qBACI,CAAA,kBACI,CAAA,0BACR,CAAA,iBACI,CAAA,UACJ,CAAA,mBACA,CAAA,mBACA,CAAA,YACA,CAAA,cACA,CAAA,OACA,CAAA,4KAEF,eACE,CAAA,4KAEF,QACE,CAAA,cACA,CAAA,QACA,CAAA,aACA,CAAA,qBACA,CAAA,WACA,CAAA,kNAEF,qBACE,CAAA,kGAEF,WACE,CAAA,gBACA,CAAA,sHAEF,YACE,CAAA,0JAEF,qBACE,CAAA,qBACA,CAAA,4CACA,CAAA,oCACQ,CAAA,2BACR,CAAA,YACA,CAAA,sJAEF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,2BACA,CAAA,4BACA,CAAA,yBACI,CAAA,qBACI,CAAA,QACR,CAAA,wBACA,CAAA,qBACI,CAAA,6BACI,CAAA,QACR,CAAA,0CAEF,sJACE,6BACE,CAAA,4BACA,CAAA,sBACI,CAAA,kBACI,CAAA,CAAA,oJAGZ,6BACE,CAAA,qBACQ,CAAA,UACR,CAAA,gKAEF,aACE,CAAA,eACA,CAAA,gBACA,CAAA,8MAEF,oBACE,CAAA,qBACA,CAAA,kBACA,CAAA,0HAEF,QACE,CAAA,gBACA,CAAA,oKAEF,oBACE,CAAA,qFAEF,WACE,CAAA,qBAGF,qBACE,CAAA,wBACA,CAAA,kBACA,CAAA,+EACA,CAAA,uEACQ,CAAA,YACR,CAAA,0IAGF,QACE,CAAA,sJAEF,aACE,CAAA,oBACA,CAAA,0LAEF,aACE,CAAA,uBAEF,cACE,CAAA,eACA,CAAA,wCAEF,kBACE,CAAA,uBAEF,cACE,CAAA,eACA,CAAA,yCAEF,qBACE,CAAA,4CACA,CAAA,oCACQ,CAAA,gBACR,CAAA,SACA,CAAA,8DAEF,YACE,CAAA,iFAEF,QACE,CAAA,sDAEF,YACE,CAAA,gEAEF,YACE,CAAA,QACA,CAAA,2FAEF,iBACE,CAAA,oBACA,CAAA,iBACA,CAAA,eACA,CAAA,qBACA,CAAA,+FAEF,aACE,CAAA,eACA,CAAA,UACA,CAAA,4FAEF,oBACE,CAAA,qBACA,CAAA,4BAGF,QACE,CAAA,SACA,CAAA,8BAEF,aACE,CAAA,cACA,CAAA,oBACA,CAAA,oCAEF,aACE,CAAA,oCAEF,aACE,CAAA,aACA,CAAA,yCAEF,UACE,CAAA,eACA,CAAA,+CAEF,YACE,CAAA,2BAGF,eACE,CAAA,4BAGF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,mFAEF,WACE,CAAA,aACA,CAAA,yCAEF,UACE,CAAA,+BAEF,kBACE,CAAA,uDAEF,WACE,CAAA,iBACA,CAAA,kBACA,CAAA,WACA,CAAA,QACA,CAAA,qDAEF,kBACE,CAAA,UACI,CAAA,MACI,CAAA,aACR,CAAA,qDAEF,kBACE,CAAA,UACI,CAAA,MACI,CAAA,gBACR,CAAA,6CAEF,kBACE,CAAA,UACI,CAAA,MACI,CAAA,6DAGV,WACE,CAAA,aACA,CAAA,8BAEF,UACE,CAAA,uBAGF,4BACE,CAAA,kBACA,CAAA,kBACA,CAAA,YACA,CAAA,2DAEF,WACE,CAAA,aACA,CAAA,6BAEF,UACE,CAAA,2BAEF,UACE,CAAA,UACA,CAAA,cACA,CAAA,iBACA,CAAA,8BAEF,UACE,CAAA,cACA,CAAA,eACA,CAAA,6DAEF,eACE,CAAA,8EAEF,aAEE,CAAA,iBACA,CAAA,QACA,CAAA,uBACA,CAAA,6BAEF,cACE,CAAA,qCAEF,eACE,CAAA,8CAEF,aACE,CAAA,8CAEF,aACE,CAAA,sBAGF,0BACE,CAAA,kBACA,CAAA,cACA,CAAA,eACA,CAAA,mBACA,CAAA,YACA,CAAA,yDAEF,WACE,CAAA,aACA,CAAA,4BAEF,UACE,CAAA,kCAEF,yBACE,CAAA,oHAEF,yBACE,CAAA,2EAEF,yBACE,CAAA,+GAEF,yBACE,CAAA,0JAEF,yBACE,CAAA,2BAEF,UACE,CAAA,2CAEF,gBACE,CAAA,WACA,CAAA,wBAEF,oBACE,CAAA,aACA,CAAA,0CAGF,0FACE,aACE,CAAA,cACA,CAAA,CAAA,2BAGJ,QACE,CAAA,SACA,CAAA,oBACA,CAAA,uDAEF,kBACE,CAAA,eACA,CAAA,iBACA,CAAA,oBACA,CAAA,sEAEF,aACE,CAAA,aACA,CAAA,2BACA,CAAA,oBACA,CAAA,yJAEF,WACE,CAAA,aACA,CAAA,4EAEF,UACE,CAAA,gKAEF,8BACE,CAAA,oMAEF,wBACE,CAAA,8EAEF,+BACE,CAAA,gGAEF,wBACE,CAAA,gFAEF,6BACE,CAAA,kGAEF,wBACE,CAAA,2DAEF,aACE,CAAA,4EAEF,UACE,CAAA,QACA,CAAA,aACA,CAAA,oEAEF,WACE,CAAA,aACA,CAAA,6EAEF,iBACE,CAAA,WACA,CAAA,QACA,CAAA,yEAEF,2BACE,CAAA,iBACA,CAAA,cACA,CAAA,WACA,CAAA,gBACA,CAAA,iBACA,CAAA,UACA,CAAA,wFAEF,YACE,CAAA,mBACA,CAAA,iHAEF,eACE,CAAA,kBACA,CAAA,qHAEF,QACE,CAAA,SACA,CAAA,iJAEF,SACE,CAAA,iBACA,CAAA,4JAEF,oBACE,CAAA,aACA,CAAA,4FAEF,WACE,CAAA,eACA,CAAA,0HAEF,yCACE,CAAA,eACA,CAAA,gBACA,CAAA,sIAEF,eACE,CAAA,YACA,CAAA,aACA,CAAA,mNAEF,oBACE,CAAA,QACA,CAAA,SACA,CAAA,2QAEF,oBACE,CAAA,oBACA,CAAA,QACA,CAAA,WACA,CAAA,qEAEF,UACE,CAAA,0FAEF,iBACE,CAAA,kBACA,CAAA,sHAGF,6BAGE,CAAA,qBACQ,CAAA,aACR,CAAA,mKAEF,aAGE,CAAA,iJAEF,kBAGE,CAAA,aACI,CAAA,SACI,CAAA,gBACR,CAAA,2LAEF,qBAGE,CAAA,4CACA,CAAA,oCACQ,CAAA,yBACR,CAAA,2OAEF,cAGE,CAAA,uSAEF,kBAGE,CAAA,UACA,CAAA,yTAEF,kBAGE,CAAA,aACA,CAAA,wBACA,CAAA,yTAEF,eAGE,CAAA,wOAEF,kCAGE,CAAA,YACA,CAAA,4HAEF,qBAGE,CAAA,4CACA,CAAA,oCACQ,CAAA,gBACR,CAAA,YACA,CAAA,gKAEF,+BAGE,CAAA,eACA,CAAA,cACA,CAAA,YACA,CAAA,uBACA,CAAA,+NAEF,gBAGE,CAAA,sNAEF,UAGE,CAAA,WACA,CAAA,gKAEF,QAGE,CAAA,0PAEF,YAGE,CAAA,4KAEF,aAGE,CAAA,cACA,CAAA,iMAEF,UAGE,CAAA,mBACA,CAAA,kIAEF,cAGE,CAAA,8zFAEF,SAgDE,CAAA,8oGAEF,SAgDE,CAAA,8lGAEF,SAgDE,CAAA,8iGAEF,SAgDE,CAAA,0CAEF,yTACE,eAGE,CAAA,CAAA,qIAGJ,WAGE,CAAA,cACA,CAAA,iBACA,CAAA,sKAEF,mBAGE,CAAA,qBACA,CAAA,+HAEF,WAGE,CAAA,cACA,CAAA,iBACA,CAAA,2IAEF,gBAGE,CAAA,0CAGF,yCACE,WACE,CAAA,eACA,CAAA,QACA,CAAA,kEAEF,yBACE,CAAA,kFAEF,iBACE,CAAA,8DAEF,yBACE,CAAA,8EAEF,iBACE,CAAA,2DAEF,yBACE,CAAA,2EAEF,iBACE,CAAA,CAAA,uCAGJ,gBACE,CAAA,mCAEF,iBACE,CAAA,iDAEF,cACE,CAAA,eACA,CAAA,eACA,CAAA,YACA,CAAA,iBACA,CAAA,8BAEF,qBACE,CAAA,WACA,CAAA,4CACA,CAAA,oCACQ,CAAA,8CAEV,2BACE,CAAA,sCAEF,YACE,CAAA,8DAEF,YACE,CAAA,gFAEF,YACE,CAAA,kFAEF,eACE,CAAA,oGAEF,aACE,CAAA,8CAEF,iBACE,CAAA,mEAEF,oBACE,CAAA,eACA,CAAA,oDAEF,eACE,CAAA,mBACA,CAAA,uDAEF,cACE,CAAA,eACA,CAAA,mEAEF,YACE,CAAA,yBACA,CAAA,aACA,CAAA,qEAEF,oBACE,CAAA,iFAEF,iBACE,CAAA,iFAEF,kBACE,CAAA,gGAEF,eACE,CAAA,aACA,CAAA,kFAEF,iBACE,CAAA,UACA,CAAA,wFAEF,aACE,CAAA,wFAEF,aACE,CAAA,0SAEF,aAGE,CAAA,iBACA,CAAA,0CAEF,mEACE,iCACE,CAAA,CAAA,kEAGJ,YACE,CAAA,6BACA,CAAA,aACA,CAAA,gFAEF,QACE,CAAA,2FAEF,UACE,CAAA,0CAEF,kEACE,qCACE,CAAA,CAAA,6FAGJ,QAEE,CAAA,mGAEF,iBAEE,CAAA,uGAEF,aAEE,CAAA,2FAEF,aAEE,CAAA,iBACA,CAAA,+FAEF,oBAEE,CAAA,+BAGF,QACE,CAAA,kBACA,CAAA,mDAEF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,wBACA,CAAA,qBACI,CAAA,6BACI,CAAA,wBACR,CAAA,qBACI,CAAA,kBACI,CAAA,gBACR,CAAA,uCAEF,kBACE,CAAA,oBACA,CAAA,0BAEF,eACE,CAAA,4CAEF,YACE,CAAA,wCAEF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,wBACA,CAAA,qBACI,CAAA,6BACI,CAAA,OACR,CAAA,UACA,CAAA,yBACA,CAAA,sBACI,CAAA,mBACI,CAAA,aACR,CAAA,6FAEF,YACE,CAAA,wCAEF,SACE,CAAA,kBACA,CAAA,UACI,CAAA,MACI,CAAA,oCAEV,oBACE,CAAA,QACA,CAAA,iBACA,CAAA,wBACA,CAAA,sCACA,CAAA,8BACQ,CAAA,WACR,CAAA,mBACA,CAAA,mBACA,CAAA,YACA,CAAA,kBACA,CAAA,cACI,CAAA,uBACJ,CAAA,oBACI,CAAA,sBACI,CAAA,qBACR,CAAA,kBACI,CAAA,oBACI,CAAA,mCAEV,cACE,CAAA,UACA,CAAA,yBACA,CAAA,qBACI,CAAA,kBACJ,CAAA,sBACA,CAAA,eACA,CAAA,4CAEF,cACE,CAAA,QACA,CAAA,gDAEF,YACE,CAAA,yBAEF,QACE,CAAA,kCAEF,aACE,CAAA,4BAGF,cACE,CAAA,SACA,CAAA,wBACA,CAAA,+BAEF,QACE,CAAA,gBACA,CAAA,+BACA,CAAA,iCAEF,aACE,CAAA,kCAGF,YACE,CAAA,UACA,CAAA,iCAEF,UACE,CAAA,4CAGF,YACE,CAAA,uDAEF,YACE,CAAA,oDAEF,cACE,CAAA,kBAGF,6BACE,CAAA,qBACQ,CAAA,oBAEV,6BACE,CAAA,qBACQ,CAAA,yCAEV,gBACE,CAAA,uEAEF,eACE,CAAA,mBAGF,mBACE,CAAA,iBAGF,UACE,CAAA,mBACA,CAAA,iBACA,CAAA,UACA,CAAA,mCAEF,WACE,CAAA,gjBAEF,+BACE,CAAA,oBACA,CAAA,4nCAEF,6BACE,CAAA,oBACA,CAAA,4CAEF,YACE,CAAA,6BAEF,gBACE,CAAA,qCAEF,6BACE,mBACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,SACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,SACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,SACE,CAAA,8BAEF,oBACE,CAAA,8BAEF,oBACE,CAAA,8BAEF,UACE,CAAA,CAAA,6BAGJ,SACE,CAAA,8IAEF,oBAGE,CAAA,UACA,CAAA,uEAEF,gBACE,CAAA,2GAEF,aACE,CAAA,6DAEF,iBACE,CAAA,SACA,CAAA,eACA,CAAA,wDAEF,kBACE,CAAA,2BACA,CAAA,2BACA,CAAA,iBACA,CAAA,kFACA,CAAA,0EACQ,CAAA,UACR,CAAA,cACA,CAAA,oBACA,CAAA,WACA,CAAA,gBACA,CAAA,iBACA,CAAA,sEACA,CAAA,8DACA,CAAA,QACA,CAAA,qBACA,CAAA,UACA,CAAA,SACA,CAAA,kFAEF,0EACE,CAAA,kEACA,CAAA,uBACA,CAAA,yFACA,CAAA,mCAEF,cACE,CAAA,oDAEF,mBACE,CAAA,4IAEF,UACE,CAAA,mCAEF,cACE,CAAA,iBACA,CAAA,gCAEF,aACE,CAAA,eACA,CAAA,yEAEF,UACE,CAAA,iBACA,CAAA,+DAEF,WACE,CAAA,eACA,CAAA,kGAEF,WACE,CAAA,8BAGF,wBACE,CAAA,YACA,CAAA,cACA,CAAA,gBACA,CAAA,WACA,CAAA,iBACA,CAAA,iBACA,CAAA,qCAEF,QACE,CAAA,UACA,CAAA,MACA,CAAA,iBACA,CAAA,KACA,CAAA,iCACA,CAAA,yBACA,CAAA,uHAEF,oBACE,CAAA,4IAEF,8BACE,CAAA,SACA,CAAA,+CAEF,OACE,CAAA,mCAEF,oBACE,CAAA,0CAEF,+BACE,CAAA,SACA,CAAA,qCAEF,oBACE,CAAA,4CAEF,+BACE,CAAA,SACA,CAAA,qCAEF,oBACE,CAAA,4CAEF,gCACE,CAAA,UACA,CAAA;;;EAGF,CAMA,WACE,yBAAA,CACA,mDAAA,CACA,4WAAA,CACA,kBAAA,CACA,iBAAA,CAEF,IACE,oBAAA,CACA,4CAAA,CACA,iBAAA,CACA,mBAAA,CACA,kCAAA,CACA,iCAAA,CAIF,OACE,sBAAA,CACA,iBAAA,CACA,mBAAA,CAGF,OACE,aAAA,CAGF,OACE,aAAA,CAGF,OACE,aAAA,CAGF,OACE,aAAA,CAGF,OACE,kBAAA,CACA,iBAAA,CAGF,OACE,cAAA,CACA,wBAAA,CACA,oBAAA,CAGF,UACE,iBAAA,CAGF,OACE,iBAAA,CACA,kBAAA,CACA,kBAAA,CACA,eAAA,CACA,iBAAA,CAGF,aACE,kBAAA,CAGF,WACE,wBAAA,CACA,uBAAA,CACA,kBAAA,CAGF,cACE,UAAA,CAGF,eACE,WAAA,CAGF,iBACE,iBAAA,CAGF,kBACE,gBAAA,CAIF,YACE,WAAA,CAGF,WACE,UAAA,CAGF,cACE,iBAAA,CAGF,eACE,gBAAA,CAGF,SACE,4CAAA,CACA,oCAAA,CAGF,UACE,8CAAA,CACA,sCAAA,CAGF,2BACE,GACE,8BAAA,CACA,sBAAA,CAEF,KACE,gCAAA,CACA,wBAAA,CAAA,CAGJ,mBACE,GACE,8BAAA,CACA,sBAAA,CAEF,KACE,gCAAA,CACA,wBAAA,CAAA,CAGJ,cACE,qEAAA,CACA,+BAAA,CACA,uBAAA,CAGF,eACE,qEAAA,CACA,gCAAA,CACA,wBAAA,CAGF,eACE,qEAAA,CACA,gCAAA,CACA,wBAAA,CAGF,oBACE,+EAAA,CACA,8BAAA,CACA,sBAAA,CAGF,kBACE,+EAAA,CACA,8BAAA,CACA,sBAAA,CAGF,gHAKE,mBAAA,CACQ,WAAA,CAGV,UACE,iBAAA,CACA,oBAAA,CACA,SAAA,CACA,UAAA,CACA,eAAA,CACA,qBAAA,CAGF,0BAEE,iBAAA,CACA,MAAA,CACA,UAAA,CACA,iBAAA,CAGF,aACE,mBAAA,CAGF,aACE,aAAA,CAGF,YACE,UAAA,CAKF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,cACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oDAGE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,+BAEE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,+BACE,WAAA,CAGF,6BACE,WAAA,CAGF,iBACE,WAAA,CAGF,yBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,eACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,gBACE,WAAA,CAGF,qCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uDAGE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,2CAEE,WAAA,CAGF,0BACE,WAAA,CAGF,0BACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,wBACE,WAAA,CAGF,wBACE,WAAA,CAGF,iBACE,WAAA,CAGF,wBACE,WAAA,CAGF,yBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,wBACE,WAAA,CAGF,wBACE,WAAA,CAGF,2BACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,0BACE,WAAA,CAGF,0BACE,WAAA,CAGF,eACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,yCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,8BACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,eACE,WAAA,CAGF,qBACE,WAAA,CAGF,mDAEE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,oBACE,WAAA,CAGF,4CAEE,WAAA,CAGF,0BACE,WAAA,CAGF,2BACE,WAAA,CAGF,wBACE,WAAA,CAGF,eACE,WAAA,CAGF,iCAEE,WAAA,CAGF,oBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,qBACE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,2BACE,WAAA,CAGF,sBACE,WAAA,CAGF,yBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,+BAEE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,6BACE,WAAA,CAGF,8BACE,WAAA,CAGF,2BACE,WAAA,CAGF,6BACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kCAEE,WAAA,CAGF,iCAEE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,mCAEE,WAAA,CAGF,mCAEE,WAAA,CAGF,qBACE,WAAA,CAGF,oCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,sDAGE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,yBACE,WAAA,CAGF,qBACE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,4BACE,WAAA,CAGF,8BACE,WAAA,CAGF,uBACE,WAAA,CAGF,iBACE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,oCAEE,WAAA,CAGF,0CAEE,WAAA,CAGF,uCAEE,WAAA,CAGF,oBACE,WAAA,CAGF,oBACE,WAAA,CAGF,uCAEE,WAAA,CAGF,kCAEE,WAAA,CAGF,2CAEE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,iCAEE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sCAEE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,0BACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,uBACE,WAAA,CAGF,6BACE,WAAA,CAGF,8BACE,WAAA,CAGF,2BACE,WAAA,CAGF,6BACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uCAEE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,yBACE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,+CAEE,WAAA,CAGF,4EAGE,WAAA,CAGF,0BACE,WAAA,CAGF,gBACE,WAAA,CAGF,qBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,sBACE,WAAA,CAGF,4BACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,6BACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,+BACE,WAAA,CAGF,gCACE,WAAA,CAGF,6BACE,WAAA,CAGF,+BACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,yBACE,WAAA,CAGF,gCACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,sDAEE,WAAA,CAGF,kDAEE,WAAA,CAGF,wDAEE,WAAA,CAGF,+BAEE,WAAA,CAGF,eACE,WAAA,CAGF,iCAEE,WAAA,CAGF,gCAEE,WAAA,CAGF,4DAIE,WAAA,CAGF,kDAGE,WAAA,CAGF,8BAEE,WAAA,CAGF,kCAEE,WAAA,CAGF,gBACE,WAAA,CAGF,qBACE,WAAA,CAGF,0BACE,WAAA,CAGF,2BACE,WAAA,CAGF,2BACE,WAAA,CAGF,4BACE,WAAA,CAGF,4BACE,WAAA,CAGF,6BACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,0BACE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,0BACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,eACE,WAAA,CAGF,qBACE,WAAA,CAGF,4BACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,2BACE,WAAA,CAGF,yBACE,WAAA,CAGF,2BACE,WAAA,CAGF,4BACE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,iBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sCAEE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,eACE,WAAA,CAGF,cACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,0BACE,WAAA,CAGF,gCACE,WAAA,CAGF,+BACE,WAAA,CAGF,sDAEE,WAAA,CAGF,wBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uCAEE,WAAA,CAGF,yBACE,WAAA,CAGF,yBACE,WAAA,CAGF,iBACE,WAAA,CAGF,2BACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,6DAGE,WAAA,CAGF,kDAEE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,8BACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,gBACE,WAAA,CAGF,yBACE,WAAA,CAGF,0BACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,oBACE,WAAA,CAGF,eACE,WAAA,CAGF,oBACE,WAAA,CAGF,iBACE,WAAA,CAGF,eACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,0BACE,WAAA,CAGF,iBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qCAEE,WAAA,CAGF,+BAEE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,6BACE,WAAA,CAGF,0EAGE,WAAA,CAGF,gDAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,uBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,wGAKE,WAAA,CAGF,0BACE,WAAA,CAGF,qDAGE,WAAA,CAGF,gCAEE,WAAA,CAGF,sBACE,WAAA,CAGF,eACE,WAAA,CAGF,2EAGE,WAAA,CAGF,yBACE,WAAA,CAGF,cACE,WAAA,CAGF,oCAEE,WAAA,CAGF,uCAEE,WAAA,CAGF,2CAEE,WAAA,CAGF,mBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,4BACE,WAAA,CAGF,gBACE,WAAA,CAGF,6CAEE,WAAA,CAGF,eACE,WAAA,CAGF,sBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,mBACE,WAAA,CAGF,yBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,cACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,sBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,sBACE,WAAA,CAGF,qBACE,WAAA,CAGF,mBACE,WAAA,CAGF,eACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,cACE,WAAA,CAGF,mDAGE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,oBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,qBACE,WAAA,CAGF,2BACE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,2CAEE,WAAA,CAGF,2BACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,6BACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,gCAEE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sCAEE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,wBACE,WAAA,CAGF,gEAGE,WAAA,CAGF,uDAEE,WAAA,CAGF,6CAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,8CAEE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,0BACE,WAAA,CAGF,iBACE,WAAA,CAGF,yBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kDAEE,WAAA,CAGF,iDAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,qBACE,WAAA,CAGF,8CAEE,WAAA,CAGF,+CAEE,WAAA,CAGF,2BACE,WAAA,CAGF,yBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,wBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,4BACE,WAAA,CAGF,cACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,gCACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,6BACE,WAAA,CAGF,oCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,2BACE,WAAA,CAGF,4BACE,WAAA,CAGF,4BACE,WAAA,CAGF,4BACE,WAAA,CAGF,oBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,iBACE,WAAA,CAGF,eACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,qBACE,WAAA,CAGF,wBACE,WAAA,CAGF,gBACE,WAAA,CAGF,2BACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,wBACE,WAAA,CAGF,eACE,WAAA,CAGF,wBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,wBACE,WAAA,CAGF,2BACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,4BACE,WAAA,CAGF,0BACE,WAAA,CAGF,6BACE,WAAA,CAGF,iBACE,WAAA,CAGF,6BACE,WAAA,CAGF,gCACE,WAAA,CAGF,mBACE,WAAA,CAGF,uCACE,WAAA,CAGF,2EAEE,WAAA,CAGF,+DAGE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,4CAEE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,0BACE,WAAA,CAGF,2BACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,8DAEE,WAAA,CAGF,sCAEE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,2BACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,yCAEE,WAAA,CAGF,6CAEE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,oBACE,WAAA,CAGF,8CAEE,WAAA,CAGF,kDAEE,WAAA,CAGF,iBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,4EAGE,WAAA,CAGF,+DAEE,WAAA,CAGF,qDAEE,WAAA,CAGF,wDAEE,WAAA,CAGF,sDAEE,WAAA,CAGF,kBACE,WAAA,CAGF,kDAGE,WAAA,CAGF,mBACE,WAAA,CAGF,2BACE,WAAA,CAGF,2BACE,WAAA,CAGF,0BACE,WAAA,CAGF,mDAEE,WAAA,CAGF,uDAEE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,SACE,iBAAA,CACA,SAAA,CACA,UAAA,CACA,SAAA,CACA,WAAA,CACA,eAAA,CACA,qBAAA,CACA,QAAA,CAGF,mDAEE,eAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,gBAAA,CACA,SAAA","file":"../../css/admin.min.css","sourcesContent":["@charset \"UTF-8\";\n#poststuff .llms-metabox:before, #poststuff .llms-metabox:after,\n.llms-form-fields:before,\n.llms-metabox .llms-access-plans:before,\n.llms-collapsible .llms-collapsible-body:before,\n.llms-collapsible .llms-collapsible-header:before,\n.llms-collapsible:before,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n content: \" \";\n display: table;\n}\n#poststuff .llms-metabox:after,\n.llms-form-fields:after,\n.llms-metabox .llms-access-plans:after,\n.llms-collapsible .llms-collapsible-body:after,\n.llms-collapsible .llms-collapsible-header:after,\n.llms-collapsible:after {\n clear: both;\n}\n\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #466dd8;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #2b55cb;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #6888df;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n -webkit-transition: all 0.2s 0.1s ease;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n -webkit-transition: all 0.2s 0.6s ease;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n#adminmenu .toplevel_page_lifterlms .wp-menu-image img {\n padding-top: 6px;\n width: 20px;\n}\n#adminmenu .toplevel_page_lifterlms a[href*=\"page=llms-add-ons\"],\n#adminmenu .opensub .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu .wp-submenu li.current a[href*=\"page=llms-add-ons\"],\n#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a[href*=\"page=llms-add-ons\"] {\n color: #ff922b;\n}\n\n/******************************************************************\n\nGrids for Breakpoints\n\n******************************************************************/\n.last-col {\n float: right;\n padding-right: 0 !important;\n}\n\n.last-col:after {\n clear: both;\n}\n\n/*\nMobile Grid Styles\nThese are the widths for the mobile grid.\nThere are four types, but you can add or customize\nthem however you see fit.\n*/\n@media (max-width: 767px) {\n .m-all {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .m-1of2 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 50%;\n }\n .m-1of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 33.33%;\n }\n .m-2of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 66.66%;\n }\n .m-1of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 25%;\n }\n .m-3of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 75%;\n }\n .m-right {\n text-align: center;\n }\n .m-center {\n text-align: center;\n }\n .m-left {\n text-align: center;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Portrait tablet to landscape */\n@media (min-width: 768px) and (max-width: 1029px) {\n .t-all {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .t-1of2 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 50%;\n }\n .t-1of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 33.33%;\n }\n .t-2of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 66.66%;\n }\n .t-1of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 25%;\n }\n .t-3of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 75%;\n }\n .t-1of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 20%;\n }\n .t-2of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 40%;\n }\n .t-3of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 60%;\n }\n .t-4of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 80%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/* Landscape to small desktop */\n@media (min-width: 1030px) {\n .d-all {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n padding-right: 0;\n }\n .d-1of2 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 50%;\n }\n .d-1of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 33.33%;\n }\n .d-2of3 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 66.66%;\n }\n .d-1of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 25%;\n }\n .d-3of4 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 75%;\n }\n .d-1of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 20%;\n }\n .d-2of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 40%;\n }\n .d-3of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 60%;\n }\n .d-4of5 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 80%;\n }\n .d-1of6 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 16.6666666667%;\n }\n .d-1of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 14.2857142857%;\n }\n .d-2of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 28.5714286%;\n }\n .d-3of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 42.8571429%;\n }\n .d-4of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 57.1428572%;\n }\n .d-5of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 71.4285715%;\n }\n .d-6of7 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 85.7142857%;\n }\n .d-1of8 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 12.5%;\n }\n .d-1of9 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 11.1111111111%;\n }\n .d-1of10 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 10%;\n }\n .d-1of11 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 9.0909090909%;\n }\n .d-1of12 {\n float: left;\n padding-right: 0.75em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 8.33%;\n }\n .d-right {\n text-align: right;\n }\n .d-center {\n text-align: center;\n }\n .d-left {\n text-align: left;\n }\n}\n/******************************************************************\n\nForm Styles\n\n******************************************************************/\n#llms-form-wrapper .llms-search-form-wrapper {\n border-bottom: 1px solid #999;\n margin: 20px 0;\n}\n#llms-form-wrapper #llms_analytics_search {\n border: none !important;\n text-shadow: none !important;\n border: none !important;\n outline: none !important;\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n margin: 0 !important;\n color: #fefefe !important;\n background: #466dd8 !important;\n border-radius: 0;\n -webkit-transition: 0.5s;\n transition: 0.5s;\n}\n#llms-form-wrapper #llms_analytics_search:hover {\n background: #0185a3 !important;\n}\n#llms-form-wrapper #llms_analytics_search:active {\n background: #33b1cb !important;\n}\n\n#llms-skip-setup-form .llms-admin-link {\n background: none !important;\n border: none;\n padding: 0 !important;\n color: #0074a2;\n cursor: pointer;\n}\n#llms-skip-setup-form .llms-admin-link:hover {\n color: #2ea2cc;\n}\n#llms-skip-setup-form .llms-admin-link:focus {\n color: #124964;\n}\n\n/**\n * Toggle Switch ( replaces checkbox on admin panels )\n */\n.llms-switch {\n position: relative;\n}\n.llms-switch .llms-toggle {\n position: absolute;\n margin-left: -9999px;\n visibility: hidden;\n}\n.llms-switch .llms-toggle + label {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: block;\n position: relative;\n cursor: pointer;\n outline: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.llms-switch input.llms-toggle-round + label {\n border: 2px solid #6c7781;\n border-radius: 10px;\n height: 20px;\n width: 36px;\n}\n.llms-switch input.llms-toggle-round + label:before,\n.llms-switch input.llms-toggle-round + label:after {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n content: \"\";\n display: block;\n position: absolute;\n -webkit-transition: background 0.4s;\n transition: background 0.4s;\n}\n.llms-switch input.llms-toggle-round:checked + label {\n border-color: #11a0d2;\n background-color: #11a0d2;\n}\n.llms-switch input.llms-toggle-round + label:after {\n height: 12px;\n left: 2px;\n top: 2px;\n background-color: #6c7781;\n border-radius: 50%;\n -webkit-transition: margin 0.4s;\n transition: margin 0.4s;\n width: 12px;\n z-index: 3;\n}\n.llms-switch input.llms-toggle-round:checked + label:after {\n background-color: #fefefe;\n margin-left: 16px;\n}\n.llms-switch input.llms-toggle-round + label:before {\n height: 8px;\n top: 4px;\n border: 1px solid #6c7781;\n border-radius: 50%;\n right: 4px;\n width: 8px;\n z-index: 2;\n}\n.llms-switch input.llms-toggle-round:checked + label:before {\n border-color: #fefefe;\n border-radius: 0;\n left: 6px;\n right: auto;\n width: 2px;\n}\n\n#llms-profile-fields {\n margin: 50px 0;\n}\n#llms-profile-fields .llms-form-field {\n padding-left: 0;\n}\n#llms-profile-fields label {\n display: block;\n font-weight: bold;\n padding: 8px 0 2px;\n}\n#llms-profile-fields .type-checkbox .type-checkbox label {\n display: initial;\n font-weight: initial;\n padding: 0;\n}\n#llms-profile-fields .type-checkbox .type-checkbox input {\n display: inline-block;\n margin-bottom: 0;\n width: 1rem;\n}\n#llms-profile-fields select {\n max-width: 100%;\n}\n\na.llms-voucher-delete {\n background: #e5554e;\n color: #fefefe;\n display: block;\n padding: 4px 2px;\n text-decoration: none;\n -webkit-transition: ease 0.3s all;\n transition: ease 0.3s all;\n}\na.llms-voucher-delete:hover {\n background: #af3a26;\n}\n\n.llms-voucher-codes-wrapper table,\n.llms-voucher-redemption-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td,\n.llms-voucher-redemption-wrapper table th,\n.llms-voucher-redemption-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead,\n.llms-voucher-redemption-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table thead th,\n.llms-voucher-redemption-wrapper table thead th {\n padding: 10px 10px;\n}\n.llms-voucher-codes-wrapper table tr,\n.llms-voucher-redemption-wrapper table tr {\n counter-increment: row-counter;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even),\n.llms-voucher-redemption-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td,\n.llms-voucher-redemption-wrapper table tr td {\n padding: 5px;\n}\n.llms-voucher-codes-wrapper table tr td:first-child:before,\n.llms-voucher-redemption-wrapper table tr td:first-child:before {\n content: counter(row-counter);\n}\n\n.llms-voucher-codes-wrapper table {\n width: 100%;\n border-collapse: collapse;\n}\n.llms-voucher-codes-wrapper table th, .llms-voucher-codes-wrapper table td {\n border: none;\n}\n.llms-voucher-codes-wrapper table thead {\n background-color: #466dd8;\n color: #fff;\n}\n.llms-voucher-codes-wrapper table tr:nth-child(even) {\n background-color: #F1F1F1;\n}\n.llms-voucher-codes-wrapper table tr td span {\n display: inline-block;\n min-width: 30px;\n}\n.llms-voucher-codes-wrapper button {\n cursor: pointer;\n}\n.llms-voucher-codes-wrapper .llms-voucher-delete {\n float: right;\n margin-right: 15px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-uses {\n width: 50px;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes {\n float: right;\n}\n.llms-voucher-codes-wrapper .llms-voucher-add-codes input[type=text] {\n width: 30px;\n}\n\n.llms-voucher-export-wrapper .llms-voucher-export-type {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-export-type p {\n margin: 0 0 0 15px;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper {\n width: 100%;\n margin: 25px 0;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper input[type=text] {\n width: 100%;\n}\n.llms-voucher-export-wrapper .llms-voucher-email-wrapper p {\n margin: 0;\n}\n.llms-voucher-export-wrapper > button {\n float: right;\n}\n\n.postbox .inside {\n overflow: auto;\n}\n\n.llms-widget {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n -webkit-box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin-bottom: 20px;\n padding: 20px;\n position: relative;\n width: 100%;\n}\n.llms-widget.alt {\n border: 1px solid #ccc;\n background-color: #efefef;\n margin-bottom: 10px;\n}\n.llms-widget.alt .llms-label {\n color: #777;\n font-size: 14px;\n margin-bottom: 10px;\n padding-bottom: 5px;\n}\n.llms-widget.alt h2 {\n color: #444;\n font-weight: 300;\n}\n.llms-widget a {\n border-bottom: 1px dotted #466dd8;\n display: inline-block;\n text-decoration: none;\n}\n.llms-widget a:hover {\n border-bottom: 1px dotted #2b55cb;\n}\n.llms-widget .llms-widget-content {\n margin: 0.67em 0;\n color: #466dd8;\n font-size: 2.4em;\n font-weight: 700;\n line-height: 1;\n word-break: break-all;\n}\n.llms-widget h2 {\n font-size: 1.8em;\n}\n.llms-widget .llms-label {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-size: 18px;\n font-weight: 400;\n margin: 0 0 10px 0;\n text-align: center;\n}\n.llms-widget .llms-chart {\n width: 100%;\n padding: 10px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-widget mark.yes {\n background-color: #7ad03a;\n}\n.llms-widget .llms-subtitle {\n margin-bottom: 0;\n}\n.llms-widget .spinner {\n float: none;\n left: 50%;\n margin: -10px 0 0 -10px;\n position: absolute;\n top: 50%;\n z-index: 2;\n}\n.llms-widget.is-loading:before {\n background: #fefefe;\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0.9;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 1;\n}\n.llms-widget.is-loading .spinner {\n visibility: visible;\n}\n.llms-widget td[colspan=\"2\"] {\n padding-left: 0;\n}\n.llms-widget tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n\n.llms-widget-1-3,\n.llms-widget-1-4,\n.llms-widget-1-5 {\n text-align: center;\n}\n\n.llms-widget .llms-widget-info-toggle {\n color: #AAA;\n cursor: pointer;\n font-size: 16px;\n position: absolute;\n right: 20px;\n top: 20px;\n}\n.llms-widget.info-showing .llms-widget-info {\n display: block;\n}\n\n.llms-widget-info {\n background: #444;\n color: #fefefe;\n bottom: -50px;\n display: none;\n padding: 15px;\n position: absolute;\n text-align: center;\n left: 10px;\n right: 15px;\n z-index: 3;\n}\n.llms-widget-info:before {\n content: \"\";\n border: 12px solid transparent;\n border-bottom-color: #444;\n left: 50%;\n margin-left: -12px;\n position: absolute;\n top: -24px;\n}\n.llms-widget-info p {\n margin: 0;\n}\n\n.llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n}\n.llms-widget-row:after {\n clear: both;\n}\n\n.llms-widget-row .no-padding {\n padding: 0 !important;\n}\n\n/******************************************************************\n\nSVG Styles\n\n******************************************************************/\nsvg.icon {\n height: 24px;\n width: 24px;\n display: inline-block;\n fill: currentColor;\n vertical-align: baseline;\n}\nbutton svg.icon {\n height: 18px;\n width: 18px;\n margin: 4px -4px 0 4px;\n -webkit-filter: drop-shadow(0 1px #eee);\n filter: drop-shadow(0 1px #eee);\n float: right;\n}\nsvg.icon.menu-icon {\n height: 20px;\n width: 20px;\n display: inline-block;\n fill: currentColor;\n vertical-align: text-bottom;\n margin-right: 10px;\n}\nsvg.icon.tree-icon {\n height: 13px;\n width: 13px;\n vertical-align: middle;\n}\nsvg.icon.section-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n}\nsvg.icon.button-icon-attr {\n height: 10px;\n width: 10px;\n vertical-align: middle;\n}\nsvg.icon.list-icon {\n height: 12px;\n width: 12px;\n vertical-align: middle;\n}\nsvg.icon.list-icon.on {\n color: #466dd8;\n}\nsvg.icon.list-icon.off {\n color: #444;\n}\nsvg.icon.detail-icon {\n height: 16px;\n width: 16px;\n vertical-align: text-bottom;\n cursor: default;\n}\nsvg.icon.detail-icon.on {\n color: #466dd8;\n}\nsvg.icon.detail-icon.off {\n color: #ccc;\n}\nsvg.icon-ion-arrow-up {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\nsvg use {\n pointer-events: none;\n}\n\n/******************************************************************\n\nMetabox Tabs\n\n******************************************************************/\n#side-sortables .tab-content {\n padding: 0;\n}\n\n.llms-mb-container .tab-content {\n display: none;\n background-color: #FFF;\n padding: 0 20px;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) {\n margin: 0 0 15px 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li {\n padding: 20px 0;\n margin: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.select:not([class*=d-]) {\n width: 100%;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li:last-child {\n border: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered) > li.top {\n border-bottom: 0;\n padding-bottom: 0;\n}\n.llms-mb-container .tab-content .full-width {\n width: 100%;\n}\n.llms-mb-container .tab-content #wp-content-editor-tools {\n background: none;\n}\n\n.llms-mb-container .tab-content.llms-active {\n display: inherit;\n}\n\n.llms-mb-container .tab-content .no-border {\n border-bottom: 0px;\n}\n\n/******************************************************************\n\nStyles for topModal modal\n\n******************************************************************/\n/**\n * Base modal styles\n */\n.topModal {\n display: none;\n position: relative;\n border: 4px solid #808080;\n background: #fff;\n z-index: 1000001;\n padding: 2px;\n max-width: 500px;\n margin: 34px auto 0;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-color: #ffffff;\n border-radius: 2px;\n border: 1px solid #dddddd;\n}\n\n.topModalClose {\n float: right;\n cursor: pointer;\n margin-right: 10px;\n margin-top: 10px;\n}\n\n.topModalContainer {\n display: none;\n overflow: auto;\n overflow-y: hidden;\n position: fixed;\n top: 0 !important;\n right: 0;\n bottom: 0;\n left: 0;\n -webkit-overflow-scrolling: touch;\n width: auto !important;\n margin-left: 0 !important;\n background-color: transparent !important;\n z-index: 100002 !important;\n}\n\n.topModalBackground {\n display: none;\n background: #000;\n position: fixed;\n height: 100%;\n width: 100%;\n top: 0 !important;\n left: 0;\n margin-left: 0 !important;\n z-index: 100002 !important;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n overflow: auto;\n overflow-y: hidden;\n}\n\nbody.modal-open {\n overflow: hidden;\n}\n\n.llms-modal-header {\n border-top-right-radius: 1px;\n border-top-left-radius: 1px;\n background: #466dd8;\n color: #eeeeee;\n padding: 10px 15px;\n font-size: 18px;\n}\n\n#llms-icon-modal-close {\n width: 16px;\n height: 16px;\n fill: #fefefe;\n}\n\n.llms-modal-content {\n padding: 20px;\n}\n.llms-modal-content h3 {\n margin-top: 0;\n}\n\n/**\n * Custom Modal Styles for LifterLMS\n */\n.llms-modal-form h1 {\n margin-top: 0;\n}\n.llms-modal-form input[type=text] {\n width: 100%;\n}\n.llms-modal-form textarea,\n.llms-modal-form input[type=text],\n.llms-modal-form input[type=password],\n.llms-modal-form input[type=file],\n.llms-modal-form input[type=datetime],\n.llms-modal-form input[type=datetime-local],\n.llms-modal-form input[type=date],\n.llms-modal-form input[type=month],\n.llms-modal-form input[type=time],\n.llms-modal-form input[type=week],\n.llms-modal-form input[type=number],\n.llms-modal-form input[type=email],\n.llms-modal-form input[type=url],\n.llms-modal-form input[type=search],\n.llms-modal-form input[type=tel],\n.llms-modal-form input[type=color] {\n padding: 0 0.4em 0 0.4em;\n margin-bottom: 2em;\n vertical-align: middle;\n border-radius: 3px;\n min-width: 50px;\n max-width: 635px;\n width: 100%;\n min-height: 32px;\n background-color: #fff;\n border: 1px solid #ccc;\n margin: 0 0 24px 0;\n outline: none;\n -webkit-transition: border 0.3s ease-in-out 0s;\n transition: border 0.3s ease-in-out 0s;\n}\n.llms-modal-form textarea:focus,\n.llms-modal-form input[type=text]:focus,\n.llms-modal-form input[type=password]:focus,\n.llms-modal-form input[type=file]:focus,\n.llms-modal-form input[type=datetime]:focus,\n.llms-modal-form input[type=datetime-local]:focus,\n.llms-modal-form input[type=date]:focus,\n.llms-modal-form input[type=month]:focus,\n.llms-modal-form input[type=time]:focus,\n.llms-modal-form input[type=week]:focus,\n.llms-modal-form input[type=number]:focus,\n.llms-modal-form input[type=email]:focus,\n.llms-modal-form input[type=url]:focus,\n.llms-modal-form input[type=search]:focus,\n.llms-modal-form input[type=tel]:focus,\n.llms-modal-form input[type=color]:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form textarea {\n padding: 0.4em !important;\n height: 100px !important;\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n outline: none;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-modal-form textarea:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single {\n border-radius: 3px;\n vertical-align: middle;\n min-height: 32px;\n border: 1px solid #ccc;\n width: 100%;\n background: #fefefe !important;\n outline: none;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-box-shadow: 0 0 0 #fff;\n box-shadow: 0 0 0 #fff;\n line-height: 32px;\n margin: 0 0 24px 0;\n}\n.llms-modal-form .chosen-container-single .chosen-single:focus {\n background: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-single div b {\n margin-top: 4px;\n}\n.llms-modal-form .chosen-search input[type=text] {\n border: 1px solid #ccc;\n}\n.llms-modal-form .chosen-search input[type=text]:focus {\n background-color: #fefefe;\n border: 1px solid #466dd8;\n}\n.llms-modal-form .chosen-container-single .chosen-drop {\n margin-top: -28px;\n}\n.llms-modal-form .llms-button-primary, .llms-modal-form .llms-button-secondary {\n padding: 10px 10px;\n border-radius: 0;\n -webkit-transition: 0.5s;\n transition: 0.5s;\n -webkit-box-shadow: 0 1px 1px #ccc;\n box-shadow: 0 1px 1px #ccc;\n}\n.llms-modal-form .llms-button-primary.full, .llms-modal-form .llms-button-secondary.full {\n width: 100%;\n}\n\n.modal-open .select2-dropdown {\n z-index: 1000005;\n}\n\n.button.llms-merge-code-button {\n vertical-align: middle;\n}\n.button.llms-merge-code-button svg {\n margin-right: 2px;\n position: relative;\n top: 4px;\n width: 16px;\n}\n.button.llms-merge-code-button svg g {\n fill: currentColor;\n}\n\n.llms-mb-container .llms-merge-code-wrapper {\n float: right;\n top: -5px;\n}\n\n.llms-merge-code-wrapper {\n display: inline;\n position: relative;\n}\n\n.llms-merge-codes {\n background: #f7f7f7;\n border: 1px solid #ccc;\n border-radius: 3px;\n -webkit-box-shadow: 0 1px 0 #ccc;\n box-shadow: 0 1px 0 #ccc;\n color: #555;\n display: none;\n left: 1px;\n overflow: hidden;\n position: absolute;\n top: 30px;\n width: 200px;\n}\n.llms-merge-codes ul {\n margin: 0;\n padding: 0;\n}\n.llms-merge-codes li {\n cursor: pointer;\n margin: 0;\n padding: 4px 8px !important;\n border-bottom: 1px solid #ccc;\n}\n.llms-merge-codes li:hover {\n color: #23282d;\n background: #fefefe;\n}\n.llms-merge-codes.active {\n display: block;\n z-index: 777;\n}\n\n/******************************************************************\n\nBase Mobile\n\n******************************************************************/\n.llms-nav-tab,\n.llms-nav-tab-filters {\n display: block;\n width: 100%;\n}\n\nform.llms-nav-tab-filters.full-width {\n width: 100%;\n}\nform.llms-nav-tab-filters.full-width label {\n display: inline-block;\n width: 10%;\n text-align: left;\n}\nform.llms-nav-tab-filters.full-width .select2-container {\n width: 85% !important;\n}\n\n.llms-nav-tab-settings {\n display: block;\n width: 100%;\n}\n\n#llms-form-wrapper .llms-select {\n width: 100%;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-checkbox {\n display: inline-block;\n width: 100%;\n text-align: left;\n}\n#llms-form-wrapper .llms-filter-options {\n width: 100%;\n}\n#llms-form-wrapper .llms-date-select {\n width: 100%;\n display: inline-block;\n margin-bottom: 20px;\n}\n#llms-form-wrapper .llms-date-select input[type=text] {\n width: 100%;\n}\nul.tabs li {\n display: block;\n}\n\n@media only screen and (min-width: 481px) {\n /******************************************************************\n\n Larger Phones\n\n ******************************************************************/\n #llms-form-wrapper .llms-checkbox {\n width: 33%;\n }\n}\n@media only screen and (min-width: 768px) {\n /******************************************************************\n\n Tablets and small computers\n\n ******************************************************************/\n ul.tabs li {\n display: inline-block;\n }\n .llms-nav-tab {\n display: inline-block;\n width: 33%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-filter-options {\n width: 50%;\n max-width: 500px;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget input[type=text],\n.llms-widget input[type=password],\n.llms-widget input[type=datetime],\n.llms-widget input[type=datetime-local],\n.llms-widget input[type=date],\n.llms-widget input[type=month],\n.llms-widget input[type=time],\n.llms-widget input[type=week],\n.llms-widget input[type=number],\n.llms-widget input[type=email],\n.llms-widget input[type=url],\n.llms-widget input[type=search],\n.llms-widget input[type=tel],\n.llms-widget input[type=color],\n.llms-widget select,\n.llms-widget textarea {\n width: 50%;\n }\n .llms-widget input[type=text].medium,\n.llms-widget input[type=password].medium,\n.llms-widget input[type=datetime].medium,\n.llms-widget input[type=datetime-local].medium,\n.llms-widget input[type=date].medium,\n.llms-widget input[type=month].medium,\n.llms-widget input[type=time].medium,\n.llms-widget input[type=week].medium,\n.llms-widget input[type=number].medium,\n.llms-widget input[type=email].medium,\n.llms-widget input[type=url].medium,\n.llms-widget input[type=search].medium,\n.llms-widget input[type=tel].medium,\n.llms-widget input[type=color].medium,\n.llms-widget select.medium,\n.llms-widget textarea.medium {\n width: 30%;\n }\n .llms-widget input[type=text].small,\n.llms-widget input[type=password].small,\n.llms-widget input[type=datetime].small,\n.llms-widget input[type=datetime-local].small,\n.llms-widget input[type=date].small,\n.llms-widget input[type=month].small,\n.llms-widget input[type=time].small,\n.llms-widget input[type=week].small,\n.llms-widget input[type=number].small,\n.llms-widget input[type=email].small,\n.llms-widget input[type=url].small,\n.llms-widget input[type=search].small,\n.llms-widget input[type=tel].small,\n.llms-widget input[type=color].small,\n.llms-widget select.small,\n.llms-widget textarea.small {\n width: 20%;\n }\n .llms-widget input[type=text].tiny,\n.llms-widget input[type=password].tiny,\n.llms-widget input[type=datetime].tiny,\n.llms-widget input[type=datetime-local].tiny,\n.llms-widget input[type=date].tiny,\n.llms-widget input[type=month].tiny,\n.llms-widget input[type=time].tiny,\n.llms-widget input[type=week].tiny,\n.llms-widget input[type=number].tiny,\n.llms-widget input[type=email].tiny,\n.llms-widget input[type=url].tiny,\n.llms-widget input[type=search].tiny,\n.llms-widget input[type=tel].tiny,\n.llms-widget input[type=color].tiny,\n.llms-widget select.tiny,\n.llms-widget textarea.tiny {\n width: 10%;\n }\n}\n@media only screen and (min-width: 1030px) {\n /******************************************************************\n\n Desktop Stylesheet\n\n ******************************************************************/\n .llms-nav-tab {\n display: inline-block;\n width: 33.333%;\n }\n .llms-nav-tab-settings {\n display: inline-block;\n width: 25%;\n }\n #llms-form-wrapper .llms-select {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-select:first-child {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options {\n display: inline-block;\n width: 47.5%;\n }\n #llms-form-wrapper .llms-filter-options.date-filter {\n margin-right: 5%;\n }\n #llms-form-wrapper .llms-filter-options .llms-date-select {\n margin-bottom: 0;\n }\n #llms-form-wrapper .llms-date-select {\n width: 47.5%;\n }\n #llms-form-wrapper .llms-date-select:first-child {\n margin-right: 5%;\n }\n .llms-widget-row:before, .llms-widget-row:after {\n content: \" \";\n display: table;\n }\n .llms-widget-row:after {\n clear: both;\n }\n .llms-widget-row .llms-widget-1-5 {\n vertical-align: top;\n width: 20%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-4 {\n vertical-align: top;\n width: 25%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-3 {\n width: 33.3%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n }\n .llms-widget-row .llms-widget-1-2 {\n width: 50%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0 5px;\n vertical-align: top;\n }\n}\n@media only screen and (min-width: 1240px) {\n /******************************************************************\n\n large Monitor Stylesheet\n\n ******************************************************************/\n .llms-nav-tab-filters,\n.llms-nav-tab-settings {\n float: left;\n width: 12.5%;\n }\n}\n.wrap.lifterlms {\n margin-top: 0;\n}\n\n.llms-header {\n background-color: #FFF;\n margin: 0 0 0 -20px;\n padding: 20px 10px;\n position: relative;\n z-index: 1;\n}\n.llms-header .llms-inside-wrap {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n padding: 0 10px;\n}\n.llms-header .lifterlms-logo {\n -webkit-box-flex: 0;\n -ms-flex: 0 0 190px;\n flex: 0 0 190px;\n max-height: 52px;\n margin-right: 10px;\n}\n.llms-header .llms-meta {\n -ms-flex-item-align: center;\n align-self: center;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n font-size: 16px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n line-height: 1.5;\n}\n.llms-header .llms-meta .llms-version {\n background-color: #1d2327;\n color: #FFF;\n border-radius: 999px;\n font-size: 13px;\n font-weight: 700;\n padding: 6px 12px;\n}\n.llms-header .llms-meta a {\n display: inline-block;\n}\n.llms-header .llms-meta .llms-license {\n border-right: 1px solid #CCC;\n font-weight: 700;\n margin-right: 12px;\n padding-right: 12px;\n}\n.llms-header .llms-meta .llms-license a {\n text-decoration: none;\n}\n.llms-header .llms-meta .llms-license a:before {\n content: \"\\f534\";\n display: inline-block;\n font: 400 16px/1 dashicons;\n left: 0;\n padding-right: 3px;\n position: relative;\n text-decoration: none;\n vertical-align: text-bottom;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none {\n color: #888;\n}\n.llms-header .llms-meta .llms-license a.llms-license-none:before {\n content: \"\\f335\";\n}\n.llms-header .llms-meta .llms-license a.llms-license-active {\n color: #008a20;\n}\n.llms-header .llms-meta .llms-license a.llms-license-active:before {\n content: \"\\f112\";\n}\n.llms-header .llms-meta .llms-support {\n font-weight: 700;\n}\n.llms-header .llms-meta .llms-support a {\n color: #1d2327;\n text-decoration: none;\n}\n\n.llms-subheader {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n margin-left: -20px;\n padding: 10px 20px;\n width: 100%;\n z-index: 1;\n}\n.llms-subheader h1 {\n font-weight: 700;\n padding: 0;\n}\n.llms-subheader h1 a {\n color: inherit;\n text-decoration: none;\n}\n\n#post_course_difficulty {\n min-width: 200px;\n}\n\n#_video-embed, #_audio-embed {\n width: 100%;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\nhr {\n background-color: #CCC;\n border: none;\n height: 1px;\n margin: 30px 0;\n padding: 0;\n}\n\n.llms_certificate_default_image, .llms_certificate_image {\n width: 300px;\n}\n\n.llms_achievement_default_image, .llms_achievement_image {\n width: 120px;\n}\n\ndiv[id^=lifterlms-] .inside {\n overflow: visible;\n}\n\n.notice.llms-admin-notice {\n background-color: #FFF;\n border: 1px solid #ccd0d4;\n -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n padding: 0 !important;\n position: relative;\n}\n.notice.llms-admin-notice .notice-dismiss {\n text-decoration: none;\n}\n.notice.llms-admin-notice.notice-warning {\n border-left: 4px solid #F8954F;\n}\n.notice.llms-admin-notice.notice-warning .llms-admin-notice-icon {\n background-color: #FEF4ED;\n}\n.notice.llms-admin-notice.notice-info {\n border-left: 4px solid #466DD8;\n}\n.notice.llms-admin-notice.notice-info h3 {\n color: #466DD8;\n}\n.notice.llms-admin-notice.notice-info .llms-admin-notice-icon {\n background-color: #EDF0FB;\n}\n.notice.llms-admin-notice.notice-success {\n border-left: 4px solid #18A957;\n}\n.notice.llms-admin-notice.notice-success h3 {\n color: #18A957;\n}\n.notice.llms-admin-notice.notice-success .llms-admin-notice-icon {\n background-color: #E8F6EE;\n}\n.notice.llms-admin-notice.notice-error {\n border-left: 4px solid #DF1642;\n}\n.notice.llms-admin-notice.notice-error h3 {\n color: #9C0F2E;\n}\n.notice.llms-admin-notice.notice-error .llms-admin-notice-icon {\n background-color: #FCE8EC;\n}\n.notice.llms-admin-notice .llms-admin-notice-icon {\n background-image: url(../../assets/images/lifterlms-icon-color.png);\n background-position: center center;\n background-repeat: no-repeat;\n background-size: 30px;\n min-width: 70px;\n}\n.notice.llms-admin-notice .llms-admin-notice-content {\n color: #111;\n padding: 20px;\n}\n.notice.llms-admin-notice h3 {\n font-size: 18px;\n font-weight: 700;\n line-height: 25px;\n margin: 0 0 15px 0;\n}\n.notice.llms-admin-notice button,\n.notice.llms-admin-notice .llms-button-primary {\n display: inline-block;\n}\n.notice.llms-admin-notice p {\n font-size: 14px;\n line-height: 22px;\n margin: 0 0 15px 0;\n max-width: 65em;\n padding: 0;\n}\n.notice.llms-admin-notice p:last-of-type {\n margin-bottom: 0;\n}\n\n.llms-button-action.small .dashicons,\n.llms-button-danger.small .dashicons,\n.llms-button-primary.small .dashicons,\n.llms-button-secondary.small .dashicons {\n font-size: 13px;\n height: 13px;\n width: 13px;\n}\n.llms-button-action:hover,\n.llms-button-danger:hover,\n.llms-button-primary:hover,\n.llms-button-secondary:hover {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\na.llms-view-as {\n line-height: 2;\n margin-right: 8px;\n}\n\n.llms-image-field-preview {\n max-height: 80px;\n vertical-align: middle;\n width: auto;\n}\n\n.llms-image-field-remove.hidden {\n display: none;\n}\n\n.llms-log-viewer {\n background: #fff;\n border: 1px solid #e5e5e5;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n margin: 20px 0;\n padding: 25px;\n}\n.llms-log-viewer pre {\n font-family: monospace;\n margin: 0;\n padding: 0;\n white-space: pre-wrap;\n}\n\n.llms-status--tools .llms-table {\n background: #fff;\n border: 1px solid #e5e5e5;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);\n}\n.llms-status--tools .llms-table td, .llms-status--tools .llms-table th {\n padding: 10px;\n vertical-align: top;\n}\n.llms-status--tools .llms-table th {\n width: 28%;\n}\n.llms-status--tools .llms-table p {\n margin: 0 0 10px;\n}\n\n.llms-error {\n color: #e5554e;\n font-style: italic;\n}\n\n.llms-rating-stars {\n color: #ffb900;\n text-decoration: none;\n}\n\n@media screen and (max-width: 782px) {\n .llms-header {\n top: 46px;\n }\n .llms-header .llms-inside-wrap {\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n gap: 20px;\n }\n .llms-header .llms-inside-wrap .lifterlms-logo {\n -ms-flex-item-align: center;\n align-self: center;\n -webkit-box-flex: inherit;\n -ms-flex: inherit;\n flex: inherit;\n max-height: initial;\n max-width: 200px;\n }\n .llms-header .llms-inside-wrap .llms-meta {\n -webkit-column-gap: 10px;\n -moz-column-gap: 10px;\n column-gap: 10px;\n }\n}\n.llms-table-wrap {\n position: relative;\n}\n\n.llms-table-header {\n padding: 0;\n}\n.llms-table-header:before, .llms-table-header:after {\n content: \" \";\n display: table;\n}\n.llms-table-header:after {\n clear: both;\n}\n.llms-table-header h2 {\n font-size: 20px;\n padding: 0;\n display: inline-block;\n line-height: 1.5;\n margin: 0 0 20px 0;\n vertical-align: middle;\n}\n.llms-table-header .llms-table-search,\n.llms-table-header .llms-table-filters {\n float: right;\n padding-left: 10px;\n}\n.llms-table-header .llms-table-search input {\n margin: 0;\n padding: 0 8px;\n}\n\n.llms-table {\n border: 1px solid #c3c4c7;\n border-collapse: collapse;\n width: 100%;\n}\n.llms-table a:not(.small) {\n color: #466dd8;\n}\n.llms-table a:not(.small):hover {\n color: #2b55cb;\n}\n.llms-table td, .llms-table th {\n border-bottom: 1px solid #c3c4c7;\n padding: 10px 12px;\n text-align: center;\n}\n.llms-table td.expandable.closed, .llms-table th.expandable.closed {\n display: none;\n}\n.llms-table td .llms-button-primary,\n.llms-table td .llms-button-secondary,\n.llms-table td .llms-button-action,\n.llms-table td .llms-button-danger, .llms-table th .llms-button-primary,\n.llms-table th .llms-button-secondary,\n.llms-table th .llms-button-action,\n.llms-table th .llms-button-danger {\n display: inline-block;\n}\n.llms-table tr.llms-quiz-pending td {\n font-weight: 700;\n}\n.llms-table thead th,\n.llms-table tfoot th {\n background-color: #FFF;\n font-weight: 700;\n}\n.llms-table thead th a.llms-sortable,\n.llms-table tfoot th a.llms-sortable {\n padding-right: 16px;\n position: relative;\n text-decoration: none;\n width: 100%;\n}\n.llms-table thead th a.llms-sortable.active[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable.active[data-order=DESC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable.active[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable.active[data-order=ASC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .asc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=DESC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=DESC] .desc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .asc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .asc {\n opacity: 1;\n}\n.llms-table thead th a.llms-sortable:hover[data-order=ASC] .desc,\n.llms-table tfoot th a.llms-sortable:hover[data-order=ASC] .desc {\n opacity: 0;\n}\n.llms-table thead th a.llms-sortable .dashicons,\n.llms-table tfoot th a.llms-sortable .dashicons {\n color: #444;\n font-size: 16px;\n height: 16px;\n opacity: 0;\n position: absolute;\n width: 16px;\n}\n.llms-table tfoot th {\n border-bottom: none;\n}\n.llms-table tfoot th .llms-table-export {\n float: left;\n}\n.llms-table tfoot th .llms-table-export .llms-table-progress {\n background: #efefef;\n display: none;\n margin-left: 8px;\n vertical-align: middle;\n width: 100px;\n}\n.llms-table tfoot th .llms-table-pagination {\n float: right;\n}\n.llms-table.zebra tbody tr:nth-child(even) th, .llms-table.zebra tbody tr:nth-child(even) td {\n background-color: #fff;\n}\n.llms-table.zebra tbody tr:nth-child(odd) th, .llms-table.zebra tbody tr:nth-child(odd) td {\n background-color: #f6f7f7;\n}\n.llms-table.text-left td, .llms-table.text-left th {\n text-align: left;\n}\n.llms-table.size-large td, .llms-table.size-large th {\n font-size: 14px;\n padding: 10px 12px;\n}\n.llms-table .llms-drag-handle {\n color: #777;\n cursor: pointer;\n -webkit-transition: color 0.4s ease;\n transition: color 0.4s ease;\n}\n.llms-table .llms-action-icon {\n color: #777;\n text-decoration: none;\n}\n.llms-table .llms-action-icon .tooltip {\n cursor: pointer;\n}\n.llms-table .llms-action-icon:hover {\n color: #466dd8;\n}\n.llms-table .llms-action-icon.danger:hover {\n color: #e5554e;\n}\n.llms-table .llms-table-page-count {\n font-size: 12px;\n padding: 0 5px;\n}\n\n.llms-table-progress {\n text-align: center;\n}\n.llms-table-progress .llms-table-progress-bar {\n background: #eee;\n border-radius: 10px;\n height: 16px;\n overflow: hidden;\n position: relative;\n}\n.llms-table-progress .llms-table-progress-bar .llms-table-progress-inner {\n background: #466dd8;\n height: 100%;\n -webkit-transition: width 0.2s ease;\n transition: width 0.2s ease;\n}\n.llms-table-progress .llms-table-progress-text {\n color: #466dd8;\n font-size: 12px;\n font-weight: 700;\n line-height: 16px;\n}\n\n.llms-table.llms-gateway-table .status .fa,\n.llms-table.llms-integrations-table .status .fa {\n color: #466dd8;\n font-size: 22px;\n}\n.llms-table.llms-gateway-table .sort,\n.llms-table.llms-integrations-table .sort {\n cursor: move;\n text-align: center;\n width: 10px;\n}\n\n.llms-gb-table-notifications th, .llms-gb-table-notifications td {\n text-align: left;\n}\n\n.llms-order-note .llms-order-note-content {\n background: #efefef;\n margin-bottom: 10px;\n padding: 10px;\n position: relative;\n}\n.llms-order-note .llms-order-note-content:after {\n border-style: solid;\n border-color: #efefef transparent;\n border-width: 10px 10px 0 0;\n bottom: -10px;\n content: \"\";\n display: block;\n height: 0;\n left: 20px;\n position: absolute;\n width: 0;\n}\n.llms-order-note .llms-order-note-content p {\n font-size: 13px;\n margin: 0;\n line-height: 1.5;\n}\n.llms-order-note .llms-order-note-meta {\n color: #999;\n font-size: 11px;\n margin-left: 10px;\n}\n\n.llms-mb-list label {\n font-size: 15px;\n font-weight: 700;\n line-height: 1.5;\n display: block;\n width: 100%;\n}\n.llms-mb-list .description {\n margin-bottom: 8px;\n}\n.llms-mb-list .input-full {\n width: 100%;\n}\n\n#poststuff .llms-metabox h2, #poststuff .llms-metabox h3, #poststuff .llms-metabox h6 {\n margin: 0;\n padding: 0;\n}\n#poststuff .llms-metabox h2 {\n font-size: 18px;\n font-weight: 700;\n}\n#poststuff .llms-metabox h3 {\n color: #777;\n font-size: 16px;\n}\n#poststuff .llms-metabox h4 {\n border-bottom: 1px solid #e5e5e5;\n padding: 0;\n margin: 0;\n}\n#poststuff .llms-metabox .llms-transaction-test-mode {\n background: #ffffd7;\n font-style: italic;\n left: 0;\n padding: 2px;\n position: absolute;\n right: 0;\n top: 0;\n text-align: center;\n}\n#poststuff .llms-metabox a.llms-editable,\n#poststuff .llms-metabox .llms-metabox-icon,\n#poststuff .llms-metabox button.llms-editable {\n color: #999;\n text-decoration: none;\n}\n#poststuff .llms-metabox a.llms-editable:hover,\n#poststuff .llms-metabox .llms-metabox-icon:hover,\n#poststuff .llms-metabox button.llms-editable:hover {\n color: #466dd8;\n}\n#poststuff .llms-metabox button.llms-editable {\n border: none;\n background: none;\n cursor: pointer;\n padding: 0;\n vertical-align: top;\n}\n#poststuff .llms-metabox h4 button.llms-editable {\n float: right;\n}\n#poststuff .llms-metabox .llms-table {\n margin-top: 10px;\n}\n\n.llms-metabox-section {\n background: #fff;\n margin-top: 25px;\n position: relative;\n}\n.llms-metabox-section.no-top-margin {\n margin-top: 0;\n}\n.llms-metabox-section .llms-metabox-field {\n margin: 15px 0;\n position: relative;\n}\n.llms-metabox-section .llms-metabox-field label {\n color: #777;\n display: block;\n margin-bottom: 5px;\n font-weight: 500;\n vertical-align: baseline;\n}\n.llms-metabox-section .llms-metabox-field select,\n.llms-metabox-section .llms-metabox-field textarea,\n.llms-metabox-section .llms-metabox-field input[type=text],\n.llms-metabox-section .llms-metabox-field input[type=number] {\n width: 100%;\n}\n.llms-metabox-section .llms-metabox-field input.md-text {\n width: 105px;\n}\n.llms-metabox-section .llms-metabox-field input.sm-text {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-date-input {\n width: 95px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field .llms-time-input {\n width: 45px;\n}\n.llms-metabox-section .llms-metabox-field .llms-datetime-field em {\n font-style: normal;\n padding: 0 3px;\n}\n\n.llms-collapsible {\n border: 1px solid #e5e5e5;\n position: relative;\n margin-top: 0;\n margin-bottom: -1px;\n}\n.llms-collapsible:last-child {\n margin-bottom: 0;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-down {\n display: none;\n}\n.llms-collapsible.opened .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header {\n padding: 10px;\n}\n.llms-collapsible .llms-collapsible-header h3 {\n color: #777;\n margin: 0;\n font-size: 16px;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: inline;\n}\n.llms-collapsible .llms-collapsible-header .dashicons-arrow-up {\n display: none;\n}\n.llms-collapsible .llms-collapsible-header a {\n text-decoration: none;\n}\n.llms-collapsible .llms-collapsible-header .dashicons {\n color: #777;\n cursor: pointer;\n -webkit-transition: color 0.4s ease;\n transition: color 0.4s ease;\n}\n.llms-collapsible .llms-collapsible-header .dashicons:hover {\n color: #466dd8;\n}\n.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-trash:hover, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-no:hover {\n color: #e5554e;\n}\n.llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger, .llms-collapsible .llms-collapsible-header .dashicons.dashicons-warning.medium-danger:hover {\n color: #ff922b;\n}\n.llms-collapsible .llms-collapsible-body {\n display: none;\n padding: 10px;\n}\n\n._llms_instructors_data.repeater .llms-repeater-rows .llms-repeater-row:first-child .llms-repeater-remove {\n display: none;\n}\n._llms_instructors_data.repeater .llms-mb-list {\n padding: 0 5px !important;\n}\n\n.post-type-llms_order #post-body-content {\n display: none;\n}\n\n#lifterlms-order-details .handlediv,\n#lifterlms-order-details .handlediv.button-link,\n#lifterlms-order-details .postbox-header {\n display: none;\n}\n#lifterlms-order-details .inside {\n padding: 20px;\n margin-top: 0;\n}\n\n.llms-table tbody tr.llms-txn-failed td {\n background-color: rgba(229, 85, 78, 0.5);\n border-bottom-color: rgba(229, 85, 78, 0.5);\n}\n\n.llms-table tbody tr.llms-txn-refunded td {\n background-color: rgba(255, 165, 0, 0.5);\n border-bottom-color: rgba(255, 165, 0, 0.5);\n}\n\n.llms-txn-refund-form .llms-metabox-section,\n.llms-manual-txn-form .llms-metabox-section {\n margin-top: 0;\n}\n.llms-txn-refund-form .llms-metabox-field,\n.llms-manual-txn-form .llms-metabox-field {\n text-align: right;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=number],\n.llms-manual-txn-form .llms-metabox-field input[type=number] {\n max-width: 100px;\n}\n.llms-txn-refund-form .llms-metabox-field input[type=text],\n.llms-manual-txn-form .llms-metabox-field input[type=text] {\n max-width: 340px;\n}\n\n.llms-manual-txn-form {\n background-color: #eaeaea;\n}\n.llms-manual-txn-form .llms-metabox-section {\n background-color: #eaeaea;\n}\n\n#llms-remaining-edit {\n display: none;\n}\n\n.llms-remaining-edit--content label, .llms-remaining-edit--content span, .llms-remaining-edit--content textarea {\n display: block;\n}\n.llms-remaining-edit--content label {\n margin-bottom: 20px;\n}\n.llms-remaining-edit--content textarea, .llms-remaining-edit--content input {\n width: 100%;\n}\n\n.submitbox .llms-mb-section,\n.llms-award-engagement-submitbox .llms-mb-list {\n margin-bottom: 12px;\n}\n.submitbox .llms-mb-section:last-of-type,\n.llms-award-engagement-submitbox .llms-mb-list:last-of-type {\n margin-bottom: 0;\n}\n.sync-action:before, .submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n font: normal 20px/1 dashicons;\n speak: never;\n display: inline-block;\n margin-left: -1px;\n padding-right: 3px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: relative;\n top: -1px;\n color: #8c8f94;\n}\nbody:not(.admin-color-fresh) .sync-action:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.student-info:before, body:not(.admin-color-fresh) .submitbox .llms-mb-section.post_author_override label:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.student-info:before,\nbody:not(.admin-color-fresh) .llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n color: currentColor;\n}\n\n.submitbox .llms-mb-section.student-info:before, .submitbox .llms-mb-section.post_author_override label:before,\n.llms-award-engagement-submitbox .llms-mb-list.student-info:before,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label:before {\n content: \"\\f110\";\n}\n.sync-action:before {\n content: \"\\f113\";\n color: white;\n}\n\n.submitbox .llms-mb-section.post_author_override label,\n.llms-award-engagement-submitbox .llms-mb-list.post_author_override label {\n display: inline-block;\n width: auto;\n}\n\n.llms-metabox #llms-new-access-plan-model {\n display: none;\n}\n.llms-metabox .llms-access-plans {\n margin-top: 10px;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg {\n display: none;\n}\n.llms-metabox .llms-access-plans > .llms-no-plans-msg:last-child {\n -webkit-box-shadow: inset 0 0 0 1px #e5e5e5;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n display: block;\n text-align: center;\n padding: 10px;\n}\n.llms-metabox .llms-access-plans.dragging {\n background: #efefef;\n -webkit-box-shadow: inset 0 0 0 1px #e5e5e5;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-metabox .llms-access-plans .llms-spinning {\n z-index: 1;\n}\n.llms-metabox .llms-access-plans .llms-invalid {\n border-color: #e5554e;\n}\n.llms-metabox .llms-access-plans .llms-invalid .dashicons-warning {\n display: inline;\n}\n.llms-metabox .llms-access-plans .llms-needs-attention .dashicons-warning.medium-danger {\n display: inline;\n}\n.llms-metabox .llms-access-plans .dashicons-warning {\n display: none;\n}\n.llms-metabox .llms-access-plan {\n text-align: left;\n}\n.llms-metabox .llms-access-plan [data-tip]:before {\n text-align: center;\n}\n.llms-metabox .llms-access-plan .llms-plan-link,\n.llms-metabox .llms-access-plan [data-controller] {\n display: none;\n}\n.llms-metabox .llms-access-plan:hover .llms-plan-link, .llms-metabox .llms-access-plan.opened .llms-plan-link {\n display: inline-block;\n}\n.llms-metabox .llms-access-plan .llms-metabox-field {\n margin: 5px 0;\n}\n.llms-metabox .llms-access-plan .llms-required {\n color: #e5554e;\n margin-left: 3px;\n}\n.llms-metabox .llms-access-plan .notice {\n margin-left: 0;\n}\n\n.llms-metabox-students .llms-table tr .name {\n text-align: left;\n}\n.llms-metabox-students .llms-add-student:hover {\n color: #83c373;\n}\n.llms-metabox-students .llms-remove-student:hover {\n color: #e5554e;\n}\n\n.llms-mb-container .tab-content ul:not(.select2-selection__rendered).llms-mb-repeater-fields > li.llms-mb-list {\n border-bottom: none;\n padding: 0 0 10px;\n}\n\n.llms-mb-list.repeater .llms-repeater-rows {\n position: relative;\n margin-top: 10px;\n min-height: 10px;\n}\n.llms-mb-list.repeater .llms-repeater-rows.dragging {\n background: #efefef;\n -webkit-box-shadow: inset 0 0 0 1px #e5e5e5;\n box-shadow: inset 0 0 0 1px #e5e5e5;\n}\n.llms-mb-list.repeater .llms-repeater-row {\n background: #fff;\n}\n.llms-mb-list.repeater .llms-mb-repeater-footer {\n text-align: right;\n margin-top: 20px;\n}\n.llms-mb-list.repeater .tmce-active .wp-editor-area {\n color: #32373c;\n}\n\n.llms-builder-launcher p {\n margin-top: 0;\n}\n.llms-builder-launcher ol {\n margin-top: -6px;\n}\n.llms-builder-launcher .llms-button-primary {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n\n.wp-list-table .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.wp-list-table .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.wp-list-table .llms-status.llms-active, .wp-list-table .llms-status.llms-completed, .wp-list-table .llms-status.llms-pass, .wp-list-table .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.wp-list-table .llms-status.llms-fail, .wp-list-table .llms-status.llms-failed, .wp-list-table .llms-status.llms-expired, .wp-list-table .llms-status.llms-cancelled, .wp-list-table .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.wp-list-table .llms-status.llms-incomplete, .wp-list-table .llms-status.llms-on-hold, .wp-list-table .llms-status.llms-pending, .wp-list-table .llms-status.llms-pending-cancel, .wp-list-table .llms-status.llms-refunded, .wp-list-table .llms-status.llms-txn-pending, .wp-list-table .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n\n#lifterlms-order-transactions .llms-table tfoot th {\n text-align: right;\n}\n\n.llms-post-table-post-filter {\n display: inline-block;\n margin-right: 6px;\n max-width: 100%;\n width: 220px;\n}\n\n.llms-nav-tab-wrapper {\n background: #466dd8;\n margin: 20px 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary {\n background: #e1e1e1;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover, .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #cdcdcd;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n color: #414141;\n font-size: 15px;\n padding: 8px 14px;\n}\n.llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link .dashicons {\n font-size: 15px;\n height: 15px;\n width: 15px;\n}\n.llms-nav-tab-wrapper.llms-nav-text {\n background: inherit;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-items {\n padding-left: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item {\n background: inherit;\n color: #646970;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:last-child:after {\n display: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item:after {\n content: \"|\";\n display: inline-block;\n margin: 0 8px 0 6px;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link:hover {\n background: inherit;\n color: #466dd8;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item.llms-active .llms-nav-link {\n background: inherit;\n color: #000;\n font-weight: 600;\n text-decoration: none;\n}\n.llms-nav-tab-wrapper.llms-nav-text .llms-nav-item .llms-nav-link {\n color: #466dd8;\n display: inline-block;\n letter-spacing: 0;\n margin: 0;\n padding: 0;\n text-decoration: underline;\n text-transform: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs {\n background-color: #1c3987;\n margin: 0;\n padding-top: 8px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item {\n margin: 0 3px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item .llms-nav-link {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.llms-nav-tab-wrapper.llms-nav-style-tabs .llms-nav-item.llms-active .llms-nav-link {\n background-color: #FFF;\n color: #466dd8;\n font-weight: 700;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters {\n background-color: #466dd8;\n border-radius: 12px;\n margin: 20px 0;\n overflow: hidden;\n padding: 0;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding-left: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item {\n float: none;\n}\n.llms-nav-tab-wrapper.llms-nav-style-filters .llms-nav-items .llms-nav-item .llms-nav-link {\n padding: 14px;\n}\n.llms-nav-tab-wrapper .llms-nav-items {\n margin: 0;\n padding-left: 10px;\n}\n.llms-nav-tab-wrapper .llms-nav-items:before, .llms-nav-tab-wrapper .llms-nav-items:after {\n content: \" \";\n display: table;\n}\n.llms-nav-tab-wrapper .llms-nav-items:after {\n clear: both;\n}\n.llms-nav-tab-wrapper .llms-nav-item {\n margin: 0;\n}\n.llms-nav-tab-wrapper .llms-nav-item .llms-nav-link:hover {\n background: #466dd8;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n background: #1c3987;\n}\n.llms-nav-tab-wrapper .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 400;\n}\n@media only screen and (min-width: 768px) {\n .llms-nav-tab-wrapper .llms-nav-item {\n float: left;\n }\n .llms-nav-tab-wrapper .llms-nav-item.llms-nav-item-right {\n float: right;\n }\n}\n.llms-nav-tab-wrapper .llms-nav-link {\n color: #fff;\n cursor: pointer;\n display: block;\n font-weight: 400;\n font-size: 15px;\n padding: 9px 18px;\n text-align: center;\n text-decoration: none;\n -webkit-transition: all 0.3s ease;\n transition: all 0.3s ease;\n}\n\n#llms-options-page-contents h2 {\n color: #999;\n font-weight: 500;\n letter-spacing: 2px;\n border-bottom: 1px solid #999;\n}\n\n.llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0;\n padding: 0;\n}\n.llms-reporting.wrap .llms-stab-title {\n color: #1c3987;\n font-size: 36px;\n font-weight: 300;\n margin-bottom: 20px;\n}\n.llms-reporting.wrap td.id a {\n text-decoration: none;\n}\n.llms-reporting.wrap th.id, .llms-reporting.wrap td.id,\n.llms-reporting.wrap th.name, .llms-reporting.wrap td.name,\n.llms-reporting.wrap th.registered, .llms-reporting.wrap td.registered,\n.llms-reporting.wrap th.last_seen, .llms-reporting.wrap td.last_seen,\n.llms-reporting.wrap th.overall_progress, .llms-reporting.wrap td.overall_progress,\n.llms-reporting.wrap th.title, .llms-reporting.wrap td.title,\n.llms-reporting.wrap th.course, .llms-reporting.wrap td.course,\n.llms-reporting.wrap th.lesson, .llms-reporting.wrap td.lesson {\n text-align: left;\n}\n.llms-reporting.wrap td.section-title {\n background: #eaeaea;\n text-align: left;\n font-weight: 700;\n padding: 16px 4px;\n}\n.llms-reporting.wrap td.questions-table {\n text-align: left;\n}\n.llms-reporting.wrap td.questions-table .correct,\n.llms-reporting.wrap td.questions-table .question,\n.llms-reporting.wrap td.questions-table .selected {\n text-align: left;\n max-width: 300px;\n}\n.llms-reporting.wrap td.questions-table .correct img,\n.llms-reporting.wrap td.questions-table .question img,\n.llms-reporting.wrap td.questions-table .selected img {\n height: auto;\n max-width: 64px;\n}\n.llms-reporting.wrap table.quiz-attempts {\n margin-bottom: 40px;\n}\n.llms-reporting.wrap.tab--students .llms-options-page-contents #llms-award-certificate-wrapper .components-button.is-secondary {\n background: #e1e1e1;\n border-radius: 8px;\n -webkit-box-shadow: none;\n box-shadow: none;\n color: #414141;\n font-size: 13px;\n font-weight: 700;\n height: auto;\n padding: 8px 14px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-tab-wrapper.llms-nav-secondary, .llms-reporting.wrap.tab--sales .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-bottom: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-options-page-contents, .llms-reporting.wrap.tab--sales .llms-options-page-contents {\n -webkit-box-shadow: none;\n box-shadow: none;\n background: none;\n margin-top: 20px;\n padding: 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -ms-flex-item-align: center;\n align-self: center;\n color: #FFF;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n font-size: 13px;\n gap: 5px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form label, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form label {\n font-weight: 700;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form input {\n border: 0;\n font-size: 13px;\n margin: 0;\n padding: 0 4px;\n vertical-align: middle;\n width: 110px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-nav-style-filters .llms-analytics-form .select2-container input, .llms-reporting.wrap.tab--sales .llms-nav-style-filters .llms-analytics-form .select2-container input {\n width: 100% !important;\n}\n.llms-reporting.wrap.tab--enrollments .button.small, .llms-reporting.wrap.tab--sales .button.small {\n height: 23px;\n line-height: 23px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters, .llms-reporting.wrap.tab--sales .llms-analytics-filters {\n display: none;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-inside-wrap, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-inside-wrap {\n background-color: #FFF;\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: -20px 10px 20px 10px;\n padding: 20px;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n gap: 20px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n margin: 0;\n}\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-items, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-items {\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n }\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n width: 100%;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item label, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item label {\n display: block;\n font-weight: 700;\n margin: 0 0 5px 0;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters .llms-nav-item .select2-selection__rendered, .llms-reporting.wrap.tab--sales .llms-analytics-filters .llms-nav-item .select2-selection__rendered {\n word-wrap: break-word;\n text-overflow: inherit;\n white-space: normal;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p, .llms-reporting.wrap.tab--sales .llms-analytics-filters p {\n margin: 0;\n text-align: right;\n}\n.llms-reporting.wrap.tab--enrollments .llms-analytics-filters p .llms-button-primary, .llms-reporting.wrap.tab--sales .llms-analytics-filters p .llms-button-primary {\n display: inline-block;\n}\n.llms-reporting.wrap .llms-reporting-tab.llms-reporting-quiz .llms-table-filter-wrap {\n width: 160px;\n}\n\n.llms-charts-wrapper {\n background-color: #FFF;\n border: 1px solid #dedede;\n border-radius: 12px;\n -webkit-box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 2px 4px rgba(48, 49, 51, 0.1);\n padding: 20px;\n}\n\n.llms-reporting-tab h1, .llms-reporting-tab h2, .llms-reporting-tab h3, .llms-reporting-tab h4, .llms-reporting-tab h5, .llms-reporting-tab h6 {\n margin: 0;\n}\n.llms-reporting-tab h1 a, .llms-reporting-tab h2 a, .llms-reporting-tab h3 a, .llms-reporting-tab h4 a, .llms-reporting-tab h5 a, .llms-reporting-tab h6 a {\n color: #466dd8;\n text-decoration: none;\n}\n.llms-reporting-tab h1 a:hover, .llms-reporting-tab h2 a:hover, .llms-reporting-tab h3 a:hover, .llms-reporting-tab h4 a:hover, .llms-reporting-tab h5 a:hover, .llms-reporting-tab h6 a:hover {\n color: #466dd8;\n}\n.llms-reporting-tab h2 {\n font-size: 22px;\n line-height: 1.5;\n}\n.llms-reporting-tab h2.llms-table-title {\n margin-bottom: 20px;\n}\n.llms-reporting-tab h5 {\n font-size: 15px;\n line-height: 1.5;\n}\n.llms-reporting-tab .llms-reporting-body {\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-stab .llms-table-header {\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-gb-tab {\n padding: 30px;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header {\n padding: 30px;\n margin: 0;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img {\n border-radius: 50%;\n display: inline-block;\n margin-right: 10px;\n overflow: hidden;\n vertical-align: middle;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-img img {\n display: block;\n max-height: 64px;\n width: auto;\n}\n.llms-reporting-tab .llms-reporting-body .llms-reporting-header .llms-reporting-header-info {\n display: inline-block;\n vertical-align: middle;\n}\n\n.llms-reporting-breadcrumbs {\n margin: 0;\n padding: 0;\n}\n.llms-reporting-breadcrumbs a {\n color: #466dd8;\n font-size: 15px;\n text-decoration: none;\n}\n.llms-reporting-breadcrumbs a:hover {\n color: #2b55cb;\n}\n.llms-reporting-breadcrumbs a:after {\n content: \" > \";\n color: #646970;\n}\n.llms-reporting-breadcrumbs a:last-child {\n color: #000;\n font-weight: 700;\n}\n.llms-reporting-breadcrumbs a:last-child:after {\n display: none;\n}\n\n#llms-students-table .name {\n text-align: left;\n}\n\n.llms-reporting-tab-content {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n.llms-reporting-tab-content > header:before, .llms-reporting-tab-content > header:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-tab-content > header:after {\n clear: both;\n}\n.llms-reporting-tab-content h3 {\n margin-bottom: 20px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-filter {\n float: right;\n position: relative;\n margin-right: 0.75em;\n width: 180px;\n top: -3px;\n}\n.llms-reporting-tab-content .llms-reporting-tab-main {\n -webkit-box-flex: 3;\n -ms-flex: 3;\n flex: 3;\n max-width: 75%;\n}\n.llms-reporting-tab-content .llms-reporting-tab-side {\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin-left: 20px;\n}\n.llms-reporting-tab-content > .llms-table-wrap {\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n\n.llms-reporting-widgets:before, .llms-reporting-widgets:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widgets:after {\n clear: both;\n}\n\n.llms-reporting-widget {\n border-top: 4px solid #466dd8;\n background: #fafafa;\n margin-bottom: 10px;\n padding: 30px;\n}\n.llms-reporting-widget:before, .llms-reporting-widget:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-widget:after {\n clear: both;\n}\n.llms-reporting-widget .fa {\n color: #999;\n float: left;\n font-size: 32px;\n margin-right: 10px;\n}\n.llms-reporting-widget strong {\n color: #333;\n font-size: 20px;\n line-height: 1.2;\n}\n.llms-reporting-widget.llms-reporting-student-address strong {\n line-height: 1.1;\n}\n.llms-reporting-widget sup,\n.llms-reporting-widget .llms-price-currency-symbol {\n font-size: 75%;\n position: relative;\n top: -4px;\n vertical-align: baseline;\n}\n.llms-reporting-widget small {\n font-size: 13px;\n}\n.llms-reporting-widget small.compare {\n margin-left: 5px;\n}\n.llms-reporting-widget small.compare.positive {\n color: #83c373;\n}\n.llms-reporting-widget small.compare.negative {\n color: #e5554e;\n}\n\n.llms-reporting-event {\n border-left: 4px solid #555;\n background: #fafafa;\n font-size: 11px;\n line-height: 1.2;\n margin-bottom: 0.75em;\n padding: 10px;\n}\n.llms-reporting-event:before, .llms-reporting-event:after {\n content: \" \";\n display: table;\n}\n.llms-reporting-event:after {\n clear: both;\n}\n.llms-reporting-event.color--blue {\n border-left-color: #466dd8;\n}\n.llms-reporting-event.color--green, .llms-reporting-event._enrollment_trigger, .llms-reporting-event._is_complete.yes {\n border-left-color: #83c373;\n}\n.llms-reporting-event.color--purple, .llms-reporting-event._status.enrolled {\n border-left-color: #845ef7;\n}\n.llms-reporting-event.color--red, .llms-reporting-event._status.expired, .llms-reporting-event._status.cancelled {\n border-left-color: #e5554e;\n}\n.llms-reporting-event.color--orange, .llms-reporting-event._achievement_earned, .llms-reporting-event._certificate_earned, .llms-reporting-event._email_sent {\n border-left-color: #ff922b;\n}\n.llms-reporting-event time {\n color: #888;\n}\n.llms-reporting-event .llms-student-avatar {\n margin-left: 10px;\n float: right;\n}\n.llms-reporting-event a {\n text-decoration: none;\n color: inherit;\n}\n\n@media only screen and (min-width: 782px) {\n .llms-reporting.wrap .llms-options-page-contents .llms-nav-tab-wrapper.llms-nav-secondary {\n margin-left: 0;\n margin-right: 0;\n }\n}\n.llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n list-style-type: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n\n.wrap.llms-reporting .llms-inside-wrap,\n.wrap.lifterlms-settings .llms-inside-wrap,\n.wrap.llms-status .llms-inside-wrap {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-inside-wrap .llms-nav-text,\n.wrap.lifterlms-settings .llms-inside-wrap .llms-nav-text,\n.wrap.llms-status .llms-inside-wrap .llms-nav-text {\n margin: 0 auto;\n}\n.wrap.llms-reporting .llms-subheader .llms-save,\n.wrap.lifterlms-settings .llms-subheader .llms-save,\n.wrap.llms-status .llms-subheader .llms-save {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n text-align: right;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);\n margin: 0 -20px 20px -10px;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item .llms-nav-link:hover {\n background: #f0f0f1;\n color: #222222;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fafafa;\n color: #466dd8;\n border-top-color: #466dd8;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n font-weight: 700;\n}\n.wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-link {\n border-top: 2px solid transparent;\n padding: 14px;\n}\n.wrap.llms-reporting .llms-setting-group,\n.wrap.lifterlms-settings .llms-setting-group,\n.wrap.llms-status .llms-setting-group {\n background-color: #FFF;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n margin: 20px auto;\n padding: 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label,\n.wrap.lifterlms-settings .llms-setting-group .llms-label,\n.wrap.llms-status .llms-setting-group .llms-label {\n border-bottom: 1px solid #efefef;\n font-weight: 700;\n font-size: 20px;\n padding: 20px;\n margin: -20px -20px 20px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-label .llms-button-primary,\n.wrap.lifterlms-settings .llms-setting-group .llms-label .llms-button-primary,\n.wrap.llms-status .llms-setting-group .llms-label .llms-button-primary {\n margin-left: 10px;\n}\n.wrap.llms-reporting .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.lifterlms-settings .llms-setting-group .llms-help-tooltip .dashicons,\n.wrap.llms-status .llms-setting-group .llms-help-tooltip .dashicons {\n color: #444;\n cursor: help;\n}\n.wrap.llms-reporting .llms-setting-group .form-table,\n.wrap.lifterlms-settings .llms-setting-group .form-table,\n.wrap.llms-status .llms-setting-group .form-table {\n margin: 0;\n}\n.wrap.llms-reporting .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.lifterlms-settings .llms-setting-group .form-table tr:first-child .llms-subtitle,\n.wrap.llms-status .llms-setting-group .form-table tr:first-child .llms-subtitle {\n margin-top: 0;\n}\n.wrap.llms-reporting .llms-setting-group td[colspan=\"2\"],\n.wrap.lifterlms-settings .llms-setting-group td[colspan=\"2\"],\n.wrap.llms-status .llms-setting-group td[colspan=\"2\"] {\n padding-top: 0;\n padding-left: 0;\n}\n.wrap.llms-reporting .llms-setting-group tr.llms-disabled-field,\n.wrap.lifterlms-settings .llms-setting-group tr.llms-disabled-field,\n.wrap.llms-status .llms-setting-group tr.llms-disabled-field {\n opacity: 0.5;\n pointer-events: none;\n}\n.wrap.llms-reporting .llms-setting-group p,\n.wrap.lifterlms-settings .llms-setting-group p,\n.wrap.llms-status .llms-setting-group p {\n font-size: 14px;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text],\n.wrap.llms-reporting .llms-setting-group input[type=password],\n.wrap.llms-reporting .llms-setting-group input[type=datetime],\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local],\n.wrap.llms-reporting .llms-setting-group input[type=date],\n.wrap.llms-reporting .llms-setting-group input[type=month],\n.wrap.llms-reporting .llms-setting-group input[type=time],\n.wrap.llms-reporting .llms-setting-group input[type=week],\n.wrap.llms-reporting .llms-setting-group input[type=number],\n.wrap.llms-reporting .llms-setting-group input[type=email],\n.wrap.llms-reporting .llms-setting-group input[type=url],\n.wrap.llms-reporting .llms-setting-group input[type=search],\n.wrap.llms-reporting .llms-setting-group input[type=tel],\n.wrap.llms-reporting .llms-setting-group input[type=color],\n.wrap.llms-reporting .llms-setting-group select,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.lifterlms-settings .llms-setting-group input[type=text],\n.wrap.lifterlms-settings .llms-setting-group input[type=password],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime],\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local],\n.wrap.lifterlms-settings .llms-setting-group input[type=date],\n.wrap.lifterlms-settings .llms-setting-group input[type=month],\n.wrap.lifterlms-settings .llms-setting-group input[type=time],\n.wrap.lifterlms-settings .llms-setting-group input[type=week],\n.wrap.lifterlms-settings .llms-setting-group input[type=number],\n.wrap.lifterlms-settings .llms-setting-group input[type=email],\n.wrap.lifterlms-settings .llms-setting-group input[type=url],\n.wrap.lifterlms-settings .llms-setting-group input[type=search],\n.wrap.lifterlms-settings .llms-setting-group input[type=tel],\n.wrap.lifterlms-settings .llms-setting-group input[type=color],\n.wrap.lifterlms-settings .llms-setting-group select,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area),\n.wrap.llms-status .llms-setting-group input[type=text],\n.wrap.llms-status .llms-setting-group input[type=password],\n.wrap.llms-status .llms-setting-group input[type=datetime],\n.wrap.llms-status .llms-setting-group input[type=datetime-local],\n.wrap.llms-status .llms-setting-group input[type=date],\n.wrap.llms-status .llms-setting-group input[type=month],\n.wrap.llms-status .llms-setting-group input[type=time],\n.wrap.llms-status .llms-setting-group input[type=week],\n.wrap.llms-status .llms-setting-group input[type=number],\n.wrap.llms-status .llms-setting-group input[type=email],\n.wrap.llms-status .llms-setting-group input[type=url],\n.wrap.llms-status .llms-setting-group input[type=search],\n.wrap.llms-status .llms-setting-group input[type=tel],\n.wrap.llms-status .llms-setting-group input[type=color],\n.wrap.llms-status .llms-setting-group select,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area) {\n width: 50%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].medium,\n.wrap.llms-reporting .llms-setting-group input[type=password].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].medium,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-reporting .llms-setting-group input[type=date].medium,\n.wrap.llms-reporting .llms-setting-group input[type=month].medium,\n.wrap.llms-reporting .llms-setting-group input[type=time].medium,\n.wrap.llms-reporting .llms-setting-group input[type=week].medium,\n.wrap.llms-reporting .llms-setting-group input[type=number].medium,\n.wrap.llms-reporting .llms-setting-group input[type=email].medium,\n.wrap.llms-reporting .llms-setting-group input[type=url].medium,\n.wrap.llms-reporting .llms-setting-group input[type=search].medium,\n.wrap.llms-reporting .llms-setting-group input[type=tel].medium,\n.wrap.llms-reporting .llms-setting-group input[type=color].medium,\n.wrap.llms-reporting .llms-setting-group select.medium,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].medium,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].medium,\n.wrap.lifterlms-settings .llms-setting-group select.medium,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).medium,\n.wrap.llms-status .llms-setting-group input[type=text].medium,\n.wrap.llms-status .llms-setting-group input[type=password].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime].medium,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].medium,\n.wrap.llms-status .llms-setting-group input[type=date].medium,\n.wrap.llms-status .llms-setting-group input[type=month].medium,\n.wrap.llms-status .llms-setting-group input[type=time].medium,\n.wrap.llms-status .llms-setting-group input[type=week].medium,\n.wrap.llms-status .llms-setting-group input[type=number].medium,\n.wrap.llms-status .llms-setting-group input[type=email].medium,\n.wrap.llms-status .llms-setting-group input[type=url].medium,\n.wrap.llms-status .llms-setting-group input[type=search].medium,\n.wrap.llms-status .llms-setting-group input[type=tel].medium,\n.wrap.llms-status .llms-setting-group input[type=color].medium,\n.wrap.llms-status .llms-setting-group select.medium,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).medium {\n width: 30%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].small,\n.wrap.llms-reporting .llms-setting-group input[type=password].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].small,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-reporting .llms-setting-group input[type=date].small,\n.wrap.llms-reporting .llms-setting-group input[type=month].small,\n.wrap.llms-reporting .llms-setting-group input[type=time].small,\n.wrap.llms-reporting .llms-setting-group input[type=week].small,\n.wrap.llms-reporting .llms-setting-group input[type=number].small,\n.wrap.llms-reporting .llms-setting-group input[type=email].small,\n.wrap.llms-reporting .llms-setting-group input[type=url].small,\n.wrap.llms-reporting .llms-setting-group input[type=search].small,\n.wrap.llms-reporting .llms-setting-group input[type=tel].small,\n.wrap.llms-reporting .llms-setting-group input[type=color].small,\n.wrap.llms-reporting .llms-setting-group select.small,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].small,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].small,\n.wrap.lifterlms-settings .llms-setting-group select.small,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).small,\n.wrap.llms-status .llms-setting-group input[type=text].small,\n.wrap.llms-status .llms-setting-group input[type=password].small,\n.wrap.llms-status .llms-setting-group input[type=datetime].small,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].small,\n.wrap.llms-status .llms-setting-group input[type=date].small,\n.wrap.llms-status .llms-setting-group input[type=month].small,\n.wrap.llms-status .llms-setting-group input[type=time].small,\n.wrap.llms-status .llms-setting-group input[type=week].small,\n.wrap.llms-status .llms-setting-group input[type=number].small,\n.wrap.llms-status .llms-setting-group input[type=email].small,\n.wrap.llms-status .llms-setting-group input[type=url].small,\n.wrap.llms-status .llms-setting-group input[type=search].small,\n.wrap.llms-status .llms-setting-group input[type=tel].small,\n.wrap.llms-status .llms-setting-group input[type=color].small,\n.wrap.llms-status .llms-setting-group select.small,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).small {\n width: 20%;\n}\n.wrap.llms-reporting .llms-setting-group input[type=text].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=password].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=date].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=month].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=time].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=week].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=number].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=email].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=url].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=search].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=tel].tiny,\n.wrap.llms-reporting .llms-setting-group input[type=color].tiny,\n.wrap.llms-reporting .llms-setting-group select.tiny,\n.wrap.llms-reporting .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=text].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=password].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=datetime-local].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=date].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=month].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=time].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=week].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=number].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=email].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=url].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=search].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=tel].tiny,\n.wrap.lifterlms-settings .llms-setting-group input[type=color].tiny,\n.wrap.lifterlms-settings .llms-setting-group select.tiny,\n.wrap.lifterlms-settings .llms-setting-group textarea:not(.wp-editor-area).tiny,\n.wrap.llms-status .llms-setting-group input[type=text].tiny,\n.wrap.llms-status .llms-setting-group input[type=password].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime].tiny,\n.wrap.llms-status .llms-setting-group input[type=datetime-local].tiny,\n.wrap.llms-status .llms-setting-group input[type=date].tiny,\n.wrap.llms-status .llms-setting-group input[type=month].tiny,\n.wrap.llms-status .llms-setting-group input[type=time].tiny,\n.wrap.llms-status .llms-setting-group input[type=week].tiny,\n.wrap.llms-status .llms-setting-group input[type=number].tiny,\n.wrap.llms-status .llms-setting-group input[type=email].tiny,\n.wrap.llms-status .llms-setting-group input[type=url].tiny,\n.wrap.llms-status .llms-setting-group input[type=search].tiny,\n.wrap.llms-status .llms-setting-group input[type=tel].tiny,\n.wrap.llms-status .llms-setting-group input[type=color].tiny,\n.wrap.llms-status .llms-setting-group select.tiny,\n.wrap.llms-status .llms-setting-group textarea:not(.wp-editor-area).tiny {\n width: 10%;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link,\n.wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-item.llms-active .llms-nav-link {\n background: #fff;\n }\n}\n.wrap.llms-reporting #llms-mailhawk-connect,\n.wrap.lifterlms-settings #llms-mailhawk-connect,\n.wrap.llms-status #llms-mailhawk-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-mailhawk-connect .dashicons,\n.wrap.lifterlms-settings #llms-mailhawk-connect .dashicons,\n.wrap.llms-status #llms-mailhawk-connect .dashicons {\n margin: -4px 4px 0 0;\n vertical-align: middle;\n}\n.wrap.llms-reporting #llms-sendwp-connect,\n.wrap.lifterlms-settings #llms-sendwp-connect,\n.wrap.llms-status #llms-sendwp-connect {\n height: auto;\n margin: 0 0 6px;\n position: relative;\n}\n.wrap.llms-reporting #llms-sendwp-connect .fa,\n.wrap.lifterlms-settings #llms-sendwp-connect .fa,\n.wrap.llms-status #llms-sendwp-connect .fa {\n margin-right: 4px;\n}\n\n@media only screen and (min-width: 782px) {\n .wrap.lifterlms-settings .llms-subheader {\n height: 40px;\n position: sticky;\n top: 32px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.lifterlms-settings .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-reporting .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary {\n margin: 0 -20px 20px -22px;\n }\n .wrap.llms-status .llms-nav-tab-wrapper.llms-nav-secondary .llms-nav-items {\n padding-left: 10px;\n }\n}\n.wrap.llms-dashboard .llms-inside-wrap {\n padding-top: 30px;\n}\n.wrap.llms-dashboard #poststuff h2 {\n padding: 12px 20px;\n}\n.wrap.llms-dashboard .llms-dashboard-activity h2 {\n font-size: 20px;\n font-weight: 700;\n line-height: 1.5;\n margin-top: 0;\n text-align: center;\n}\n.wrap.llms-dashboard .postbox {\n background-color: #FFF;\n border: none;\n -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);\n}\n.wrap.llms-dashboard .postbox .postbox-header {\n border-bottom-color: #efefef;\n}\n.wrap.llms-dashboard .postbox .inside {\n padding: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item {\n margin-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item p {\n text-align: left;\n}\n.wrap.llms-dashboard #llms_dashboard_addons .llms-addons-wrap .llms-add-on-item footer.llms-actions {\n padding-top: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p {\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_addons p .llms-button-primary {\n display: inline-block;\n margin-top: 15px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul {\n list-style: disc;\n margin: 5px 0 0 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links ul li {\n font-size: 15px;\n line-height: 1.5;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n display: grid;\n grid-template-columns: 1fr;\n grid-gap: 30px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links a {\n display: inline-block;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list h3 {\n margin: 0 0 10px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul {\n margin-bottom: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list ul.llms-checklist {\n list-style: none;\n margin-left: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa {\n text-align: center;\n width: 16px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-check {\n color: #008a20;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .fa-times {\n color: #d63638;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-primary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-secondary,\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links .llms-list .llms-button-action {\n display: block;\n text-align: center;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-quick-links {\n grid-template-columns: 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n display: grid;\n grid-template-columns: 1fr 1fr;\n grid-gap: 20px;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links .llms-list h3 .dashicons {\n color: #AAA;\n}\n@media only screen and (min-width: 782px) {\n .wrap.llms-dashboard #llms_dashboard_quick_links .llms-help-links {\n grid-template-columns: 1fr 1fr 1fr 1fr;\n }\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul,\n.wrap.llms-dashboard #llms_dashboard_podcast ul {\n margin: 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li {\n margin: 0 0 15px 0;\n}\n.wrap.llms-dashboard #llms_dashboard_blog ul li a,\n.wrap.llms-dashboard #llms_dashboard_podcast ul li a {\n display: block;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p,\n.wrap.llms-dashboard #llms_dashboard_podcast p {\n margin: 15px 0;\n text-align: center;\n}\n.wrap.llms-dashboard #llms_dashboard_blog p a,\n.wrap.llms-dashboard #llms_dashboard_podcast p a {\n display: inline-block;\n}\n\n#llms_dashboard_widget .inside {\n margin: 0;\n padding-bottom: 8px;\n}\n#llms_dashboard_widget .llms-dashboard-widget-wrap {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n padding-top: 12px;\n}\n#llms_dashboard_widget .activity-block {\n padding-bottom: 8px;\n border-color: #e8e8e8;\n}\n#llms_dashboard_widget h3 {\n margin-bottom: 0;\n}\n#llms_dashboard_widget .llms-charts-wrapper {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n gap: 8px;\n width: 100%;\n -webkit-box-align: stretch;\n -ms-flex-align: stretch;\n align-items: stretch;\n padding: 4px 0;\n}\n#llms_dashboard_widget .llms-widget-row:before, #llms_dashboard_widget .llms-widget-row:after {\n display: none;\n}\n#llms_dashboard_widget .llms-widget-1-4 {\n padding: 0;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n}\n#llms_dashboard_widget .llms-widget {\n padding: 8px 8px 12px;\n margin: 0;\n border-radius: 6px;\n border: 1px solid #e8e8e8;\n -webkit-box-shadow: 0px 2px 4px rgb(246, 247, 247);\n box-shadow: 0px 2px 4px rgb(246, 247, 247);\n height: 100%;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n -webkit-box-align: end;\n -ms-flex-align: end;\n align-items: flex-end;\n}\n#llms_dashboard_widget .llms-label {\n font-size: 14px;\n width: 100%;\n -ms-flex-item-align: start;\n align-self: flex-start;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n#llms_dashboard_widget .llms-widget-content {\n font-size: 20px;\n margin: 0;\n}\n#llms_dashboard_widget .llms-widget-info-toggle {\n display: none;\n}\n#llms_dashboard_widget a {\n border: 0;\n}\n#llms_dashboard_widget .subsubsub {\n color: #dcdcde;\n}\n\n.llms-dashboard-widget-feed {\n margin: 0 -12px;\n padding: 0;\n background-color: #f6f7f7;\n}\n.llms-dashboard-widget-feed li {\n margin: 0;\n padding: 8px 12px;\n border-bottom: 1px solid #e8e8e8;\n}\n.llms-dashboard-widget-feed span {\n display: block;\n}\n\n.llms-remarks .llms-remarks-field {\n height: 120px;\n width: 100%;\n}\n.llms-remarks input[type=number] {\n width: 60px;\n}\n\nbutton[name=llms_quiz_attempt_action] .save {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .default {\n display: none;\n}\nbutton[name=llms_quiz_attempt_action].grading .save {\n display: inline;\n}\n\n.llms-form-fields {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n -webkit-box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #466dd8 0%, #466dd8 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n -webkit-transition: width 0.4s ease;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n/*# sourceMappingURL=../maps/css/admin.css.map */\n"],"sourceRoot":"../../css"} \ No newline at end of file diff --git a/assets/maps/css/lifterlms.css.map b/assets/maps/css/lifterlms.css.map index 6c01bdb681..2ad35ebcdc 100644 --- a/assets/maps/css/lifterlms.css.map +++ b/assets/maps/css/lifterlms.css.map @@ -1 +1 @@ -{"version":3,"sources":["lifterlms.css","_includes/_extends.scss","_includes/_grid.scss","_includes/_buttons.scss","_includes/_vars.scss","_includes/_llms-donut.scss","_includes/_mixins.scss","_includes/_tooltip.scss","frontend/_main.scss","frontend/_loop.scss","frontend/_course.scss","frontend/_syllabus.scss","frontend/_llms-progress.scss","frontend/_llms-author.scss","frontend/_reviews.scss","frontend/_notices.scss","frontend/_llms-achievements-certs.scss","frontend/_llms-notifications.scss","frontend/_llms-pagination.scss","frontend/_tooltip.scss","_includes/_quiz-result-question-list.scss","frontend/_llms-quizzes.scss","frontend/_voucher.scss","frontend/_llms-access-plans.scss","frontend/_checkout.scss","_includes/_llms-form-field.scss","frontend/_llms-outline-collapse.scss","frontend/_student-dashboard.scss","frontend/_llms-table.scss","_includes/vendor/_font-awesome.scss"],"names":[],"mappings":"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A7ButGF;;A6BrtGA;EACE,gBAAA;A7BwtGF;;A6BttGA;EACE,gBAAA;A7BytGF;;A6BvtGA;EACE,gBAAA;A7B0tGF;;A6BxtGA;EACE,gBAAA;A7B2tGF;;A6BztGA;EACE,gBAAA;A7B4tGF;;A6B1tGA;EACE,gBAAA;A7B6tGF;;A6B3tGA;EACE,gBAAA;A7B8tGF;;A6B5tGA;EACE,gBAAA;A7B+tGF;;A6B7tGA;;;EAGE,gBAAA;A7BguGF;;A6B9tGA;EACE,gBAAA;A7BiuGF;;A6B/tGA;EACE,gBAAA;A7BkuGF;;A6BhuGA;EACE,gBAAA;A7BmuGF;;A6BjuGA;EACE,gBAAA;A7BouGF;;A6BluGA;;EAEE,gBAAA;A7BquGF;;A6BnuGA;EACE,gBAAA;A7BsuGF;;A6BpuGA;EACE,gBAAA;A7BuuGF;;A6BruGA;EACE,gBAAA;A7BwuGF;;A6BtuGA;EACE,gBAAA;A7ByuGF;;A6BvuGA;EACE,gBAAA;A7B0uGF;;A6BxuGA;EACE,gBAAA;A7B2uGF;;A6BzuGA;EACE,gBAAA;A7B4uGF;;A6B1uGA;EACE,gBAAA;A7B6uGF;;A6B3uGA;EACE,gBAAA;A7B8uGF;;A6B5uGA;EACE,gBAAA;A7B+uGF;;A6B7uGA;;EAEE,gBAAA;A7BgvGF;;A6B9uGA;EACE,gBAAA;A7BivGF;;A6B/uGA;EACE,gBAAA;A7BkvGF;;A6BhvGA;EACE,gBAAA;A7BmvGF;;A6BjvGA;EACE,gBAAA;A7BovGF;;A6BlvGA;EACE,gBAAA;A7BqvGF;;A6BnvGA;EACE,gBAAA;A7BsvGF;;A6BpvGA;EACE,gBAAA;A7BuvGF;;A6BrvGA;EACE,gBAAA;A7BwvGF;;A6BtvGA;EACE,gBAAA;A7ByvGF;;A6BvvGA;EACE,gBAAA;A7B0vGF;;A6BxvGA;EACE,gBAAA;A7B2vGF;;A6BzvGA;EACE,gBAAA;A7B4vGF;;A6B1vGA;EACE,gBAAA;A7B6vGF;;A6B3vGA;EACE,gBAAA;A7B8vGF;;A6B5vGA;EACE,gBAAA;A7B+vGF;;A6B7vGA;EACE,gBAAA;A7BgwGF;;A6B9vGA;EACE,gBAAA;A7BiwGF;;A6B/vGA;EACE,gBAAA;A7BkwGF;;A6BhwGA;EACE,gBAAA;A7BmwGF;;A6BjwGA;EACE,gBAAA;A7BowGF;;A6BlwGA;EACE,gBAAA;A7BqwGF;;A6BnwGA;EACE,gBAAA;A7BswGF;;A6BpwGA;EACE,gBAAA;A7BuwGF;;A6BrwGA;EACE,gBAAA;A7BwwGF;;A6BtwGA;EACE,gBAAA;A7BywGF;;A6BvwGA;EACE,gBAAA;A7B0wGF;;A6BxwGA;;EAEE,gBAAA;A7B2wGF;;A6BzwGA;EACE,gBAAA;A7B4wGF;;A6B1wGA;EACE,gBAAA;A7B6wGF;;A6B3wGA;;;EAGE,gBAAA;A7B8wGF;;A6B5wGA;EACE,gBAAA;A7B+wGF;;A6B7wGA;EACE,gBAAA;A7BgxGF;;A6B9wGA;EACE,gBAAA;A7BixGF;;A6B/wGA;EACE,gBAAA;A7BkxGF;;A6BhxGA;;EAEE,gBAAA;A7BmxGF;;A6BjxGA;EACE,gBAAA;A7BoxGF;;A6BlxGA;EACE,gBAAA;A7BqxGF;;A6BnxGA;EACE,gBAAA;A7BsxGF;;A6BpxGA;EACE,gBAAA;A7BuxGF;;A6BrxGA;EACE,gBAAA;A7BwxGF;;A6BtxGA;EACE,gBAAA;A7ByxGF;;A6BvxGA;EACE,gBAAA;A7B0xGF;;A6BxxGA;EACE,gBAAA;A7B2xGF;;A6BzxGA;EACE,gBAAA;A7B4xGF;;A6B1xGA;EACE,gBAAA;A7B6xGF;;A6B3xGA;EACE,gBAAA;A7B8xGF;;A6B5xGA;EACE,gBAAA;A7B+xGF;;A6B7xGA;EACE,gBAAA;A7BgyGF;;A6B9xGA;EACE,gBAAA;A7BiyGF;;A6B/xGA;EACE,gBAAA;A7BkyGF;;A6BhyGA;EACE,gBAAA;A7BmyGF;;A6BjyGA;EACE,gBAAA;A7BoyGF;;A6BlyGA;EACE,gBAAA;A7BqyGF;;A6BnyGA;EACE,gBAAA;A7BsyGF;;A6BpyGA;EACE,gBAAA;A7BuyGF;;A6BryGA;EACE,gBAAA;A7BwyGF;;A6BtyGA;EACE,gBAAA;A7ByyGF;;A6BvyGA;EACE,gBAAA;A7B0yGF;;A6BxyGA;EACE,gBAAA;A7B2yGF;;A6BzyGA;EACE,gBAAA;A7B4yGF;;A6B1yGA;EACE,gBAAA;A7B6yGF;;A6B3yGA;EACE,gBAAA;A7B8yGF;;A6B5yGA;EACE,gBAAA;A7B+yGF;;A6B7yGA;EACE,gBAAA;A7BgzGF;;A6B9yGA;;EAEE,gBAAA;A7BizGF;;A6B/yGA;EACE,gBAAA;A7BkzGF;;A6BhzGA;EACE,gBAAA;A7BmzGF;;A6BjzGA;EACE,gBAAA;A7BozGF;;A6BlzGA;EACE,gBAAA;A7BqzGF;;A6BnzGA;EACE,gBAAA;A7BszGF;;A6BpzGA;EACE,gBAAA;A7BuzGF;;A6BrzGA;EACE,gBAAA;A7BwzGF;;A6BtzGA;EACE,gBAAA;A7ByzGF;;A6BvzGA;EACE,gBAAA;A7B0zGF;;A6BxzGA;EACE,gBAAA;A7B2zGF;;A6BzzGA;EACE,gBAAA;A7B4zGF;;A6B1zGA;;EAEE,gBAAA;A7B6zGF;;A6B3zGA;EACE,gBAAA;A7B8zGF;;A6B5zGA;EACE,gBAAA;A7B+zGF;;A6B7zGA;EACE,gBAAA;A7Bg0GF;;A6B9zGA;EACE,gBAAA;A7Bi0GF;;A6B/zGA;EACE,gBAAA;A7Bk0GF;;A6Bh0GA;EACE,gBAAA;A7Bm0GF;;A6Bj0GA;EACE,gBAAA;A7Bo0GF;;A6Bl0GA;EACE,gBAAA;A7Bq0GF;;A6Bn0GA;EACE,gBAAA;A7Bs0GF;;A6Bp0GA;EACE,gBAAA;A7Bu0GF;;A6Br0GA;EACE,gBAAA;A7Bw0GF;;A6Bt0GA;EACE,gBAAA;A7By0GF;;A6Bv0GA;EACE,gBAAA;A7B00GF;;A6Bx0GA;;EAEE,gBAAA;A7B20GF;;A6Bz0GA;EACE,gBAAA;A7B40GF;;A6B10GA;EACE,gBAAA;A7B60GF;;A6B30GA;EACE,gBAAA;A7B80GF;;A6B50GA;EACE,gBAAA;A7B+0GF;;A6B70GA;;EAEE,gBAAA;A7Bg1GF;;A6B90GA;EACE,gBAAA;A7Bi1GF;;A6B/0GA;EACE,gBAAA;A7Bk1GF;;A6Bh1GA;EACE,gBAAA;A7Bm1GF;;A6Bj1GA;EACE,gBAAA;A7Bo1GF;;A6Bl1GA;EACE,gBAAA;A7Bq1GF;;A6Bn1GA;EACE,gBAAA;A7Bs1GF;;A6Bp1GA;EACE,gBAAA;A7Bu1GF;;A6Br1GA;EACE,gBAAA;A7Bw1GF;;A6Bt1GA;EACE,gBAAA;A7By1GF;;A6Bv1GA;EACE,gBAAA;A7B01GF;;A6Bx1GA;EACE,gBAAA;A7B21GF;;A6Bz1GA;EACE,gBAAA;A7B41GF;;A6B11GA;EACE,gBAAA;A7B61GF;;A6B31GA;EACE,gBAAA;A7B81GF;;A6B51GA;EACE,gBAAA;A7B+1GF;;A6B71GA;EACE,gBAAA;A7Bg2GF;;A6B91GA;EACE,gBAAA;A7Bi2GF;;A6B/1GA;EACE,gBAAA;A7Bk2GF;;A6Bh2GA;EACE,gBAAA;A7Bm2GF;;A6Bj2GA;;EAEE,gBAAA;A7Bo2GF;;A6Bl2GA;EACE,gBAAA;A7Bq2GF;;A6Bn2GA;EACE,gBAAA;A7Bs2GF;;A6Bp2GA;EACE,gBAAA;A7Bu2GF;;A6Br2GA;;EAEE,gBAAA;A7Bw2GF;;A6Bt2GA;EACE,gBAAA;A7By2GF;;A6Bv2GA;EACE,gBAAA;A7B02GF;;A6Bx2GA;EACE,gBAAA;A7B22GF;;A6Bz2GA;EACE,gBAAA;A7B42GF;;A6B12GA;EACE,gBAAA;A7B62GF;;A6B32GA;EACE,gBAAA;A7B82GF;;A6B52GA;EACE,gBAAA;A7B+2GF;;A6B72GA;EACE,gBAAA;A7Bg3GF;;A6B92GA;EACE,gBAAA;A7Bi3GF;;A6B/2GA;EACE,gBAAA;A7Bk3GF;;A6Bh3GA;EACE,gBAAA;A7Bm3GF;;A6Bj3GA;EACE,gBAAA;A7Bo3GF;;A6Bl3GA;EACE,gBAAA;A7Bq3GF;;A6Bn3GA;EACE,gBAAA;A7Bs3GF;;A6Bp3GA;EACE,gBAAA;A7Bu3GF;;A6Br3GA;EACE,gBAAA;A7Bw3GF;;A6Bt3GA;EACE,gBAAA;A7By3GF;;A6Bv3GA;EACE,gBAAA;A7B03GF;;A6Bx3GA;;EAEE,gBAAA;A7B23GF;;A6Bz3GA;;EAEE,gBAAA;A7B43GF;;A6B13GA;EACE,gBAAA;A7B63GF;;A6B33GA;EACE,gBAAA;A7B83GF;;A6B53GA;;EAEE,gBAAA;A7B+3GF;;A6B73GA;;EAEE,gBAAA;A7Bg4GF;;A6B93GA;EACE,gBAAA;A7Bi4GF;;A6B/3GA;;EAEE,gBAAA;A7Bk4GF;;A6Bh4GA;EACE,gBAAA;A7Bm4GF;;A6Bj4GA;;;EAGE,gBAAA;A7Bo4GF;;A6Bl4GA;EACE,gBAAA;A7Bq4GF;;A6Bn4GA;EACE,gBAAA;A7Bs4GF;;A6Bp4GA;EACE,gBAAA;A7Bu4GF;;A6Br4GA;EACE,gBAAA;A7Bw4GF;;A6Bt4GA;EACE,gBAAA;A7By4GF;;A6Bv4GA;EACE,gBAAA;A7B04GF;;A6Bx4GA;EACE,gBAAA;A7B24GF;;A6Bz4GA;EACE,gBAAA;A7B44GF;;A6B14GA;EACE,gBAAA;A7B64GF;;A6B34GA;EACE,gBAAA;A7B84GF;;A6B54GA;EACE,gBAAA;A7B+4GF;;A6B74GA;EACE,gBAAA;A7Bg5GF;;A6B94GA;EACE,gBAAA;A7Bi5GF;;A6B/4GA;EACE,gBAAA;A7Bk5GF;;A6Bh5GA;EACE,gBAAA;A7Bm5GF;;A6Bj5GA;EACE,gBAAA;A7Bo5GF;;A6Bl5GA;EACE,gBAAA;A7Bq5GF;;A6Bn5GA;;EAEE,gBAAA;A7Bs5GF;;A6Bp5GA;;EAEE,gBAAA;A7Bu5GF;;A6Br5GA;;EAEE,gBAAA;A7Bw5GF;;A6Bt5GA;EACE,gBAAA;A7By5GF;;A6Bv5GA;EACE,gBAAA;A7B05GF;;A6Bx5GA;;EAEE,gBAAA;A7B25GF;;A6Bz5GA;;EAEE,gBAAA;A7B45GF;;A6B15GA;;EAEE,gBAAA;A7B65GF;;A6B35GA;EACE,gBAAA;A7B85GF;;A6B55GA;EACE,gBAAA;A7B+5GF;;A6B75GA;;EAEE,gBAAA;A7Bg6GF;;A6B95GA;EACE,gBAAA;A7Bi6GF;;A6B/5GA;EACE,gBAAA;A7Bk6GF;;A6Bh6GA;;EAEE,gBAAA;A7Bm6GF;;A6Bj6GA;EACE,gBAAA;A7Bo6GF;;A6Bl6GA;EACE,gBAAA;A7Bq6GF;;A6Bn6GA;EACE,gBAAA;A7Bs6GF;;A6Bp6GA;EACE,gBAAA;A7Bu6GF;;A6Br6GA;EACE,gBAAA;A7Bw6GF;;A6Bt6GA;EACE,gBAAA;A7By6GF;;A6Bv6GA;EACE,gBAAA;A7B06GF;;A6Bx6GA;EACE,gBAAA;A7B26GF;;A6Bz6GA;EACE,gBAAA;A7B46GF;;A6B16GA;EACE,gBAAA;A7B66GF;;A6B36GA;EACE,gBAAA;A7B86GF;;A6B56GA;EACE,gBAAA;A7B+6GF;;A6B76GA;EACE,gBAAA;A7Bg7GF;;A6B96GA;EACE,gBAAA;A7Bi7GF;;A6B/6GA;EACE,gBAAA;A7Bk7GF;;A6Bh7GA;EACE,gBAAA;A7Bm7GF;;A6Bj7GA;EACE,gBAAA;A7Bo7GF;;A6Bl7GA;EACE,gBAAA;A7Bq7GF;;A6Bn7GA;EACE,gBAAA;A7Bs7GF;;A6Bp7GA;EACE,gBAAA;A7Bu7GF;;A6Br7GA;EACE,gBAAA;A7Bw7GF;;A6Bt7GA;EACE,gBAAA;A7By7GF;;A6Bv7GA;EACE,gBAAA;A7B07GF;;A6Bx7GA;EACE,gBAAA;A7B27GF;;A6Bz7GA;EACE,gBAAA;A7B47GF;;A6B17GA;EACE,gBAAA;A7B67GF;;A6B37GA;EACE,gBAAA;A7B87GF;;A6B57GA;EACE,gBAAA;A7B+7GF;;A6B77GA;EACE,gBAAA;A7Bg8GF;;A6B97GA;EACE,gBAAA;A7Bi8GF;;A6B/7GA;;EAEE,gBAAA;A7Bk8GF;;A6Bh8GA;EACE,gBAAA;A7Bm8GF;;A6Bj8GA;EACE,gBAAA;A7Bo8GF;;A6Bl8GA;EACE,gBAAA;A7Bq8GF;;A6Bn8GA;EACE,gBAAA;A7Bs8GF;;A6Bp8GA;EACE,gBAAA;A7Bu8GF;;A6Br8GA;;EAEE,gBAAA;A7Bw8GF;;A6Bt8GA;EACE,gBAAA;A7By8GF;;A6Bv8GA;EACE,gBAAA;A7B08GF;;A6Bx8GA;EACE,gBAAA;A7B28GF;;A6Bz8GA;EACE,gBAAA;A7B48GF;;A6B18GA;EACE,gBAAA;A7B68GF;;A6B38GA;EACE,gBAAA;A7B88GF;;A6B58GA;EACE,gBAAA;A7B+8GF;;A6B78GA;EACE,gBAAA;A7Bg9GF;;A6B98GA;EACE,gBAAA;A7Bi9GF;;A6B/8GA;EACE,gBAAA;A7Bk9GF;;A6Bh9GA;EACE,gBAAA;A7Bm9GF;;A6Bj9GA;EACE,gBAAA;A7Bo9GF;;A6Bl9GA;;EAEE,gBAAA;A7Bq9GF;;A6Bn9GA;;;EAGE,gBAAA;A7Bs9GF;;A6Bp9GA;EACE,gBAAA;A7Bu9GF;;A6Br9GA;EACE,gBAAA;A7Bw9GF;;A6Bt9GA;EACE,gBAAA;A7By9GF;;A6Bv9GA;;EAEE,gBAAA;A7B09GF;;A6Bx9GA;EACE,gBAAA;A7B29GF;;A6Bz9GA;EACE,gBAAA;A7B49GF;;A6B19GA;EACE,gBAAA;A7B69GF;;A6B39GA;EACE,gBAAA;A7B89GF;;A6B59GA;EACE,gBAAA;A7B+9GF;;A6B79GA;EACE,gBAAA;A7Bg+GF;;A6B99GA;EACE,gBAAA;A7Bi+GF;;A6B/9GA;EACE,gBAAA;A7Bk+GF;;A6Bh+GA;EACE,gBAAA;A7Bm+GF;;A6Bj+GA;EACE,gBAAA;A7Bo+GF;;A6Bl+GA;EACE,gBAAA;A7Bq+GF;;A6Bn+GA;EACE,gBAAA;A7Bs+GF;;A6Bp+GA;EACE,gBAAA;A7Bu+GF;;A6Br+GA;EACE,gBAAA;A7Bw+GF;;A6Bt+GA;EACE,gBAAA;A7By+GF;;A6Bv+GA;EACE,gBAAA;A7B0+GF;;A6Bx+GA;EACE,gBAAA;A7B2+GF;;A6Bz+GA;EACE,gBAAA;A7B4+GF;;A6B1+GA;EACE,gBAAA;A7B6+GF;;A6B3+GA;EACE,gBAAA;A7B8+GF;;A6B5+GA;EACE,gBAAA;A7B++GF;;A6B7+GA;EACE,gBAAA;A7Bg/GF;;A6B9+GA;EACE,gBAAA;A7Bi/GF;;A6B/+GA;EACE,gBAAA;A7Bk/GF;;A6Bh/GA;EACE,gBAAA;A7Bm/GF;;A6Bj/GA;EACE,gBAAA;A7Bo/GF;;A6Bl/GA;EACE,gBAAA;A7Bq/GF;;A6Bn/GA;EACE,gBAAA;A7Bs/GF;;A6Bp/GA;EACE,gBAAA;A7Bu/GF;;A6Br/GA;EACE,gBAAA;A7Bw/GF;;A6Bt/GA;EACE,gBAAA;A7By/GF;;A6Bv/GA;EACE,gBAAA;A7B0/GF;;A6Bx/GA;EACE,gBAAA;A7B2/GF;;A6Bz/GA;EACE,gBAAA;A7B4/GF;;A6B1/GA;EACE,gBAAA;A7B6/GF;;A6B3/GA;EACE,gBAAA;A7B8/GF;;A6B5/GA;EACE,gBAAA;A7B+/GF;;A6B7/GA;;EAEE,gBAAA;A7BggHF;;A6B9/GA;;EAEE,gBAAA;A7BigHF;;A6B//GA;;EAEE,gBAAA;A7BkgHF;;A6BhgHA;;EAEE,gBAAA;A7BmgHF;;A6BjgHA;EACE,gBAAA;A7BogHF;;A6BlgHA;;EAEE,gBAAA;A7BqgHF;;A6BngHA;;EAEE,gBAAA;A7BsgHF;;A6BpgHA;;;;EAIE,gBAAA;A7BugHF;;A6BrgHA;;;EAGE,gBAAA;A7BwgHF;;A6BtgHA;;EAEE,gBAAA;A7BygHF;;A6BvgHA;;EAEE,gBAAA;A7B0gHF;;A6BxgHA;EACE,gBAAA;A7B2gHF;;A6BzgHA;EACE,gBAAA;A7B4gHF;;A6B1gHA;EACE,gBAAA;A7B6gHF;;A6B3gHA;EACE,gBAAA;A7B8gHF;;A6B5gHA;EACE,gBAAA;A7B+gHF;;A6B7gHA;EACE,gBAAA;A7BghHF;;A6B9gHA;EACE,gBAAA;A7BihHF;;A6B/gHA;EACE,gBAAA;A7BkhHF;;A6BhhHA;EACE,gBAAA;A7BmhHF;;A6BjhHA;EACE,gBAAA;A7BohHF;;A6BlhHA;EACE,gBAAA;A7BqhHF;;A6BnhHA;EACE,gBAAA;A7BshHF;;A6BphHA;EACE,gBAAA;A7BuhHF;;A6BrhHA;EACE,gBAAA;A7BwhHF;;A6BthHA;EACE,gBAAA;A7ByhHF;;A6BvhHA;EACE,gBAAA;A7B0hHF;;A6BxhHA;EACE,gBAAA;A7B2hHF;;A6BzhHA;EACE,gBAAA;A7B4hHF;;A6B1hHA;EACE,gBAAA;A7B6hHF;;A6B3hHA;EACE,gBAAA;A7B8hHF;;A6B5hHA;EACE,gBAAA;A7B+hHF;;A6B7hHA;EACE,gBAAA;A7BgiHF;;A6B9hHA;EACE,gBAAA;A7BiiHF;;A6B/hHA;EACE,gBAAA;A7BkiHF;;A6BhiHA;EACE,gBAAA;A7BmiHF;;A6BjiHA;EACE,gBAAA;A7BoiHF;;A6BliHA;EACE,gBAAA;A7BqiHF;;A6BniHA;EACE,gBAAA;A7BsiHF;;A6BpiHA;EACE,gBAAA;A7BuiHF;;A6BriHA;EACE,gBAAA;A7BwiHF;;A6BtiHA;EACE,gBAAA;A7ByiHF;;A6BviHA;EACE,gBAAA;A7B0iHF;;A6BxiHA;EACE,gBAAA;A7B2iHF;;A6BziHA;EACE,gBAAA;A7B4iHF;;A6B1iHA;EACE,gBAAA;A7B6iHF;;A6B3iHA;EACE,gBAAA;A7B8iHF;;A6B5iHA;EACE,gBAAA;A7B+iHF;;A6B7iHA;EACE,gBAAA;A7BgjHF;;A6B9iHA;;EAEE,gBAAA;A7BijHF;;A6B/iHA;EACE,gBAAA;A7BkjHF;;A6BhjHA;EACE,gBAAA;A7BmjHF;;A6BjjHA;EACE,gBAAA;A7BojHF;;A6BljHA;EACE,gBAAA;A7BqjHF;;A6BnjHA;EACE,gBAAA;A7BsjHF;;A6BpjHA;EACE,gBAAA;A7BujHF;;A6BrjHA;EACE,gBAAA;A7BwjHF;;A6BtjHA;EACE,gBAAA;A7ByjHF;;A6BvjHA;EACE,gBAAA;A7B0jHF;;A6BxjHA;EACE,gBAAA;A7B2jHF;;A6BzjHA;EACE,gBAAA;A7B4jHF;;A6B1jHA;;EAEE,gBAAA;A7B6jHF;;A6B3jHA;EACE,gBAAA;A7B8jHF;;A6B5jHA;EACE,gBAAA;A7B+jHF;;A6B7jHA;EACE,gBAAA;A7BgkHF;;A6B9jHA;;EAEE,gBAAA;A7BikHF;;A6B/jHA;EACE,gBAAA;A7BkkHF;;A6BhkHA;EACE,gBAAA;A7BmkHF;;A6BjkHA;EACE,gBAAA;A7BokHF;;A6BlkHA;EACE,gBAAA;A7BqkHF;;A6BnkHA;EACE,gBAAA;A7BskHF;;A6BpkHA;EACE,gBAAA;A7BukHF;;A6BrkHA;;;EAGE,gBAAA;A7BwkHF;;A6BtkHA;;EAEE,gBAAA;A7BykHF;;A6BvkHA;EACE,gBAAA;A7B0kHF;;A6BxkHA;EACE,gBAAA;A7B2kHF;;A6BzkHA;EACE,gBAAA;A7B4kHF;;A6B1kHA;EACE,gBAAA;A7B6kHF;;A6B3kHA;EACE,gBAAA;A7B8kHF;;A6B5kHA;EACE,gBAAA;A7B+kHF;;A6B7kHA;EACE,gBAAA;A7BglHF;;A6B9kHA;EACE,gBAAA;A7BilHF;;A6B/kHA;EACE,gBAAA;A7BklHF;;A6BhlHA;EACE,gBAAA;A7BmlHF;;A6BjlHA;EACE,gBAAA;A7BolHF;;A6BllHA;EACE,gBAAA;A7BqlHF;;A6BnlHA;EACE,gBAAA;A7BslHF;;A6BplHA;EACE,gBAAA;A7BulHF;;A6BrlHA;EACE,gBAAA;A7BwlHF;;A6BtlHA;EACE,gBAAA;A7BylHF;;A6BvlHA;EACE,gBAAA;A7B0lHF;;A6BxlHA;EACE,gBAAA;A7B2lHF;;A6BzlHA;EACE,gBAAA;A7B4lHF;;A6B1lHA;EACE,gBAAA;A7B6lHF;;A6B3lHA;EACE,gBAAA;A7B8lHF;;A6B5lHA;EACE,gBAAA;A7B+lHF;;A6B7lHA;EACE,gBAAA;A7BgmHF;;A6B9lHA;EACE,gBAAA;A7BimHF;;A6B/lHA;EACE,gBAAA;A7BkmHF;;A6BhmHA;;EAEE,gBAAA;A7BmmHF;;A6BjmHA;;EAEE,gBAAA;A7BomHF;;A6BlmHA;EACE,gBAAA;A7BqmHF;;A6BnmHA;EACE,gBAAA;A7BsmHF;;A6BpmHA;EACE,gBAAA;A7BumHF;;A6BrmHA;EACE,gBAAA;A7BwmHF;;A6BtmHA;EACE,gBAAA;A7BymHF;;A6BvmHA;EACE,gBAAA;A7B0mHF;;A6BxmHA;EACE,gBAAA;A7B2mHF;;A6BzmHA;EACE,gBAAA;A7B4mHF;;A6B1mHA;EACE,gBAAA;A7B6mHF;;A6B3mHA;;;EAGE,gBAAA;A7B8mHF;;A6B5mHA;;EAEE,gBAAA;A7B+mHF;;A6B7mHA;;EAEE,gBAAA;A7BgnHF;;A6B9mHA;;EAEE,gBAAA;A7BinHF;;A6B/mHA;EACE,gBAAA;A7BknHF;;A6BhnHA;EACE,gBAAA;A7BmnHF;;A6BjnHA;EACE,gBAAA;A7BonHF;;A6BlnHA;EACE,gBAAA;A7BqnHF;;A6BnnHA;;;;;EAKE,gBAAA;A7BsnHF;;A6BpnHA;EACE,gBAAA;A7BunHF;;A6BrnHA;;;EAGE,gBAAA;A7BwnHF;;A6BtnHA;;EAEE,gBAAA;A7BynHF;;A6BvnHA;EACE,gBAAA;A7B0nHF;;A6BxnHA;EACE,gBAAA;A7B2nHF;;A6BznHA;;;EAGE,gBAAA;A7B4nHF;;A6B1nHA;EACE,gBAAA;A7B6nHF;;A6B3nHA;EACE,gBAAA;A7B8nHF;;A6B5nHA;;EAEE,gBAAA;A7B+nHF;;A6B7nHA;;EAEE,gBAAA;A7BgoHF;;A6B9nHA;;EAEE,gBAAA;A7BioHF;;A6B/nHA;EACE,gBAAA;A7BkoHF;;A6BhoHA;EACE,gBAAA;A7BmoHF;;A6BjoHA;EACE,gBAAA;A7BooHF;;A6BloHA;EACE,gBAAA;A7BqoHF;;A6BnoHA;EACE,gBAAA;A7BsoHF;;A6BpoHA;EACE,gBAAA;A7BuoHF;;A6BroHA;EACE,gBAAA;A7BwoHF;;A6BtoHA;EACE,gBAAA;A7ByoHF;;A6BvoHA;;EAEE,gBAAA;A7B0oHF;;A6BxoHA;EACE,gBAAA;A7B2oHF;;A6BzoHA;EACE,gBAAA;A7B4oHF;;A6B1oHA;EACE,gBAAA;A7B6oHF;;A6B3oHA;EACE,gBAAA;A7B8oHF;;A6B5oHA;EACE,gBAAA;A7B+oHF;;A6B7oHA;EACE,gBAAA;A7BgpHF;;A6B9oHA;EACE,gBAAA;A7BipHF;;A6B/oHA;EACE,gBAAA;A7BkpHF;;A6BhpHA;EACE,gBAAA;A7BmpHF;;A6BjpHA;EACE,gBAAA;A7BopHF;;A6BlpHA;EACE,gBAAA;A7BqpHF;;A6BnpHA;EACE,gBAAA;A7BspHF;;A6BppHA;EACE,gBAAA;A7BupHF;;A6BrpHA;EACE,gBAAA;A7BwpHF;;A6BtpHA;EACE,gBAAA;A7BypHF;;A6BvpHA;EACE,gBAAA;A7B0pHF;;A6BxpHA;EACE,gBAAA;A7B2pHF;;A6BzpHA;EACE,gBAAA;A7B4pHF;;A6B1pHA;EACE,gBAAA;A7B6pHF;;A6B3pHA;EACE,gBAAA;A7B8pHF;;A6B5pHA;EACE,gBAAA;A7B+pHF;;A6B7pHA;EACE,gBAAA;A7BgqHF;;A6B9pHA;EACE,gBAAA;A7BiqHF;;A6B/pHA;EACE,gBAAA;A7BkqHF;;A6BhqHA;EACE,gBAAA;A7BmqHF;;A6BjqHA;EACE,gBAAA;A7BoqHF;;A6BlqHA;EACE,gBAAA;A7BqqHF;;A6BnqHA;EACE,gBAAA;A7BsqHF;;A6BpqHA;EACE,gBAAA;A7BuqHF;;A6BrqHA;EACE,gBAAA;A7BwqHF;;A6BtqHA;EACE,gBAAA;A7ByqHF;;A6BvqHA;EACE,gBAAA;A7B0qHF;;A6BxqHA;EACE,gBAAA;A7B2qHF;;A6BzqHA;EACE,gBAAA;A7B4qHF;;A6B1qHA;EACE,gBAAA;A7B6qHF;;A6B3qHA;EACE,gBAAA;A7B8qHF;;A6B5qHA;EACE,gBAAA;A7B+qHF;;A6B7qHA;;;EAGE,gBAAA;A7BgrHF;;A6B9qHA;EACE,gBAAA;A7BirHF;;A6B/qHA;EACE,gBAAA;A7BkrHF;;A6BhrHA;EACE,gBAAA;A7BmrHF;;A6BjrHA;EACE,gBAAA;A7BorHF;;A6BlrHA;EACE,gBAAA;A7BqrHF;;A6BnrHA;EACE,gBAAA;A7BsrHF;;A6BprHA;EACE,gBAAA;A7BurHF;;A6BrrHA;EACE,gBAAA;A7BwrHF;;A6BtrHA;EACE,gBAAA;A7ByrHF;;A6BvrHA;EACE,gBAAA;A7B0rHF;;A6BxrHA;EACE,gBAAA;A7B2rHF;;A6BzrHA;EACE,gBAAA;A7B4rHF;;A6B1rHA;EACE,gBAAA;A7B6rHF;;A6B3rHA;EACE,gBAAA;A7B8rHF;;A6B5rHA;EACE,gBAAA;A7B+rHF;;A6B7rHA;EACE,gBAAA;A7BgsHF;;A6B9rHA;EACE,gBAAA;A7BisHF;;A6B/rHA;EACE,gBAAA;A7BksHF;;A6BhsHA;EACE,gBAAA;A7BmsHF;;A6BjsHA;EACE,gBAAA;A7BosHF;;A6BlsHA;EACE,gBAAA;A7BqsHF;;A6BnsHA;;EAEE,gBAAA;A7BssHF;;A6BpsHA;EACE,gBAAA;A7BusHF;;A6BrsHA;EACE,gBAAA;A7BwsHF;;A6BtsHA;EACE,gBAAA;A7BysHF;;A6BvsHA;EACE,gBAAA;A7B0sHF;;A6BxsHA;EACE,gBAAA;A7B2sHF;;A6BzsHA;EACE,gBAAA;A7B4sHF;;A6B1sHA;EACE,gBAAA;A7B6sHF;;A6B3sHA;EACE,gBAAA;A7B8sHF;;A6B5sHA;EACE,gBAAA;A7B+sHF;;A6B7sHA;EACE,gBAAA;A7BgtHF;;A6B9sHA;EACE,gBAAA;A7BitHF;;A6B/sHA;EACE,gBAAA;A7BktHF;;A6BhtHA;EACE,gBAAA;A7BmtHF;;A6BjtHA;EACE,gBAAA;A7BotHF;;A6BltHA;EACE,gBAAA;A7BqtHF;;A6BntHA;;EAEE,gBAAA;A7BstHF;;A6BptHA;EACE,gBAAA;A7ButHF;;A6BrtHA;EACE,gBAAA;A7BwtHF;;A6BttHA;EACE,gBAAA;A7BytHF;;A6BvtHA;EACE,gBAAA;A7B0tHF;;A6BxtHA;;EAEE,gBAAA;A7B2tHF;;A6BztHA;EACE,gBAAA;A7B4tHF;;A6B1tHA;EACE,gBAAA;A7B6tHF;;A6B3tHA;EACE,gBAAA;A7B8tHF;;A6B5tHA;;;EAGE,gBAAA;A7B+tHF;;A6B7tHA;;EAEE,gBAAA;A7BguHF;;A6B9tHA;;EAEE,gBAAA;A7BiuHF;;A6B/tHA;;EAEE,gBAAA;A7BkuHF;;A6BhuHA;;EAEE,gBAAA;A7BmuHF;;A6BjuHA;EACE,gBAAA;A7BouHF;;A6BluHA;EACE,gBAAA;A7BquHF;;A6BnuHA;EACE,gBAAA;A7BsuHF;;A6BpuHA;EACE,gBAAA;A7BuuHF;;A6BruHA;EACE,gBAAA;A7BwuHF;;A6BtuHA;EACE,gBAAA;A7ByuHF;;A6BvuHA;EACE,gBAAA;A7B0uHF;;A6BxuHA;EACE,gBAAA;A7B2uHF;;A6BzuHA;EACE,gBAAA;A7B4uHF;;A6B1uHA;EACE,gBAAA;A7B6uHF;;A6B3uHA;EACE,gBAAA;A7B8uHF;;A6B5uHA;;EAEE,gBAAA;A7B+uHF;;A6B7uHA;;EAEE,gBAAA;A7BgvHF;;A6B9uHA;;EAEE,gBAAA;A7BivHF;;A6B/uHA;EACE,gBAAA;A7BkvHF;;A6BhvHA;;EAEE,gBAAA;A7BmvHF;;A6BjvHA;;EAEE,gBAAA;A7BovHF;;A6BlvHA;EACE,gBAAA;A7BqvHF;;A6BnvHA;EACE,gBAAA;A7BsvHF;;A6BpvHA;EACE,gBAAA;A7BuvHF;;A6BrvHA;EACE,gBAAA;A7BwvHF;;A6BtvHA;EACE,gBAAA;A7ByvHF;;A6BvvHA;EACE,gBAAA;A7B0vHF;;A6BxvHA;EACE,gBAAA;A7B2vHF;;A6BzvHA;EACE,gBAAA;A7B4vHF;;A6B1vHA;EACE,gBAAA;A7B6vHF;;A6B3vHA;EACE,gBAAA;A7B8vHF;;A6B5vHA;EACE,gBAAA;A7B+vHF;;A6B7vHA;EACE,gBAAA;A7BgwHF;;A6B9vHA;EACE,gBAAA;A7BiwHF;;A6B/vHA;EACE,gBAAA;A7BkwHF;;A6BhwHA;EACE,gBAAA;A7BmwHF;;A6BjwHA;EACE,gBAAA;A7BowHF;;A6BlwHA;EACE,gBAAA;A7BqwHF;;A6BnwHA;EACE,gBAAA;A7BswHF;;A6BpwHA;EACE,gBAAA;A7BuwHF;;A6BrwHA;EACE,gBAAA;A7BwwHF;;A6BtwHA;;EAEE,gBAAA;A7BywHF;;A6BvwHA;EACE,gBAAA;A7B0wHF;;A6BxwHA;EACE,gBAAA;A7B2wHF;;A6BzwHA;EACE,gBAAA;A7B4wHF;;A6B1wHA;EACE,gBAAA;A7B6wHF;;A6B3wHA;EACE,gBAAA;A7B8wHF;;A6B5wHA;EACE,gBAAA;A7B+wHF;;A6B7wHA;EACE,gBAAA;A7BgxHF;;A6B9wHA;EACE,gBAAA;A7BixHF;;A6B/wHA;EACE,gBAAA;A7BkxHF;;A6BhxHA;EACE,gBAAA;A7BmxHF;;A6BjxHA;EACE,gBAAA;A7BoxHF;;A6BlxHA;EACE,gBAAA;A7BqxHF;;A6BnxHA;EACE,gBAAA;A7BsxHF;;A6BpxHA;EACE,gBAAA;A7BuxHF;;A6BrxHA;EACE,gBAAA;A7BwxHF;;A6BtxHA;EACE,gBAAA;A7ByxHF;;A6BvxHA;EACE,gBAAA;A7B0xHF;;A6BxxHA;EACE,gBAAA;A7B2xHF;;A6BzxHA;EACE,gBAAA;A7B4xHF;;A6B1xHA;EACE,gBAAA;A7B6xHF;;A6B3xHA;EACE,gBAAA;A7B8xHF;;A6B5xHA;EACE,gBAAA;A7B+xHF;;A6B7xHA;EACE,gBAAA;A7BgyHF;;A6B9xHA;EACE,gBAAA;A7BiyHF;;A6B/xHA;EACE,gBAAA;A7BkyHF;;A6BhyHA;EACE,gBAAA;A7BmyHF;;A6BjyHA;EACE,gBAAA;A7BoyHF;;A6BlyHA;EACE,gBAAA;A7BqyHF;;A6BnyHA;EACE,gBAAA;A7BsyHF;;A6BpyHA;EACE,gBAAA;A7BuyHF;;A6BryHA;EACE,gBAAA;A7BwyHF;;A6BtyHA;EACE,gBAAA;A7ByyHF;;A6BvyHA;EACE,gBAAA;A7B0yHF;;A6BxyHA;EACE,gBAAA;A7B2yHF;;A6BzyHA;EACE,gBAAA;A7B4yHF;;A6B1yHA;EACE,gBAAA;A7B6yHF;;A6B3yHA;EACE,gBAAA;A7B8yHF;;A6B5yHA;EACE,gBAAA;A7B+yHF;;A6B7yHA;EACE,gBAAA;A7BgzHF;;A6B9yHA;EACE,gBAAA;A7BizHF;;A6B/yHA;EACE,gBAAA;A7BkzHF;;A6BhzHA;EACE,gBAAA;A7BmzHF;;A6BjzHA;EACE,gBAAA;A7BozHF;;A6BlzHA;EACE,gBAAA;A7BqzHF;;A6BnzHA;EACE,gBAAA;A7BszHF;;A6BpzHA;EACE,gBAAA;A7BuzHF;;A6BrzHA;EACE,gBAAA;A7BwzHF;;A6BtzHA;EACE,gBAAA;A7ByzHF;;A6BvzHA;EACE,gBAAA;A7B0zHF;;A6BxzHA;EACE,gBAAA;A7B2zHF;;A6BzzHA;;EAEE,gBAAA;A7B4zHF;;A6B1zHA;;;EAGE,gBAAA;A7B6zHF;;A6B3zHA;EACE,gBAAA;A7B8zHF;;A6B5zHA;EACE,gBAAA;A7B+zHF;;A6B7zHA;;EAEE,gBAAA;A7Bg0HF;;A6B9zHA;EACE,gBAAA;A7Bi0HF;;A6B/zHA;EACE,gBAAA;A7Bk0HF;;A6Bh0HA;EACE,gBAAA;A7Bm0HF;;A6Bj0HA;EACE,gBAAA;A7Bo0HF;;A6Bl0HA;EACE,gBAAA;A7Bq0HF;;A6Bn0HA;EACE,gBAAA;A7Bs0HF;;A6Bp0HA;EACE,gBAAA;A7Bu0HF;;A6Br0HA;EACE,gBAAA;A7Bw0HF;;A6Bt0HA;EACE,gBAAA;A7By0HF;;A6Bv0HA;EACE,gBAAA;A7B00HF;;A6Bx0HA;;EAEE,gBAAA;A7B20HF;;A6Bz0HA;;EAEE,gBAAA;A7B40HF;;A6B10HA;EACE,gBAAA;A7B60HF;;A6B30HA;EACE,gBAAA;A7B80HF;;A6B50HA;EACE,gBAAA;A7B+0HF;;A6B70HA;EACE,gBAAA;A7Bg1HF;;A6B90HA;EACE,gBAAA;A7Bi1HF;;A6B/0HA;EACE,gBAAA;A7Bk1HF;;A6Bh1HA;;EAEE,gBAAA;A7Bm1HF;;A6Bj1HA;;EAEE,gBAAA;A7Bo1HF;;A6Bl1HA;EACE,gBAAA;A7Bq1HF;;A6Bn1HA;EACE,gBAAA;A7Bs1HF;;A6Bp1HA;EACE,gBAAA;A7Bu1HF;;A6Br1HA;EACE,gBAAA;A7Bw1HF;;A6Bt1HA;;EAEE,gBAAA;A7By1HF;;A6Bv1HA;;EAEE,gBAAA;A7B01HF;;A6Bx1HA;EACE,gBAAA;A7B21HF;;A6Bz1HA;EACE,gBAAA;A7B41HF;;A6B11HA;EACE,gBAAA;A7B61HF;;A6B31HA;;;EAGE,gBAAA;A7B81HF;;A6B51HA;;EAEE,gBAAA;A7B+1HF;;A6B71HA;;EAEE,gBAAA;A7Bg2HF;;A6B91HA;;EAEE,gBAAA;A7Bi2HF;;A6B/1HA;;EAEE,gBAAA;A7Bk2HF;;A6Bh2HA;EACE,gBAAA;A7Bm2HF;;A6Bj2HA;;;EAGE,gBAAA;A7Bo2HF;;A6Bl2HA;EACE,gBAAA;A7Bq2HF;;A6Bn2HA;EACE,gBAAA;A7Bs2HF;;A6Bp2HA;EACE,gBAAA;A7Bu2HF;;A6Br2HA;EACE,gBAAA;A7Bw2HF;;A6Bt2HA;;EAEE,gBAAA;A7By2HF;;A6Bv2HA;;EAEE,gBAAA;A7B02HF;;A6Bx2HA;EACE,gBAAA;A7B22HF;;A6Bz2HA;EACE,gBAAA;A7B42HF;;A6B12HA;EACE,gBAAA;A7B62HF;;A6B32HA;EACE,gBAAA;A7B82HF;;A6B52HA;EACE,gBAAA;A7B+2HF;;A6B72HA;EACE,gBAAA;A7Bg3HF;;A6B92HA;EACE,gBAAA;A7Bi3HF;;A6B/2HA;EACE,gBAAA;A7Bk3HF;;A6Bh3HA;EACE,gBAAA;A7Bm3HF;;A6Bj3HA;EACE,gBAAA;A7Bo3HF;;A6Bl3HA;EACE,gBAAA;A7Bq3HF;;A6Bn3HA;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,sBAAA;EACA,SAAA;A7Bs3HF;;A6Bp3HA;;EAEE,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;A7Bu3HF","file":"../../css/lifterlms.css","sourcesContent":["@charset \"UTF-8\";\n.llms-pagination ul:before, .llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:before,\n.llms-form-fields:before,\n.llms-checkout-cols-2:before,\n.llms-access-plans:before,\n.llms-course-navigation:before,\n.llms-loop-list:before,\n.llms-cols:before,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n content: \" \";\n display: table;\n}\n.llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n clear: both;\n}\n\n.llms-cols .llms-col {\n width: 100%;\n}\n@media all and (min-width: 600px) {\n .llms-cols [class*=llms-col-] {\n float: left;\n }\n}\n\n.llms-flex-cols {\n display: flex;\n flex-flow: row wrap;\n}\n.llms-flex-cols [class*=llms-col] {\n flex: 0 1 auto;\n width: 100%;\n}\n\n@media all and (min-width: 600px) {\n .llms-cols .llms-col-1, .llms-flex-cols .llms-col-1 {\n width: 100%;\n }\n .llms-cols .llms-col-2, .llms-flex-cols .llms-col-2 {\n width: 50%;\n }\n .llms-cols .llms-col-3, .llms-flex-cols .llms-col-3 {\n width: 33.3333333333%;\n }\n .llms-cols .llms-col-4, .llms-flex-cols .llms-col-4 {\n width: 25%;\n }\n .llms-cols .llms-col-5, .llms-flex-cols .llms-col-5 {\n width: 20%;\n }\n .llms-cols .llms-col-6, .llms-flex-cols .llms-col-6 {\n width: 16.6666666667%;\n }\n .llms-cols .llms-col-7, .llms-flex-cols .llms-col-7 {\n width: 14.2857142857%;\n }\n .llms-cols .llms-col-8, .llms-flex-cols .llms-col-8 {\n width: 12.5%;\n }\n .llms-cols .llms-col-9, .llms-flex-cols .llms-col-9 {\n width: 11.1111111111%;\n }\n .llms-cols .llms-col-10, .llms-flex-cols .llms-col-10 {\n width: 10%;\n }\n .llms-cols .llms-col-11, .llms-flex-cols .llms-col-11 {\n width: 9.0909090909%;\n }\n .llms-cols .llms-col-12, .llms-flex-cols .llms-col-12 {\n width: 8.3333333333%;\n }\n}\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #2295ff;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #0077e4;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #4ba9ff;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.llms-donut {\n background-color: #f1f1f1;\n background-image: none;\n border-radius: 50%;\n color: #ef476f;\n height: 200px;\n overflow: hidden;\n position: relative;\n width: 200px;\n}\n.llms-donut:before, .llms-donut:after {\n content: \" \";\n display: table;\n}\n.llms-donut:after {\n clear: both;\n}\n.llms-donut svg {\n overflow: visible !important;\n pointer-events: none;\n width: 100%;\n}\n.llms-donut svg path {\n fill: none;\n stroke-width: 35px;\n stroke: #ef476f;\n}\n.llms-donut.mini {\n height: 36px;\n width: 36px;\n}\n.llms-donut.mini .percentage {\n font-size: 10px;\n}\n.llms-donut.small {\n height: 100px;\n width: 100px;\n}\n.llms-donut.small .percentage {\n font-size: 18px;\n}\n.llms-donut.medium {\n height: 130px;\n width: 130px;\n}\n.llms-donut.medium .percentage {\n font-size: 26px;\n}\n.llms-donut.large {\n height: 260px;\n width: 260px;\n}\n.llms-donut.large .percentage {\n font-size: 48px;\n}\n.llms-donut .inside {\n align-items: center;\n background: #fff;\n border-radius: 50%;\n box-sizing: border-box;\n display: flex;\n flex-wrap: wrap;\n height: 80%;\n justify-content: center;\n left: 50%;\n position: absolute;\n text-align: center;\n transform: translate(-50%, -50%);\n width: 80%;\n top: 50%;\n z-index: 3;\n}\n.llms-donut .percentage {\n line-height: 1.2;\n font-size: 34px;\n}\n.llms-donut .caption {\n font-size: 50%;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n.llms-membership-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-course-image {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n}\n\n.llms-featured-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-image-thumb {\n width: 150px;\n}\n\n.llms-video-wrapper .center-video {\n height: auto;\n max-width: 100%;\n overflow: hidden;\n position: relative;\n padding-top: 56.25%;\n text-align: center;\n}\n.llms-video-wrapper .center-video > .wp-video,\n.llms-video-wrapper .center-video .fluid-width-video-wrapper,\n.llms-video-wrapper .center-video iframe, .llms-video-wrapper .center-video object, .llms-video-wrapper .center-video embed {\n height: 100%;\n left: 0;\n position: absolute;\n top: 0;\n width: 100%;\n}\n.llms-video-wrapper .center-video > .wp-video {\n width: 100% !important;\n}\n.llms-video-wrapper .center-video .fluid-width-video-wrapper {\n padding-top: 0 !important;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\n.llms-featured-image {\n text-align: center;\n}\n\n#main-content .llms-payment-options p {\n margin: 0;\n font-size: 16px;\n}\n\n.llms-option {\n display: block;\n position: relative;\n margin: 20px 0;\n padding-left: 40px;\n font-size: 16px;\n}\n.llms-option label {\n cursor: pointer;\n position: static;\n}\n\n.llms-option:first-child {\n margin-top: 0;\n}\n\n.llms-option:last-child {\n margin-bottom: 0;\n}\n\n#main-content .llms-option:last-child {\n margin-bottom: 0;\n}\n\n.llms-option input[type=radio] {\n display: block;\n position: absolute;\n top: 3px;\n left: 0;\n z-index: 0;\n}\n\n.llms-option input[type=radio] {\n display: inline-block;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n display: none;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n appearance: none;\n z-index: 20;\n position: absolute;\n top: 0;\n left: -2px;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n vertical-align: middle;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.5) 0 0 0 1px;\n background: #efefef;\n background-image: radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);\n background-repeat: no-repeat;\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n background-position: -24px 0;\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n background-position: 0 0;\n}\n\n.llms-option input[type=submit] {\n border: none;\n background: #e5554e;\n color: #fff;\n font-size: 20px;\n padding: 10px 0;\n border-radius: 3px;\n cursor: pointer;\n width: 100%;\n}\n\n.llms-styled-text {\n padding: 14px 0;\n}\n\n.llms-notice-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n border: 1px solid #ccc;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n.llms-notice-box input[type=text] {\n height: auto;\n}\n.llms-notice-box .col-1-1 {\n width: 100%;\n}\n.llms-notice-box .col-1-1 input[type=text] {\n width: 100%;\n}\n.llms-notice-box .col-1-2 {\n width: 50%;\n float: left;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-2 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-3 {\n width: 33%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-4 {\n width: 25%;\n float: left;\n margin-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-4 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-6 {\n width: 16.6%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-8 {\n width: 11%;\n float: right;\n}\n.llms-notice-box .llms-pad-right {\n padding-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .llms-pad-right {\n padding-right: 0;\n }\n}\n\ninput[type=text].cc_cvv,\n#cc_cvv {\n margin-right: 0;\n width: 23%;\n float: right;\n}\n\n.llms-clear-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n\n.llms-price-label {\n font-weight: normal;\n}\n\n.llms-final-price {\n font-weight: bold;\n float: right;\n}\n\n.llms-center-content {\n text-align: center;\n}\n\n.llms-input-text {\n background-color: #fff;\n border: 1px solid #ddd;\n color: #333;\n font-size: 18px;\n font-weight: 300;\n padding: 16px;\n width: 100%;\n}\n\n.llms-price {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.llms-price-loop {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.courses .entry {\n padding: 0;\n}\n\n.list-view .site-content .llms-course-list .hentry, .list-view .site-content .llms-membership-list .hentry {\n border-top: 0;\n padding-top: 0;\n}\n\n.llms-content {\n width: 100%;\n}\n\n.llms-lesson-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-template-wrapper {\n width: 100%;\n display: block;\n clear: both;\n}\n\n.llms-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-styled-select {\n border: 1px solid #ccc;\n box-sizing: border-box;\n border-radius: 3px;\n overflow: hidden;\n position: relative;\n}\n\n.llms-styled-select, .llms-styled-select select {\n width: 100%;\n}\n\nselect:focus {\n outline: none;\n}\n\n.llms-styled-select select {\n height: 34px;\n padding: 5px 0 5px 5px;\n background: transparent;\n border: none;\n -webkit-appearance: none;\n font-size: 16px;\n color: #444444;\n}\n\n@-moz-document url-prefix() {\n .--ms-styled-select select {\n width: 110%;\n }\n}\n.llms-styled-select .fa-sort-desc {\n position: absolute;\n top: 0;\n right: 12px;\n font-size: 24px;\n color: #ccc;\n}\n\nselect::-ms-expand {\n display: none;\n}\n\n_:-o-prefocus .llms-styled-select, .selector .llms-styled-select {\n background: none;\n}\n\n.llms-form-item-wrapper {\n margin-bottom: 1em;\n}\n\n/* Circle Graph */\n.llms-progress-circle {\n position: relative;\n width: 200px;\n height: 200px;\n float: left;\n}\n\n.llms-progress-circle-count {\n top: 27%;\n position: absolute;\n width: 94%;\n text-align: center;\n color: #666;\n font-size: 44px;\n}\n\n.llms-progress-circle svg {\n position: absolute;\n width: 200px;\n height: 200px;\n}\n\n.llms-progress-circle circle {\n fill: transparent;\n}\n\nsvg .llms-background-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #f1f2f1;\n stroke-dasharray: 430;\n}\n\nsvg .llms-animated-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #e5554e;\n stroke-dasharray: 430;\n stroke-dashoffset: 410;\n}\n\n.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title {\n font-weight: 700;\n}\n.llms-widget-syllabus .llms-lesson-complete, .llms-widget-syllabus .lesson-complete-placeholder {\n font-size: 1.2em;\n margin-right: 6px;\n color: #ccc;\n}\n.llms-widget-syllabus .llms-lesson-complete.done, .llms-widget-syllabus .lesson-complete-placeholder.done {\n color: #e5554e;\n}\n.llms-widget-syllabus .section-title {\n font-weight: bold;\n}\n.llms-widget-syllabus .lesson-title a {\n text-decoration: none;\n}\n.llms-widget-syllabus .lesson-title a:hover {\n text-decoration: none !important;\n}\n.llms-widget-syllabus .lesson-title.done a {\n color: #999;\n text-decoration: line-through;\n}\n.llms-widget-syllabus ul {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li ul li {\n margin: 0 0 2px 0;\n padding: 0;\n}\n\n.llms-remove-coupon {\n float: right;\n}\n\n.llms-lesson-link-locked, .llms-lesson-link-locked:hover {\n background: #f1f1f1;\n box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n display: block;\n color: #a6a6a6;\n min-height: 85px;\n padding: 15px;\n text-decoration: none;\n position: relative;\n}\n\n.llms-lesson-preview.is-complete .llms-lesson-link-locked {\n padding-left: 75px;\n}\n\n.llms-lesson-tooltip {\n display: none;\n position: absolute;\n color: #000000;\n background-color: #c0c0c0;\n padding: 0.25em;\n border-radius: 2px;\n z-index: 100;\n top: 0;\n left: 50%;\n text-align: center;\n -webkit-transform: translateX(-50%) translateY(-100%);\n transform: translateX(-50%) translateY(-100%);\n}\n\n/* arrows - :after */\n.llms-lesson-tooltip:after {\n content: \"\";\n width: 0;\n height: 0;\n border-top: 8px solid #c0c0c0;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n position: absolute;\n bottom: -8px;\n left: 50%;\n transform: translateX(-50%);\n}\n\n.llms-lesson-tooltip.active {\n display: inline-block;\n}\n\n.llms-loop-list {\n list-style: none;\n margin: 0 -10px;\n padding: 0;\n}\n@media all and (min-width: 600px) {\n .llms-loop-list.cols-1 .llms-loop-item {\n width: 100%;\n }\n .llms-loop-list.cols-2 .llms-loop-item {\n width: 50%;\n }\n .llms-loop-list.cols-3 .llms-loop-item {\n width: 33.3333333333%;\n }\n .llms-loop-list.cols-4 .llms-loop-item {\n width: 25%;\n }\n .llms-loop-list.cols-5 .llms-loop-item {\n width: 20%;\n }\n .llms-loop-list.cols-6 .llms-loop-item {\n width: 16.6666666667%;\n }\n}\n\n.llms-loop-item {\n float: left;\n list-style: none;\n margin: 0;\n padding: 0;\n width: 100%;\n}\n\n.llms-loop-item-content {\n background: #f1f1f1;\n padding-bottom: 10px;\n margin: 10px;\n}\n.llms-loop-item-content:hover {\n background: #eaeaea;\n}\n.llms-loop-item-content .llms-loop-link {\n color: #212121;\n display: block;\n}\n.llms-loop-item-content .llms-loop-link:visited {\n color: #212121;\n}\n.llms-loop-item-content .llms-featured-image {\n display: block;\n max-width: 100%;\n}\n.llms-loop-item-content .llms-loop-title {\n margin-top: 5px;\n}\n.llms-loop-item-content .llms-loop-title:hover {\n color: #2295ff;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author,\n.llms-loop-item-content .llms-loop-title {\n padding: 0 10px;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author {\n color: #444;\n display: block;\n font-size: 13px;\n margin-bottom: 3px;\n}\n.llms-loop-item-content .llms-meta:last-child,\n.llms-loop-item-content .llms-author:last-child {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-featured-img-wrap {\n overflow: hidden;\n}\n.llms-loop-item-content p {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-progress {\n margin: 0;\n height: 0.4em;\n}\n.llms-loop-item-content .llms-progress .progress__indicator {\n display: none;\n}\n.llms-loop-item-content .llms-progress .llms-progress-bar {\n background-color: #f6f6f6;\n right: 0;\n top: 0;\n}\n\n.course .llms-meta-info {\n margin: 20px 0;\n}\n.course .llms-meta-info .llms-meta-title {\n margin-bottom: 5px;\n}\n.course .llms-meta-info .llms-meta p {\n margin-bottom: 0;\n}\n.course .llms-meta-info .llms-meta span {\n font-weight: 700;\n}\n.course .llms-course-progress {\n margin: 40px auto;\n max-width: 480px;\n text-align: center;\n}\n\n.llms-syllabus-wrapper {\n margin: 15px;\n text-align: center;\n}\n.llms-syllabus-wrapper .llms-section-title {\n margin: 25px 0 0;\n}\n\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-back-to-course {\n width: 49%;\n}\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-back-to-course {\n float: left;\n margin-right: 0.5%;\n}\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-prev-lesson + .llms-back-to-course {\n float: right;\n margin-left: 0.5%;\n}\n\n.llms-lesson-preview {\n display: inline-block;\n margin-top: 15px;\n max-width: 100%;\n position: relative;\n width: 480px;\n}\n.llms-lesson-preview .llms-lesson-link {\n background: #f1f1f1;\n color: #212121;\n display: block;\n padding: 15px;\n text-decoration: none;\n}\n.llms-lesson-preview .llms-lesson-link:before, .llms-lesson-preview .llms-lesson-link:after {\n content: \" \";\n display: table;\n}\n.llms-lesson-preview .llms-lesson-link:after {\n clear: both;\n}\n.llms-lesson-preview .llms-lesson-link:hover {\n background: #eaeaea;\n}\n.llms-lesson-preview .llms-lesson-link:visited {\n color: #212121;\n}\n.llms-lesson-preview .llms-lesson-thumbnail {\n margin-bottom: 10px;\n}\n.llms-lesson-preview .llms-lesson-thumbnail img {\n display: block;\n width: 100%;\n}\n.llms-lesson-preview .llms-pre-text {\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title {\n font-weight: 700;\n margin: 0 auto 10px;\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title:last-child {\n margin-bottom: 0;\n}\n.llms-lesson-preview .llms-lesson-excerpt {\n text-align: left;\n}\n.llms-lesson-preview .llms-main {\n float: left;\n width: 100%;\n}\n.llms-lesson-preview .llms-extra {\n float: right;\n width: 15%;\n}\n.llms-lesson-preview .llms-extra + .llms-main {\n width: 85%;\n}\n.llms-lesson-preview .llms-lesson-counter,\n.llms-lesson-preview .llms-free-lesson-svg,\n.llms-lesson-preview .llms-lesson-complete,\n.llms-lesson-preview .llms-lesson-complete-placeholder {\n display: block;\n font-size: 32px;\n margin-bottom: 15px;\n}\n.llms-lesson-preview.is-free .llms-lesson-complete, .llms-lesson-preview.is-complete .llms-lesson-complete {\n color: #2295ff;\n}\n.llms-lesson-preview .llms-icon-free {\n background: #2295ff;\n border-radius: 4px;\n color: #f1f1f1;\n display: inline-block;\n padding: 5px 6px 4px;\n line-height: 1;\n font-size: 14px;\n}\n.llms-lesson-preview.is-incomplete .llms-lesson-complete {\n color: #cacaca;\n}\n.llms-lesson-preview .llms-lesson-counter {\n font-size: 16px;\n line-height: 1;\n}\n.llms-lesson-preview .llms-free-lesson-svg {\n fill: currentColor;\n height: 23px;\n width: 50px;\n}\n.llms-lesson-preview p {\n margin-bottom: 0;\n}\n\n/* progress bar */\n.llms-progress {\n clear: both;\n display: flex;\n flex-direction: row-reverse;\n position: relative;\n height: 1em;\n width: 100%;\n margin: 15px 0;\n}\n\n.llms-progress .llms-progress-bar {\n background-color: #f1f2f1;\n position: relative;\n height: 0.4em;\n top: 0.3em;\n width: 100%;\n}\n\n.llms-progress .progress-bar-complete {\n background-color: #ef476f;\n height: 100%;\n}\n\n.progress__indicator {\n float: right;\n text-align: right;\n height: 1em;\n line-height: 1em;\n margin-left: 5px;\n white-space: nowrap;\n}\n\n.llms-author .name {\n margin-left: 5px;\n}\n.llms-author .label {\n margin-left: 5px;\n}\n.llms-author .avatar {\n border-radius: 50%;\n}\n.llms-author .bio {\n margin-top: 5px;\n}\n\n.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author {\n margin-left: 0;\n}\n.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author {\n margin-right: 0;\n}\n.llms-instructor-info .llms-instructors .llms-author {\n background: #f5f5f5;\n border-top: 4px solid #2295ff;\n text-align: center;\n margin: 45px 5px 5px;\n padding: 0 10px 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .avatar {\n background: #2295ff;\n border: 4px solid #2295ff;\n display: block;\n margin: -35px auto 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info {\n display: block;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name {\n font-weight: 700;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label {\n font-size: 85%;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio {\n font-size: 90%;\n margin-bottom: 0;\n}\n\n.llms_review {\n margin: 20px 0px;\n padding: 10px;\n}\n.llms_review h5 {\n font-size: 17px;\n margin: 3px 0px;\n}\n.llms_review h6 {\n font-size: 13px;\n}\n.llms_review p {\n font-size: 15px;\n}\n\n.review_box [type=text] {\n margin: 10px 0px;\n}\n.review_box h5 {\n color: red;\n display: none;\n}\n.review_box + .thank_you_box {\n display: none;\n}\n\n.llms-notice {\n background: rgba(34, 149, 255, 0.3);\n border-color: #2295ff;\n border-style: solid;\n border-width: 3px;\n padding: 10px;\n margin-bottom: 10px;\n}\n.llms-notice p:last-child, .llms-notice ul:last-child {\n margin-bottom: 0;\n}\n.llms-notice li {\n list-style-type: none;\n}\n.llms-notice.llms-debug {\n background: rgba(202, 202, 202, 0.3);\n border-color: #cacaca;\n}\n.llms-notice.llms-error {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-notice.llms-success {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n\n.entry-content .llms-notice {\n margin: 0 0 10px;\n}\n.entry-content .llms-notice li {\n list-style-type: none;\n}\n\nul.llms-achievements-loop,\n.lifterlms ul.llms-achievements-loop,\nul.llms-certificates-loop,\n.lifterlms ul.llms-certificates-loop {\n list-style-type: none;\n margin: 0 -10px;\n padding: 0;\n}\nul.llms-achievements-loop:before, ul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:before,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:before,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:before,\n.lifterlms ul.llms-certificates-loop:after {\n content: \" \";\n display: table;\n}\nul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:after {\n clear: both;\n}\nul.llms-achievements-loop li.llms-achievement-loop-item,\nul.llms-achievements-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,\nul.llms-certificates-loop li.llms-achievement-loop-item,\nul.llms-certificates-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item {\n box-sizing: border-box;\n display: block;\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 10px;\n width: 100%;\n}\n@media all and (min-width: 600px) {\n ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item {\n width: 100%;\n }\n ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item {\n width: 50%;\n }\n ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item {\n width: 33.3333333333%;\n }\n ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item {\n width: 25%;\n }\n ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item {\n width: 20%;\n }\n}\n\n.llms-achievement,\n.llms-certificate {\n background: #f1f1f1;\n border: none;\n color: inherit;\n display: block;\n text-decoration: none;\n width: 100%;\n}\n.llms-achievement:hover,\n.llms-certificate:hover {\n background: #eaeaea;\n}\n.llms-achievement .llms-achievement-img,\n.llms-certificate .llms-achievement-img {\n display: block;\n margin: 0;\n width: 100%;\n}\n.llms-achievement .llms-achievement-title,\n.llms-certificate .llms-achievement-title {\n font-size: 16px;\n margin: 0;\n padding: 10px;\n text-align: center;\n}\n.llms-achievement .llms-certificate-title,\n.llms-certificate .llms-certificate-title {\n font-size: 16px;\n margin: 0;\n padding: 0 0 10px;\n}\n.llms-achievement .llms-achievement-info,\n.llms-achievement .llms-achievement-date,\n.llms-certificate .llms-achievement-info,\n.llms-certificate .llms-achievement-date {\n display: none;\n}\n.llms-achievement .llms-achievement-content,\n.llms-certificate .llms-achievement-content {\n padding: 20px;\n}\n.llms-achievement .llms-achievement-content:empty,\n.llms-certificate .llms-achievement-content:empty {\n padding: 0;\n}\n.llms-achievement .llms-achievement-content *:last-child,\n.llms-certificate .llms-achievement-content *:last-child {\n margin-bottom: 0;\n}\n\n.llms-certificate {\n border: 4px double #f1f1f1;\n padding: 20px 10px;\n background: #fff;\n text-align: center;\n}\n.llms-certificate:hover {\n background: #fff;\n border-color: #eaeaea;\n}\n\n.llms-achievement-modal .llms-achievement {\n background: #fff;\n}\n.llms-achievement-modal .llms-achievement-info {\n display: block;\n}\n.llms-achievement-modal .llms-achievement-title {\n display: none;\n}\n\n.llms-notification {\n background: #fff;\n box-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n border-top: 4px solid #2295ff;\n opacity: 0;\n padding: 12px;\n position: fixed;\n right: -800px;\n top: 24px;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out;\n visibility: hidden;\n width: auto;\n z-index: 9999999;\n}\n.llms-notification:before, .llms-notification:after {\n content: \" \";\n display: table;\n}\n.llms-notification:after {\n clear: both;\n}\n.llms-notification.visible {\n left: 12px;\n opacity: 1;\n right: 12px;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, transform 0.2s ease-in-out;\n visibility: visible;\n}\n.llms-notification.visible:hover .llms-notification-dismiss {\n opacity: 1;\n}\n.llms-notification .llms-notification-content {\n align-items: center;\n display: flex;\n}\n.llms-notification .llms-notification-main {\n align-self: flex-start;\n flex: 4;\n order: 2;\n}\n.llms-notification .llms-notification-title {\n font-size: 18px;\n margin: 0;\n}\n.llms-notification .llms-notification-body {\n font-size: 14px;\n line-height: 1.4;\n}\n.llms-notification .llms-notification-body p, .llms-notification .llms-notification-body li {\n font-size: inherit;\n}\n.llms-notification .llms-notification-body p {\n margin-bottom: 8px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert {\n background: #f6f6f6;\n border: 1px solid #d0d0d0;\n box-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n padding: 16px 16px 24px;\n margin-top: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title {\n font-size: 16px;\n font-weight: 700;\n margin: 12px auto;\n text-align: center;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body {\n width: 100%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(1) {\n width: 65%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(2) {\n width: 35%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(3) {\n width: 85%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(4) {\n width: 75%;\n margin-top: 18px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(5) {\n width: 70%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(6) {\n margin-left: 12px;\n margin-bottom: -24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(7) {\n width: 65%;\n margin-right: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line {\n border-radius: 2px;\n height: 8px;\n background: #b0b0b0;\n background-image: linear-gradient(to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);\n background-repeat: no-repeat;\n margin: 4px auto;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot {\n background: #b0b0b0;\n border-radius: 50%;\n display: inline-block;\n content: \"\";\n height: 24px;\n width: 24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert p {\n margin-bottom: 0;\n}\n.llms-notification .llms-notification-aside {\n align-self: flex-start;\n flex: 1;\n margin-right: 12px;\n order: 1;\n}\n.llms-notification .llms-notification-icon {\n display: block;\n max-width: 64px;\n}\n.llms-notification .llms-notification-footer {\n border-top: 1px solid #e5e5e5;\n font-size: 12px;\n margin-top: 12px;\n padding: 6px 6px 0;\n text-align: right;\n}\n.llms-notification .llms-notification-dismiss {\n color: #e5554e;\n cursor: pointer;\n font-size: 22px;\n position: absolute;\n right: 10px;\n top: 8px;\n transition: opacity 0.4s ease-in-out;\n}\n\n.llms-sd-notification-center .llms-notification-list,\n.llms-sd-notification-center .llms-notification-list-item {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification {\n background: #fcfcfc;\n}\n.llms-sd-notification-center .llms-notification {\n opacity: 1;\n border-top: 1px solid #e5e5e5;\n left: auto;\n padding: 24px;\n position: relative;\n right: auto;\n top: auto;\n visibility: visible;\n width: auto;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-aside {\n max-width: 64px;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-footer {\n border: none;\n padding: 0;\n text-align: left;\n}\n.llms-sd-notification-center .llms-notification .llms-progress {\n display: none !important;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-date {\n color: #515151;\n float: left;\n margin-right: 6px;\n}\n.llms-sd-notification-center .llms-notification .llms-mini-cert {\n margin: 0 auto;\n max-width: 380px;\n}\n\n@media all and (min-width: 480px) {\n .llms-notification {\n right: -800px;\n width: 360px;\n }\n .llms-notification.visible {\n left: auto;\n right: 24px;\n }\n .llms-notification .llms-notification-dismiss {\n opacity: 0;\n }\n}\n.llms-pagination ul {\n list-style-type: none;\n}\n.llms-pagination ul li {\n float: left;\n}\n.llms-pagination ul li a {\n border-bottom: 0;\n text-decoration: none;\n}\n.llms-pagination ul li .page-numbers {\n padding: 0.5em;\n text-decoration: underline;\n}\n.llms-pagination ul li .page-numbers.current {\n text-decoration: none;\n}\n\n.llms-tooltip {\n background: #2a2a2a;\n border-radius: 4px;\n color: #fff;\n font-size: 14px;\n line-height: 1.2;\n opacity: 0;\n top: -20px;\n padding: 8px 12px;\n left: 50%;\n position: absolute;\n pointer-events: none;\n transform: translateX(-50%);\n transition: opacity 0.2s ease, top 0.2s ease;\n max-width: 320px;\n}\n.llms-tooltip.show {\n top: -28px;\n opacity: 1;\n}\n.llms-tooltip:after {\n bottom: -8px;\n border-top: 8px solid #2a2a2a;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n content: \"\";\n height: 0;\n left: 50%;\n position: absolute;\n transform: translateX(-50%);\n width: 0;\n}\n\n.webui-popover-title {\n font-size: initial;\n font-weight: initial;\n line-height: initial;\n}\n\n.webui-popover-inverse .webui-popover-inner .close {\n color: #fff;\n opacity: 0.6;\n text-shadow: none;\n}\n.webui-popover-inverse .webui-popover-inner .close:hover {\n opacity: 0.8;\n}\n.webui-popover-inverse .webui-popover-content a {\n color: #fff;\n text-decoration: underline;\n}\n.webui-popover-inverse .webui-popover-content a:hover {\n text-decoration: none;\n}\n\n.single-llms_quiz .llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n.single-llms_quiz .llms-return {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-results:before, .single-llms_quiz .llms-quiz-results:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz .llms-quiz-results:after {\n clear: both;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing {\n color: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path {\n stroke: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending {\n color: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path {\n stroke: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing {\n color: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path {\n stroke: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n margin-bottom: 20px;\n}\n@media all and (min-width: 600px) {\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-aside {\n float: left;\n width: 220px;\n }\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n float: left;\n width: calc(100% - 300px);\n }\n}\n.single-llms_quiz ul.llms-quiz-meta-info,\n.single-llms_quiz ul.llms-quiz-meta-info li {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz ul.llms-quiz-meta-info {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-buttons {\n margin-top: 10px;\n text-align: left;\n}\n.single-llms_quiz .llms-quiz-buttons form {\n display: inline-block;\n}\n\n.llms-quiz-question-wrapper {\n min-height: 140px;\n position: relative;\n}\n.llms-quiz-question-wrapper .llms-quiz-loading {\n bottom: 20px;\n left: 0;\n position: absolute;\n right: 0;\n text-align: center;\n z-index: 1;\n}\n\n.llms-quiz-ui {\n background: #fcfcfc;\n padding: 20px;\n position: relative;\n}\n.llms-quiz-ui .llms-quiz-header {\n align-items: center;\n display: flex;\n margin: 0 0 30px;\n}\n.llms-quiz-ui .llms-progress {\n background-color: #f1f2f1;\n flex-direction: row;\n height: 8px;\n margin: 0;\n overflow: hidden;\n}\n.llms-quiz-ui .llms-progress .progress-bar-complete {\n transition: width 0.3s ease-in;\n width: 0;\n}\n.llms-quiz-ui .llms-error {\n background: #e5554e;\n border-radius: 4px;\n color: #fff;\n margin: 10px 0;\n padding: 10px;\n}\n.llms-quiz-ui .llms-error:before, .llms-quiz-ui .llms-error:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-ui .llms-error:after {\n clear: both;\n}\n.llms-quiz-ui .llms-error a {\n color: rgba(255, 255, 255, 0.6);\n float: right;\n font-size: 22px;\n line-height: 1;\n text-decoration: none;\n}\n.llms-quiz-ui .llms-quiz-counter {\n display: none;\n color: #6a6a6a;\n float: right;\n font-size: 18px;\n}\n.llms-quiz-ui .llms-quiz-counter .llms-sep {\n margin: 0 5px;\n}\n.llms-quiz-ui .llms-quiz-nav {\n margin-top: 20px;\n}\n.llms-quiz-ui .llms-quiz-nav button {\n margin: 0 10px 0 0;\n}\n\n.llms-question-wrapper .llms-question-text {\n font-size: 30px;\n font-weight: 400;\n margin-bottom: 15px;\n}\n.llms-question-wrapper ol.llms-question-choices {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice {\n border-bottom: 1px solid #e8e8e8;\n margin: 0;\n padding: 0;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label {\n display: inline-block;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker {\n bottom: 10px;\n margin: 0;\n position: absolute;\n right: 10px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image {\n margin: 2px;\n padding: 20px;\n transition: background 0.4s ease;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img {\n display: block;\n width: 100%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked ~ .llms-choice-image {\n background: #efefef;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input {\n display: none;\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n visibility: hidden;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label {\n display: block;\n margin: 0;\n padding: 10px 20px;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker {\n background: #f0f0f0;\n display: inline-block;\n font-size: 20px;\n height: 40px;\n line-height: 40px;\n margin-right: 10px;\n text-align: center;\n transition: all 0.2s ease;\n vertical-align: middle;\n width: 40px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister, .llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox {\n border-radius: 4px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio {\n border-radius: 50%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker {\n background: #ef476f;\n color: #fff;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text {\n display: inline-block;\n font-size: 18px;\n font-weight: 400;\n line-height: 1.6;\n margin-bottom: 0;\n vertical-align: middle;\n width: calc(100% - 60px);\n}\n\n.llms-quiz-timer {\n background: #fff;\n border: 1px solid #83c373;\n border-radius: 4px;\n color: #83c373;\n float: right;\n font-size: 18px;\n line-height: 1;\n margin-left: 20px;\n padding: 8px 12px;\n position: relative;\n white-space: nowrap;\n z-index: 1;\n}\n.llms-quiz-timer.color-half {\n border-color: #ff922b;\n color: #ff922b;\n}\n.llms-quiz-timer.color-empty {\n border-color: #e5554e;\n color: #e5554e;\n}\n.llms-quiz-timer .llms-tiles {\n display: inline-block;\n margin-left: 5px;\n}\n\n.voucher-expand {\n display: none;\n}\n\n@media all and (min-width: 600px) {\n .llms-access-plans.cols-1 .llms-access-plan {\n width: 100%;\n }\n .llms-access-plans.cols-2 .llms-access-plan {\n width: 50%;\n }\n .llms-access-plans.cols-3 .llms-access-plan {\n width: 33.3333333333%;\n }\n .llms-access-plans.cols-4 .llms-access-plan {\n width: 25%;\n }\n .llms-access-plans.cols-5 .llms-access-plan {\n width: 20%;\n }\n}\n\n.llms-free-enroll-form {\n margin-bottom: 0;\n}\n\n.llms-access-plan {\n box-sizing: border-box;\n float: left;\n text-align: center;\n width: 100%;\n}\n.llms-access-plan .llms-access-plan-footer,\n.llms-access-plan .llms-access-plan-content {\n background: #f1f1f1;\n}\n.llms-access-plan.featured .llms-access-plan-featured {\n background: #4ba9ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer,\n.llms-access-plan.featured .llms-access-plan-content {\n border-left: 3px solid #2295ff;\n border-right: 3px solid #2295ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer {\n border-bottom-color: #2295ff;\n}\n.llms-access-plan.on-sale .price-regular {\n text-decoration: line-through;\n}\n.llms-access-plan .stamp {\n background: #2295ff;\n color: #fff;\n font-size: 11px;\n font-style: normal;\n font-weight: 300;\n padding: 2px 3px;\n vertical-align: top;\n}\n.llms-access-plan .llms-access-plan-restrictions ul {\n margin: 0;\n}\n\n.llms-access-plan-featured {\n color: #fff;\n font-size: 14px;\n font-weight: 400;\n margin: 0 2px 0 2px;\n}\n\n.llms-access-plan-content {\n margin: 0 2px 0;\n}\n.llms-access-plan-content .llms-access-plan-pricing {\n padding: 10px 0 0;\n}\n\n.llms-access-plan-title {\n background: #2295ff;\n color: #fff;\n margin-bottom: 0;\n padding: 10px;\n}\n\n.llms-access-plan-pricing .llms-price-currency-symbol {\n font-size: 14px;\n vertical-align: top;\n}\n\n.llms-access-plan-price {\n font-size: 18px;\n font-variant: small-caps;\n line-height: 20px;\n}\n.llms-access-plan-price .lifterlms-price {\n font-weight: 700;\n}\n.llms-access-plan-price.sale {\n padding: 5px 0;\n border-top: 1px solid #d0d0d0;\n border-bottom: 1px solid #d0d0d0;\n}\n\n.llms-access-plan-trial,\n.llms-access-plan-schedule,\n.llms-access-plan-sale-end,\n.llms-access-plan-expiration {\n font-size: 15px;\n font-variant: small-caps;\n line-height: 1.2;\n}\n\n.llms-access-plan-description {\n font-size: 16px;\n padding: 10px 10px 0;\n}\n.llms-access-plan-description ul {\n margin: 0;\n}\n.llms-access-plan-description ul li {\n border-bottom: 1px solid #d0d0d0;\n list-style-type: none;\n}\n.llms-access-plan-description ul li:last-child {\n border-bottom: none;\n}\n.llms-access-plan-description div:last-child, .llms-access-plan-description img:last-child, .llms-access-plan-description p:last-child, .llms-access-plan-description ul:last-child, .llms-access-plan-description li:last-child {\n margin-bottom: 0;\n}\n\n.llms-access-plan-restrictions .stamp {\n vertical-align: baseline;\n}\n.llms-access-plan-restrictions ul {\n margin: 0;\n}\n.llms-access-plan-restrictions ul li {\n font-size: 12px;\n line-height: 14px;\n list-style-type: none;\n}\n.llms-access-plan-restrictions a {\n color: #f8954f;\n}\n.llms-access-plan-restrictions a:hover {\n color: #f67d28;\n}\n\n.llms-access-plan-footer {\n border-bottom: 3px solid #f1f1f1;\n padding: 10px;\n margin: 0 2px 2px 2px;\n}\n.llms-access-plan-footer .llms-access-plan-pricing {\n padding: 0 0 10px;\n}\n\n.webui-popover-content .llms-members-only-restrictions {\n text-align: center;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li, .webui-popover-content .llms-members-only-restrictions p {\n margin: 0;\n padding: 0;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li {\n list-style-type: none;\n}\n.webui-popover-content .llms-members-only-restrictions li {\n padding: 8px 0;\n border-top: 1px solid #3b3b3b;\n}\n.webui-popover-content .llms-members-only-restrictions li:first-child {\n border-top: none;\n}\n.webui-popover-content .llms-members-only-restrictions li a {\n display: block;\n}\n\n.llms-checkout-wrapper form.llms-login {\n border: 3px solid #2295ff;\n display: none;\n margin-bottom: 10px;\n}\n.llms-checkout-wrapper .llms-form-heading {\n background: #2295ff;\n color: #fff;\n margin: 0 0 5px;\n padding: 10px;\n}\n\n.llms-checkout {\n background: #fff;\n position: relative;\n}\n\n@media all and (min-width: 800px) {\n .llms-checkout-cols-2 .llms-checkout-col {\n float: left;\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-1 {\n margin-right: 5px;\n width: calc(58% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 {\n margin-left: 5px;\n width: calc(42% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button {\n width: 100%;\n }\n}\n\n.llms-checkout-section {\n border: 3px solid #2295ff;\n margin-bottom: 10px;\n position: relative;\n}\n\n.llms-checkout-section-content {\n margin: 10px;\n}\n.llms-checkout-section-content.llms-form-fields {\n margin: 0px;\n}\n.llms-checkout-section-content .llms-label {\n font-weight: 400;\n font-variant: small-caps;\n text-transform: lowercase;\n}\n.llms-checkout-section-content .llms-order-summary {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-checkout-section-content .llms-order-summary li {\n list-style-type: none;\n}\n.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular, .llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular {\n text-decoration: line-through;\n}\n.llms-checkout-section-content .llms-coupon-wrapper {\n border-top: 1px solid #dadada;\n margin-top: 10px;\n padding-top: 10px;\n}\n.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry {\n display: none;\n margin-top: 10px;\n}\n\n.llms-form-field.llms-payment-gateway-option label + span.llms-description {\n display: inline-block;\n margin-left: 5px;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description a {\n border: none;\n box-shadow: none;\n text-decoration: none;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description img {\n display: inline;\n max-height: 22px;\n vertical-align: middle;\n}\n\n.llms-checkout-wrapper ul.llms-payment-gateways {\n margin: 5px 0 0;\n padding: 0;\n}\n\nul.llms-payment-gateways {\n list-style-type: none;\n}\nul.llms-payment-gateways li:last-child:after {\n border-bottom: 1px solid #dadada;\n content: \"\";\n display: block;\n margin: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway {\n margin-bottom: 5px;\n list-style-type: none;\n}\nul.llms-payment-gateways .llms-payment-gateway:last-child {\n margin-bottom: none;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label {\n font-weight: 700;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields {\n display: block;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway .llms-form-field {\n padding-bottom: 0;\n}\nul.llms-payment-gateways .llms-gateway-description {\n margin-left: 40px;\n}\nul.llms-payment-gateways .llms-gateway-fields {\n display: none;\n margin: 5px 0 20px;\n}\nul.llms-payment-gateways .llms-payment-gateway-error {\n padding: 0 10px;\n}\n\n.llms-checkout-confirm {\n margin: 0 10px;\n}\n\n.llms-payment-method {\n margin: 10px 10px 0;\n}\n\n.llms-gateway-description p {\n font-size: 85%;\n font-style: italic;\n margin-bottom: 0;\n}\n\n.llms-form-fields {\n box-sizing: border-box;\n}\n.llms-form-fields * {\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n.llms-widget-syllabus--collapsible .llms-section .section-header {\n cursor: pointer;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-syllabus-footer {\n text-align: left;\n}\n\n.llms-student-dashboard {\n /**\n * Dashboard Home\n */\n}\n.llms-student-dashboard .llms-sd-title {\n margin: 25px 0;\n}\n.llms-student-dashboard .llms-sd-items {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item {\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item:last-child .llms-sep {\n display: none;\n}\n.llms-student-dashboard .llms-sd-item .llms-sep {\n color: #333;\n margin: 0 5px;\n}\n.llms-student-dashboard .llms-sd-section {\n margin-bottom: 25px;\n}\n.llms-student-dashboard .llms-sd-section .llms-sd-section-footer {\n margin-top: 10px;\n}\n.llms-student-dashboard .orders-table {\n border: 1px solid #f5f5f5;\n width: 100%;\n}\n.llms-student-dashboard .orders-table thead {\n display: none;\n}\n.llms-student-dashboard .orders-table thead th, .llms-student-dashboard .orders-table thead td {\n font-weight: 700;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table thead {\n display: table-header-group;\n }\n}\n.llms-student-dashboard .orders-table tbody tr:nth-child(even) td, .llms-student-dashboard .orders-table tbody tr:nth-child(even) th {\n background: #f9f9f9;\n}\n.llms-student-dashboard .orders-table tfoot th, .llms-student-dashboard .orders-table tfoot td {\n padding: 10px;\n text-align: right;\n}\n.llms-student-dashboard .orders-table tfoot th:last-child, .llms-student-dashboard .orders-table tfoot td:last-child {\n border-bottom-width: 0;\n}\n.llms-student-dashboard .orders-table th {\n font-weight: 700;\n}\n.llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-color: #efefef;\n border-style: solid;\n border-width: 0;\n display: block;\n padding: 8px 12px;\n text-align: center;\n}\n.llms-student-dashboard .orders-table th .llms-button-primary, .llms-student-dashboard .orders-table td .llms-button-primary {\n display: inline-block;\n}\n.llms-student-dashboard .orders-table th:last-child, .llms-student-dashboard .orders-table td:last-child {\n border-bottom-width: 1px;\n}\n.llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n content: attr(data-label);\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-bottom-width: 1px;\n display: table-cell;\n text-align: left;\n }\n .llms-student-dashboard .orders-table th:first-child, .llms-student-dashboard .orders-table td:first-child {\n width: 220px;\n }\n .llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n display: none;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table.transactions th:first-child {\n width: auto;\n }\n}\n.llms-student-dashboard .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.llms-student-dashboard .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.llms-student-dashboard .llms-status.llms-active, .llms-student-dashboard .llms-status.llms-completed, .llms-student-dashboard .llms-status.llms-pass, .llms-student-dashboard .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.llms-student-dashboard .llms-status.llms-fail, .llms-student-dashboard .llms-status.llms-failed, .llms-student-dashboard .llms-status.llms-expired, .llms-student-dashboard .llms-status.llms-cancelled, .llms-student-dashboard .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.llms-student-dashboard .llms-status.llms-incomplete, .llms-student-dashboard .llms-status.llms-on-hold, .llms-student-dashboard .llms-status.llms-pending, .llms-student-dashboard .llms-status.llms-pending-cancel, .llms-student-dashboard .llms-status.llms-refunded, .llms-student-dashboard .llms-status.llms-txn-pending, .llms-student-dashboard .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n.llms-student-dashboard .llms-person-form-wrapper .llms-change-password {\n display: none;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-primary {\n float: left;\n width: 68%;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-secondary {\n float: left;\n width: 32%;\n }\n}\n.llms-student-dashboard .order-secondary form {\n margin-bottom: 0;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,\n.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary {\n float: none;\n width: 100%;\n }\n}\n.llms-student-dashboard .llms-switch-payment-source .llms-notice,\n.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\n.llms-student-dashboard .llms-switch-payment-source-main {\n border: none;\n display: none;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways {\n padding: 10px 15px 0;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary {\n padding: 0 25px 10px;\n margin: 0;\n list-style-type: none;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li {\n list-style-type: none;\n}\n.llms-student-dashboard .llms-loop-list {\n margin: 0 -10px;\n}\n\n.llms-sd-grades .llms-table .llms-progress {\n display: block;\n margin: 0;\n}\n.llms-sd-grades .llms-table .llms-progress .llms-progress-bar {\n top: 0;\n height: 1.4em;\n}\n.llms-sd-grades .llms-table .llms-progress .progress__indicator {\n font-size: 1em;\n position: relative;\n right: 0.4em;\n top: 0.2em;\n z-index: 1;\n}\n\n.llms-table.llms-single-course-grades tbody tr:first-child td, .llms-table.llms-single-course-grades tbody tr:first-child th {\n background-color: #eaeaea;\n}\n.llms-table.llms-single-course-grades th {\n font-weight: 400;\n}\n.llms-table.llms-single-course-grades td .llms-donut {\n display: inline-block;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td .llms-status {\n margin-right: 4px;\n}\n.llms-table.llms-single-course-grades td .llms-donut + .llms-status {\n margin-left: 4px;\n}\n.llms-table.llms-single-course-grades th.llms-section_title {\n font-size: 110%;\n font-weight: 700;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title {\n padding-left: 36px;\n max-width: 40%;\n}\n.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut {\n display: inline-block;\n margin-right: 5px;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href=\"#\"] {\n pointer-events: none;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] {\n color: inherit;\n position: relative;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip {\n max-width: 380px;\n width: 380px;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip.show {\n top: -54px;\n}\n\n.llms-sd-widgets {\n display: flex;\n}\n.llms-sd-widgets .llms-sd-widget {\n background: #f9f9f9;\n flex: 1;\n margin: 10px 10px 20px;\n padding: 0 0 20px;\n}\n.llms-sd-widgets .llms-sd-widget:first-child {\n margin-left: 0;\n}\n.llms-sd-widgets .llms-sd-widget:last-child {\n margin-right: 0;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title {\n background: #2295ff;\n color: #fff;\n font-size: 18px;\n line-height: 1;\n margin: 0 0 20px;\n padding: 10px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty {\n font-size: 14px;\n font-style: italic;\n opacity: 0.5;\n text-align: center;\n}\n.llms-sd-widgets .llms-sd-widget .llms-donut {\n margin: 0 auto;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date {\n opacity: 0.8;\n text-align: center;\n font-size: 22px;\n line-height: 1.1;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span {\n display: block;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day {\n font-size: 52px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff {\n font-size: 12px;\n font-style: italic;\n margin-top: 8px;\n opacity: 0.75;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement {\n background: transparent;\n margin: 0 auto;\n max-width: 120px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title {\n display: none;\n}\n\n.llms-sd-pagination {\n margin-top: 24px;\n}\n.llms-sd-pagination:before, .llms-sd-pagination:after {\n content: \" \";\n display: table;\n}\n.llms-sd-pagination:after {\n clear: both;\n}\n.llms-sd-pagination .llms-button-secondary {\n display: inline-block;\n}\n.llms-sd-pagination .llms-button-secondary.prev {\n float: left;\n}\n.llms-sd-pagination .llms-button-secondary.next {\n float: right;\n}\n\n.llms-sd-notification-center .llms-notification {\n z-index: 1;\n}\n\n.llms-table {\n border: 1px solid #efefef;\n width: 100%;\n}\n.llms-table thead th, .llms-table thead td {\n font-weight: 700;\n}\n.llms-table tbody tr:nth-child(odd) td, .llms-table tbody tr:nth-child(odd) th {\n background: #f9f9f9;\n}\n.llms-table tbody tr:last-child {\n border-bottom-width: 0;\n}\n.llms-table tfoot tr {\n background: #f9f9f9;\n}\n.llms-table tfoot tr .llms-pagination .page-numbers {\n margin: 0;\n}\n.llms-table tfoot tr .llms-table-sort {\n text-align: right;\n}\n.llms-table tfoot tr .llms-table-sort form, .llms-table tfoot tr .llms-table-sort select, .llms-table tfoot tr .llms-table-sort input, .llms-table tfoot tr .llms-table-sort button {\n margin: 0;\n}\n.llms-table th {\n font-weight: 700;\n}\n.llms-table th, .llms-table td {\n border-bottom: 1px solid #efefef;\n padding: 8px 12px;\n}\n.llms-table th:first-child, .llms-table td:first-child {\n padding-left: 12px;\n}\n.llms-table th:last-child, .llms-table td:last-child {\n padding-right: 12px;\n}\n\n#page .llms-table tfoot label {\n display: inline;\n}\n\n#page .llms-table tfoot select {\n height: auto;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}","%cf,\n%clearfix {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\n\t&:after {\n \tclear: both;\n\t}\n}\n\n\n\n%llms-element {\n\tbackground: $el-background;\n\tbox-shadow: $el-box-shadow;\n\tdisplay: block;\n\tcolor: #212121;\n\tmin-height: 85px;\n\tpadding: 15px;\n\ttext-decoration: none;\n\tposition: relative;\n\ttransition: background .4s ease;\n\n\t&:hover {\n\t\tbackground: $el-background-hover;\n\t}\n}\n","//\n// Floated columns.\n//\n// Utilized prior to the introduction of `.llms-flex-cols`. Prefer\n// usage of flex cols for new code where possible.\n//\n.llms-cols {\n\t@extend %clearfix;\n\n\t.llms-col { width: 100%; }\n\n\t@media all and (min-width: 600px) {\n\t\t[class*=\"llms-col-\"] {\n\t\t\tfloat: left;\n\t\t}\n\t}\n\n}\n\n//\n// Flex-box columns.\n//\n// Preferred over floated `.llms-cols` wherever possible.\n//\n.llms-flex-cols {\n\tdisplay: flex;\n\tflex-flow: row wrap;\n\n\t[class*=\"llms-col\"] {\n\t\tflex: 0 1 auto;\n\t\twidth: 100%;\n\t}\n}\n\n@media all and (min-width: 600px) {\n\t.llms-cols, .llms-flex-cols {\n\t\t$cols: 1;\n\t\t@while $cols <= 12 {\n\t\t\t.llms-col-#{$cols} {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n}\n\n",".llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n\tborder:none;\n\tborder-radius: 8px;\n\tcolor: $color-white;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: $color-white;\n\t}\n\t&:focus {\n\t\tcolor: $color-white;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n\t&.small {\n\t\tfont-size: 13px;\n\t\tpadding: 8px 14px;\n\t\t&.square { padding: 8px; }\n\t}\n\n\t&.large {\n\t\tfont-size: 18px;\n\t\tline-height: 1.2;\n\t\tpadding: 16px 32px;\n\t\t&.square { padding: 16px; }\n\t\t.fa {\n\t\t\tleft: -7px;\n\t\t\tposition: relative;\n\t\t}\n\t}\n\n}\n\n.llms-button-primary {\n\tbackground: $color-brand-blue;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-blue-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-blue-light;\n\t}\n}\n\n.llms-button-secondary {\n\tbackground: #e1e1e1;\n\tcolor: #414141;\n\t&:hover {\n\t\tcolor: #414141;\n\t\tbackground: darken( #e1e1e1, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tcolor: #414141;\n\t\tbackground: lighten( #e1e1e1, 4 );\n\t}\n}\n\n.llms-button-action {\n\tbackground: $color-brand-orange;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-orange-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-orange-light;\n\t}\n}\n\n.llms-button-danger {\n\tbackground: $color-danger;\n\t&:hover {\n\t\tbackground: darken( $color-danger, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: lighten( $color-danger, 4 );\n\t}\n}\n\n.llms-button-outline {\n\tbackground: transparent;\n\tborder: 3px solid #1D2327;\n\tborder-radius: 8px;\n\tcolor: #1D2327;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: #1D2327;\n\t}\n\t&:focus {\n\t\tcolor: #1D2327;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n}","// ----- LifterLMS Brand Colors ----- \\\\\n$color-brand-dark-blue: #243c56;\n\n$color-brand-blue: #2295ff;\n$color-brand-blue-dark: darken( $color-brand-blue, 12 ); // #0077e4\n$color-brand-blue-light: lighten( $color-brand-blue, 8 );\n\n$color-brand-orange: #f8954f;\n$color-brand-orange-dark: #f67d28;\n$color-brand-orange-light: lighten( $color-brand-orange, 8 );\n\n$color-brand-aqua: #17bebb;\n\n$color-brand-pink: #ef476f;\n\n\n\n// ----- name our versions of common colors ----- \\\\\n$color-black: #010101;\n$color-green: #83c373;\n$color-blue: $color-brand-blue;\n$color-red: #e5554e;\n$color-white: #fefefe;\n$color-aqua: #35bbaa;\n$color-purple: #845ef7;\n$color-orange: #ff922b;\n\n$color-red-hover: darken($color-red,5);\n\n\n// ----- state / action names ----- \\\\\n$color-success: $color-green;\n$color-danger: $color-red;\n\n\n\n\n\n\n\n\n$color-lightgrey:\t\t#ccc;\n$color-grey: \t\t\t#999;\n$color-darkgrey:\t\t#666;\n$color-cinder:\t\t\t#444;\n$color-lightblue:\t\t#33b1cb;\n$color-darkblue:\t\t#0185a3;\n\n\n\n\n\n\n\n\n\n\n\n\n$color-border: #efefef;\n\n$el-box-shadow: 0 1px 2px 0 rgba($color-black,0.4);\n$el-background: #f1f1f1;\n$el-background-hover: #eaeaea;\n\n$break-xsmall: 320px;\n$break-small: 641px;\n$break-medium: 768px;\n$break-large: 1024px;\n",".llms-donut {\n\n\t@include clearfix;\n\n\tbackground-color: #f1f1f1;\n\tbackground-image: none;\n\tborder-radius: 50%;\n\tcolor: $color-brand-pink;\n\theight: 200px;\n\toverflow: hidden;\n\tposition: relative;\n\twidth: 200px;\n\n\tsvg {\n\t\toverflow: visible !important;\n\t\tpointer-events: none;\n\t\twidth: 100%;\n\t}\n\n\tsvg path {\n\t\tfill: none;\n\t\tstroke-width: 35px;\n\t\tstroke: $color-brand-pink;\n\t}\n\n\t&.mini {\n\t\theight: 36px;\n\t\twidth: 36px;\n\t\t.percentage {\n\t\t\tfont-size: 10px;\n\t\t}\n\t}\n\t&.small {\n\t\theight: 100px;\n\t\twidth: 100px;\n\t\t.percentage {\n\t\t\tfont-size: 18px;\n\t\t}\n\t}\n\t&.medium {\n\t\theight: 130px;\n\t\twidth: 130px;\n\t\t.percentage {\n\t\t\tfont-size: 26px;\n\t\t}\n\t}\n\t&.large {\n\t\theight: 260px;\n\t\twidth: 260px;\n\t\t.percentage {\n\t\t\tfont-size: 48px;\n\t\t}\n\t}\n\n\t.inside {\n\t\talign-items: center;\n\t\tbackground: #fff;\n\t\tborder-radius: 50%;\n\t\tbox-sizing: border-box;\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\theight: 80%;\n\t\tjustify-content: center;\n\t\tleft: 50%;\n\t\tposition: absolute;\n\t\ttext-align: center;\n\t\ttransform: translate(-50%, -50%);\n\t\twidth: 80%;\n\t\ttop: 50%;\n\t\tz-index: 3;\n\t}\n\n\t.percentage {\n\t\tline-height: 1.2;\n\t\tfont-size: 34px;\n\t}\n\n\t.caption {\n\t\tfont-size: 50%;\n\t}\n\n}\n","\n@mixin clearfix() {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\t&:after {\n\t clear: both;\n\t}\n}\n\n//\n// Positioning mixin\n//\n// @param [string] $position: position\n// @param [list] $args (()): offsets list\n//\n// @source http://hugogiraudel.com/2013/08/05/offsets-sass-mixin/\n//\n@mixin position($position, $args: ()) {\n\t$offsets: top right bottom left;\n\tposition: $position;\n\n\t@each $offset in $offsets {\n\t\t$index: index($args, $offset);\n\n\t\t@if $index {\n\t\t\t@if $index == length($args) {\n\t\t\t\t#{$offset}: 0;\n\t\t\t}\n\t\t\t@else {\n\t\t\t\t$next: nth($args, $index + 1);\n\t\t\t\t@if is-valid-length($next) {\n\t\t\t\t\t#{$offset}: $next;\n\t\t\t\t}\n\t\t\t\t@else if index($offsets, $next) {\n\t\t\t\t\t#{$offset}: 0;\n\t\t\t\t}\n\t\t\t\t@else {\n\t\t\t\t\t@warn \"Invalid value `#{$next}` for offset `#{$offset}`.\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n//\n// Function checking if $value is a valid length\n// @param [literal] $value: value to test\n// @return [bool]\n//\n@function is-valid-length($value) {\n\t$r: (type-of($value) == \"number\" and not unitless($value)) or (index(auto initial inherit 0, $value) != null);\n\t@return $r;\n}\n\n//\n// Shorthands\n//\n@mixin absolute($args: ()) {\n\t@include position(absolute, $args);\n}\n\n@mixin fixed($args: ()) {\n\t@include position(fixed, $args);\n}\n\n@mixin relative($args: ()) {\n\t@include position(relative, $args);\n}\n\n\n\n@mixin order_status_badges() {\n\n\t.llms-status {\n\t\tborder-radius: 3px;\n\t\tborder-bottom: 1px solid #fff;\n\t\tdisplay: inline-block;\n\t\tfont-size: 80%;\n\t\tpadding: 3px 6px;\n\t\tvertical-align: middle;\n\n\t\t&.llms-size--large {\n\t\t\tfont-size: 105%;\n\t\t\tpadding: 6px 12px;\n\t\t}\n\n\t\t&.llms-active,\n\t\t&.llms-completed,\n\t\t&.llms-pass, // quiz\n\t\t&.llms-txn-succeeded {\n\t\t\tcolor: darken( $color-green, 45 );\n\t\t\tbackground-color: $color-green;\n\t\t}\n\n\t\t&.llms-fail, // quiz\n\t\t&.llms-failed,\n\t\t&.llms-expired,\n\t\t&.llms-cancelled,\n\t\t&.llms-txn-failed {\n\t\t\tcolor: darken( $color-red, 40 );\n\t\t\tbackground-color: $color-red;\n\t\t}\n\n\t\t&.llms-incomplete, // assignment\n\t\t&.llms-on-hold,\n\t\t&.llms-pending,\n\t\t&.llms-pending-cancel,\n\t\t&.llms-refunded,\n\t\t&.llms-txn-pending,\n\t\t&.llms-txn-refunded {\n\t\t\tcolor: darken( orange, 30 );\n\t\t\tbackground-color: orange;\n\t\t}\n\n\t}\n\n}\n",".lifterlms, // Settings & Course Builder.\n.llms-metabox, // Some Metaboxes.\n.llms-mb-container, // Other Metaboxes.\n.llms-quiz-wrapper { // Quiz results.\n\n\t[data-tip],\n\t[data-title-default],\n\t[data-title-active] {\n\n\t\t$bgcolor: #444;\n\n\t\tposition: relative;\n\n\t\t&.tip--top-right {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\t\t&.tip--top-left {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\n\t\t&.tip--bottom-left {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&.tip--bottom-right {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&:before {\n\t\t\tbackground: $bgcolor;\n\t\t\tborder-radius: 4px;\n\t\t\tcolor: #fff;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.2;\n\t\t\tpadding: 8px;\n\t\t\tmax-width: 300px;\n\t\t\twidth: max-content;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tborder: 6px solid transparent;\n\t\t\theight: 0;\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&:before,\n\t\t&:after {\n\t\t\topacity: 0;\n\t\t\ttransition: all 0.2s 0.1s ease;\n\t\t\tposition: absolute;\n\t\t\tpointer-events: none;\n\t\t\tvisibility: hidden;\n\t\t}\n\t\t&:hover:before,\n\t\t&:hover:after {\n\t\t\topacity: 1;\n\t\t\ttransition: all 0.2s 0.6s ease;\n\t\t\tvisibility: visible;\n\t\t\tz-index: 99999999;\n\t\t}\n\n\t}\n\n\t[data-tip] {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip);\n\t\t}\n\t}\n\t[data-tip].active {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip-active);\n\t\t}\n\t}\n\n}\n","\n\n\n\n.llms-membership-image {\n display: block;\n margin: 0 auto;\n}\n\n\n\n.llms-course-image {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n}\n.llms-featured-image {\n display: block;\n margin: 0 auto;\n}\n.llms-image-thumb {\n width: 150px;\n}\n\n// Responsive Videos.\n.llms-video-wrapper {\n\n\t.center-video {\n\t\theight: auto;\n\t\tmax-width: 100%;\n\t\toverflow: hidden;\n\t\tposition: relative;\n\t\tpadding-top: 56.25%;\n\t\ttext-align: center;\n\n\t\t& > .wp-video,\n\t\t.fluid-width-video-wrapper,\n\t\tiframe, object, embed {\n\t\t\theight: 100%;\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t& > .wp-video {\n\t\t\twidth: 100% !important;\n\t\t}\n\t\t.fluid-width-video-wrapper {\n\t\t\tpadding-top: 0 !important;\n\t\t}\n\t}\n\n}\n\n\n\n\n\n\n\n\n\n\n\n.clear {\n clear: both;\n width: 100%;\n}\n.llms-featured-image {\n text-align: center;\n}\n\n#main-content .llms-payment-options p {\n margin: 0;\n font-size: 16px;\n}\n\n.llms-option {\n display: block;\n position: relative;\n margin: 20px 0;\n padding-left:40px;\n font-size: 16px;\n\n label {\n cursor: pointer;\n position: static;\n }\n}\n.llms-option:first-child {\n margin-top:0;\n}\n.llms-option:last-child {\n margin-bottom:0;\n}\n#main-content .llms-option:last-child {\n margin-bottom:0;\n}\n\n.llms-option input[type=\"radio\"] {\n display: block;\n position: absolute;\n top:3px;\n left:0;\n z-index: 0;\n}\n\n.llms-option input[type=\"radio\"] {\n display: inline-block;\n}\n.llms-option input[type=\"radio\"] + label span.llms-radio {\n display: none;\n}\n\n.llms-option input[type=\"radio\"] + label span.llms-radio {\n appearance: none;\n\n z-index: 20;\n position: absolute;\n top: 0;\n left: -2px;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n vertical-align: middle;\n box-shadow: hsla(0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.5) 0 0 0 1px;\n\n background: #efefef;\n background-image: radial-gradient(ellipse at center, $color-red 0%,$color-red 40%,#efefef 45%);\n background-repeat: no-repeat;\n\n transition: background-position .15s cubic-bezier(.8, 0, 1, 1);\n}\n.llms-option input[type=\"radio\"]:checked + label span.llms-radio {\n transition: background-position .2s .15s cubic-bezier(0, 0, .2, 1);\n}\n\n.llms-option input[type=\"radio\"] + label span.llms-radio {\n background-position: -24px 0;\n}\n.llms-option input[type=\"radio\"]:checked + label span.llms-radio {\n background-position: 0 0;\n}\n\n.llms-option input[type=\"submit\"] {\n border:none;\n background:$color-red;\n color:#fff;\n font-size:20px;\n padding:10px 0;\n border-radius:3px;\n cursor:pointer;\n width:100%;\n}\n.llms-styled-text {\n padding: 14px 0;\n}\n.llms-notice-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n //background: #fffef4;\n border: 1px solid #ccc;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n input[type=\"text\"] {\n height: auto;\n }\n .col-1-1 {\n width: 100%;\n input[type=text] {\n width: 100%;\n }\n }\n .col-1-2 {\n width: 50%;\n float: left;\n @media screen and (max-width: $break-medium) {\n width: 100%;\n }\n }\n .col-1-3 {\n width: 33%;\n float: left;\n margin-right: 10px;\n }\n .col-1-4 {\n width: 25%;\n float: left;\n margin-right: 10px;\n @media screen and (max-width: $break-medium) {\n width: 100%;\n }\n }\n .col-1-6 {\n width: 16.6%;\n float: left;\n margin-right: 10px;\n }\n .col-1-8 {\n width: 11%;\n float: right;\n }\n .llms-pad-right {\n padding-right: 10px;\n @media screen and (max-width: $break-medium) {\n padding-right: 0;\n }\n }\n}\ninput[type=\"text\"].cc_cvv,\n#cc_cvv {\n margin-right: 0;\n width: 23%;\n float: right;\n}\n.llms-clear-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n.llms-price-label {\n font-weight: normal;\n}\n.llms-final-price {\n font-weight: bold;\n float: right;\n}\n.llms-center-content {\n text-align: center;\n}\n.llms-input-text {\n background-color: #fff;\n border: 1px solid #ddd;\n color: #333;\n font-size: 18px;\n font-weight: 300;\n padding: 16px;\n width: 100%;\n}\n.llms-price {\n margin-bottom: 0;\n font-weight: bold;\n}\n.llms-price-loop {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n// hentry overrides\n.courses .entry {\n padding: 0\n}\n.list-view .site-content .llms-course-list .hentry, .list-view .site-content .llms-membership-list .hentry {\n border-top: 0;\n padding-top: 0;\n}\n.llms-content {\n width: 100%;\n}\n\n.llms-lesson-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n.llms-template-wrapper {\n width: 100%;\n display: block;\n clear: both;\n}\n.llms-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n\n//custom select box\n.llms-styled-select {\n border: 1px solid #ccc;\n box-sizing: border-box;\n border-radius: 3px;\n overflow: hidden;\n position: relative;\n}\n.llms-styled-select, .llms-styled-select select {\n width: 100%;\n}\nselect:focus { outline: none; }\n.llms-styled-select select {\n height: 34px;\n padding: 5px 0 5px 5px;\n background: transparent;\n border: none;\n -webkit-appearance: none;\n font-size: 16px;\n color: #444444;\n}\n\n@-moz-document url-prefix(){\n .--ms-styled-select select { width: 110%; }\n}\n\n.llms-styled-select .fa-sort-desc {\n position: absolute;\n top: 0;\n right: 12px;\n font-size: 24px;\n color: #ccc;\n}\n\nselect::-ms-expand { display: none; }\n\n_:-o-prefocus, .selector {\n .llms-styled-select { background: none; }\n}\n\n.llms-form-item-wrapper {\n margin-bottom: 1em;\n}\n\n/* Circle Graph */\n.llms-progress-circle {\n position: relative;\n width: 200px;\n height: 200px;\n float: left;\n}\n\n.llms-progress-circle-count {\n top: 27%;\n position: absolute;\n width: 94%;\n text-align: center;\n color: #666;\n font-size:44px;\n}\n.llms-progress-circle svg {\n position: absolute;\n width: 200px;\n height: 200px;\n}\n.llms-progress-circle circle {\n fill: transparent;\n}\nsvg .llms-background-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #f1f2f1;\n stroke-dasharray: 430;\n}\n\nsvg .llms-animated-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #e5554e;\n stroke-dasharray: 430;\n stroke-dashoffset: 430 - 20\n}\n\n\n\n\n\n\n\n.llms-widget-syllabus {\n\n .llms-lesson.current-lesson .lesson-title {\n \tfont-weight: 700;\n }\n\n .llms-lesson-complete, .lesson-complete-placeholder {\n font-size: 1.2em;\n margin-right: 6px;\n color: #ccc;\n &.done {\n color: #e5554e;\n }\n }.section-title {\n font-weight: bold;\n }.lesson-title {\n a {\n text-decoration: none;\n &:hover {\n text-decoration: none !important;\n }\n }\n &.done {\n a {\n color: #999;\n text-decoration: line-through;\n }\n }\n }\n ul {\n list-style-type: none;\n li {\n list-style-type: none;\n ul li {\n margin: 0 0 2px 0;\n padding: 0;\n }\n }\n }\n}\n\n\n\n.llms-remove-coupon {\n float: right;\n}\n\n\n\n\n\n.llms-lesson-link-locked, .llms-lesson-link-locked:hover {\n background: #f1f1f1;\n box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n display: block;\n color: #a6a6a6;\n min-height: 85px;\n padding: 15px;\n text-decoration: none;\n position: relative;\n}\n\n.llms-lesson-preview.is-complete .llms-lesson-link-locked {\n padding-left: 75px;\n}\n\n.llms-lesson-tooltip { \tdisplay: none;\n\t\t\t\tposition:absolute;\n\t\t\t\tcolor: #000000;\n\t\t\t\tbackground-color: #c0c0c0;\n\t\t\t\tpadding:.25em;\n\t\t\t\tborder-radius: 2px;\n\t\t\t\tz-index: 100;\n \t\t\t\ttop:0;\n \t\t\tleft:50%;\n \t\t\ttext-align: center;\n \t\t\t-webkit-transform: translateX(-50%) translateY(-100%);\n \t\t\t transform: translateX(-50%) translateY(-100%);\n\t\t\t}\n\n/* arrows - :after */\n.llms-lesson-tooltip:after {\n content: \"\";\n width: 0;\n height: 0;\n border-top: 8px solid #c0c0c0;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n position:absolute;\n bottom:-8px;\n left:50%;\n transform: translateX(-50%);\n}\n\n.llms-lesson-tooltip.active {\n display: inline-block;\n}\n",".llms-loop-list {\n\t@extend %clearfix;\n\n\tlist-style: none;\n\tmargin: 0 -10px;\n\tpadding: 0;\n\n\t@media all and (min-width: 600px) {\n\t\t$cols: 1;\n\t\t@while $cols <= 6 {\n\t\t\t&.cols-#{$cols} .llms-loop-item {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n\n\n}\n\n.llms-loop-item {\n\tfloat: left;\n\tlist-style: none;\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100%;\n}\n\n\n\t.llms-loop-item-content {\n\t\tbackground: #f1f1f1;\n\t\tpadding-bottom: 10px;\n\t\tmargin: 10px;\n\n\t\t&:hover {\n\t\t\tbackground: #eaeaea;\n\t\t}\n\n\t\t.llms-loop-link {\n\t\t\tcolor: #212121;\n\t\t\tdisplay: block;\n\t\t\t&:visited {\n\t\t\t\tcolor: #212121;\n\t\t\t}\n\t\t}\n\n\t\t.llms-featured-image {\n\t\t\tdisplay: block;\n\t\t\tmax-width: 100%;\n\t\t}\n\n\t\t.llms-loop-title {\n\t\t\tmargin-top: 5px;\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t}\n\t\t}\n\n\t\t.llms-meta,\n\t\t.llms-author,\n\t\t.llms-loop-title {\n\t\t\tpadding: 0 10px;\n\t\t}\n\n\t\t.llms-meta,\n\t\t.llms-author {\n\t\t\tcolor: #444;\n\t\t\tdisplay: block;\n\t\t\tfont-size: 13px;\n\t\t\tmargin-bottom: 3px;\n\t\t\t&:last-child {\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t}\n\n\t\t.llms-featured-img-wrap {\n\t\t\toverflow: hidden;\n\t\t}\n\n\t\tp {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t.llms-progress {\n\t\t\tmargin: 0;\n\t\t\theight: .4em;\n\n\t\t\t.progress__indicator {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.llms-progress-bar {\n\t\t\t\tbackground-color: #f6f6f6;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t}\n\n\t}\n\n\n\n// .llms-membership-list .memberships {\n// border-top: 1px solid #f6f6f6;\n// width: 100%;\n// display: inline-block;\n// text-align: center;\n// list-style: none;\n// clear: both;\n// margin: 0;\n// padding: 0;\n// }\n\n\n\n// .llms-course-list {\n\n// .llms-membership-link {\n// @extend %llms-element;\n\n// display: block\n// }\n\n// .llms-membership-footer {\n// border-top: 3px solid $color-white;\n// margin: 15px -15px 0;\n// padding: 15px 15px 0;\n// text-align: center;\n// }\n\n// }\n\n\n\n\n// .llms-membership-list .memberships li {\n// width: 300px;\n// margin: 15px;\n// list-style: none;\n// vertical-align: top;\n// display: inline-block;\n// text-align: left;\n// }\n\n// .llms-membership-list .memberships li.first {\n// margin-left: 0;\n// }\n\n// .llms-membership-list .memberships li.last {\n// margin-right: 15px;\n// }\n\n// .llms-membership-list .memberships li .llms-title {\n// display: block;\n// font-weight: 700;\n// margin-bottom: .5em;\n// font-size: 18px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n// .llms-membership-list .memberships li .llms-price {\n// display: block;\n// font-weight: 700;\n// // margin-bottom: .5em;\n// // font-size: 24px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n// .llms-course-list {\n// //margin: 30px 0;\n// padding: 30px;\n// //background: #FFF;\n// // border-radius: 2px;\n// display: inline-block;\n// width: 100%;\n// box-sizing: border-box;\n\n// .llms-course-link {\n// @extend %llms-element;\n\n// display: block\n// }\n\n// .llms-course-footer {\n// border-top: 3px solid $color-white;\n// margin: 15px -15px 0;\n// padding: 15px 15px 0;\n// text-align: center;\n// }\n\n// .llms-progress {\n// margin-top: 0;\n// // .progress-bar {\n// // background-color: $color-white;\n// // }\n// }\n\n// }\n\n// .llms-course-list .courses {\n// //border-top: 1px solid #f6f6f6;\n// width: 100%;\n// display: inline-block;\n// text-align: center;\n// list-style: none;\n// clear: both;\n// margin: 0;\n// padding: 0;\n// }\n\n// .llms-course-list .courses li {\n// width: 300px;\n// padding-top: 0; // twentyfifteen compat\n// margin: 15px;\n// list-style: none;\n// vertical-align: top;\n// display: inline-block;\n// text-align: left;\n// }\n// @media screen and (max-width: $break-small) {\n// .llms-course-list {\n// padding: 30px 10px;\n\n// .courses li {\n// width: auto;\n// }\n// }\n// }\n\n// // .llms-course-list .courses li.first {\n// // \tmargin-left: 0;\n// // }\n\n// .llms-course-list .courses li.last {\n// margin-right: 15px;\n// }\n\n// .llms-course-list .courses li .llms-title {\n// display: block;\n// font-weight: 700;\n// margin-bottom: .5em;\n// font-size: 18px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n// .llms-course-list .courses li .llms-price {\n// display: block;\n// font-weight: 700;\n// // margin-bottom: .5em;\n// // font-size: 24px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n\n\n\n// .courses a.llms-course-link:hover {\n// text-decoration: none;\n// }\n",".course {\n\t.llms-meta-info {\n\t\tmargin: 20px 0;\n\t\t.llms-meta-title {\n\t\t\tmargin-bottom: 5px;\n\t\t}\n\t\t.llms-meta {\n\t\t\tp {\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t\tspan {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\t}\n\t.llms-course-progress {\n\t\tmargin: 40px auto;\n\t\tmax-width: 480px;\n\t\ttext-align: center;\n\t}\n}\n",".llms-syllabus-wrapper {\n\n\tmargin: 15px;\n\ttext-align: center;\n\n\t.llms-section-title {\n\t\tmargin: 25px 0 0;\n\t}\n\n}\n\n.llms-course-navigation {\n\t@extend %clearfix;\n\n\t.llms-prev-lesson,\n\t.llms-next-lesson,\n\t.llms-back-to-course {\n\t\twidth: 49%;\n\t}\n\n\t.llms-prev-lesson,\n\t.llms-back-to-course {\n\t\tfloat: left;\n\t\tmargin-right: 0.5%;\n\t}\n\n\t.llms-next-lesson,\n\t.llms-prev-lesson + .llms-back-to-course {\n\t\tfloat: right;\n\t\tmargin-left: 0.5%;\n\t}\n\n}\n\n.llms-lesson-preview {\n\tdisplay: inline-block;\n\tmargin-top: 15px;\n\tmax-width: 100%;\n\tposition: relative;\n\twidth: 480px;\n\n\t.llms-lesson-link {\n\t\tbackground: #f1f1f1;\n\t\tcolor: #212121;\n\t\tdisplay: block;\n\t\t// height: 100%;\n\t\tpadding: 15px;\n\t\ttext-decoration: none;\n\n\t\t@include clearfix();\n\n\t\t&:hover {\n\t\t\tbackground: #eaeaea;\n\t\t}\n\n\t\t&:visited {\n\t\t\tcolor: #212121;\n\t\t}\n\n\t}\n\n\t.llms-lesson-thumbnail {\n\t\tmargin-bottom: 10px;\n\t\timg {\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t.llms-pre-text {\n\t\ttext-align: left;\n\t}\n\n\t.llms-lesson-title {\n\t\tfont-weight: 700;\n\t\tmargin: 0 auto 10px;\n\t\ttext-align: left;\n\t\t&:last-child {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t}\n\n\t.llms-lesson-excerpt {\n\t\ttext-align: left;\n\t}\n\n\t.llms-main {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t}\n\t.llms-extra {\n\t\tfloat: right;\n\t\twidth: 15%;\n\t}\n\n\t.llms-extra + .llms-main {\n\t\twidth: 85%;\n\t}\n\n\t.llms-lesson-counter,\n\t.llms-free-lesson-svg,\n\t.llms-lesson-complete,\n\t.llms-lesson-complete-placeholder {\n\t\tdisplay: block;\n\t\tfont-size: 32px;\n\t\tmargin-bottom: 15px;\n\t}\n\n\t&.is-free,\n\t&.is-complete {\n\t\t.llms-lesson-complete {\n\t\t\tcolor: $color-brand-blue;\n\t\t}\n\t}\n\n\t.llms-icon-free {\n\t\tbackground: $color-brand-blue;\n\t\tborder-radius: 4px;\n\t\tcolor: #f1f1f1;\n\t\tdisplay: inline-block;\n\t\tpadding: 5px 6px 4px;\n\t\tline-height: 1;\n\t\tfont-size: 14px;\n\t}\n\n\t&.is-incomplete {\n\t\t.llms-lesson-complete {\n\t\t\tcolor: #cacaca;\n\t\t}\n\t}\n\n\t.llms-lesson-counter {\n\t\tfont-size: 16px;\n\t\tline-height: 1;\n\t}\n\n\t.llms-free-lesson-svg {\n\t\tfill: currentColor;\n\t\theight: 23px;\n\t\twidth: 50px;\n\t}\n\n\tp {\n\t\tmargin-bottom: 0;\n\t}\n\n}\n","/* progress bar */\n.llms-progress {\n\tclear: both;\n\tdisplay: flex;\n\tflex-direction: row-reverse;\n\tposition: relative;\n\theight: 1em;\n\twidth: 100%;\n\tmargin: 15px 0;\n}\n\n.llms-progress .llms-progress-bar {\n\tbackground-color: #f1f2f1;\n\tposition: relative;\n\theight: .4em;\n\ttop: .3em;\n\twidth: 100%;\n}\n\n.llms-progress .progress-bar-complete {\n\tbackground-color: $color-brand-pink;\n\theight: 100%;\n}\n\n.progress__indicator {\n\tfloat: right;\n\ttext-align: right;\n\theight: 1em;\n\tline-height: 1em;\n\tmargin-left: 5px;\n\twhite-space: nowrap;\n}\n",".llms-author {\n\t.name {\n\t\tmargin-left: 5px;\n\t}\n\t.label {\n\t\tmargin-left: 5px;\n\t}\n\t.avatar {\n\t\tborder-radius: 50%;\n\t}\n\t.bio {\n\t\tmargin-top: 5px;\n\t}\n}\n\n\n.llms-instructor-info {\n\t.llms-instructors {\n\n\t\t.llms-col {\n\t\t\t&:first-child .llms-author {\n\t\t\t\tmargin-left: 0;\n\t\t\t}\n\t\t\t&:last-child .llms-author {\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\n\t\t.llms-author {\n\n\t\t\tbackground: #f5f5f5;\n\t\t\tborder-top: 4px solid $color-brand-blue;\n\t\t\ttext-align: center;\n\t\t\tmargin: 45px 5px 5px;\n\t\t\tpadding: 0 10px 10px;\n\n\t\t\t.avatar {\n\t\t\t\tbackground: $color-brand-blue;\n\t\t\t\tborder: 4px solid $color-brand-blue;\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: -35px auto 10px;\n\t\t\t}\n\n\t\t\t.llms-author-info {\n\t\t\t\tdisplay: block;\n\t\t\t\t// margin: 0 0 5px;\n\t\t\t\t&.name {\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t}\n\t\t\t\t&.label {\n\t\t\t\t\tfont-size: 85%;\n\t\t\t\t}\n\t\t\t\t&.bio {\n\t\t\t\t\tfont-size: 90%;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n",".llms_review {\n\tmargin: 20px 0px;\n\tpadding: 10px;\n\n\th5 {\n\t\tfont-size: 17px;\n\t\tmargin: 3px 0px;\n\t}\n\n\th6 {\n\t\tfont-size: 13px;\n\t}\n\n\tp {\n\t\tfont-size: 15px;\n\t}\n}\n\n.review_box {\n\n\t[type=text] {\n\t\tmargin: 10px 0px\n\t}\n\n\th5 {\n\t\tcolor: red;\n\t\tdisplay: none;\n\t}\n\n\t+ .thank_you_box {\n\t\tdisplay: none;\n\t}\n}\n",".llms-notice {\n\tbackground: rgba( $color-brand-blue, .3 );\n\tborder-color: $color-brand-blue;\n\tborder-style: solid;\n\tborder-width: 3px;\n\tpadding: 10px;\n\tmargin-bottom: 10px;\n\n\tp, ul {\n\t\t&:last-child { margin-bottom: 0; }\n\t}\n\n\tli {\n\t\tlist-style-type: none;\n\t}\n\n\t&.llms-debug {\n\t\tbackground: rgba( #cacaca, .3 );\n\t\tborder-color: #cacaca;\n\t}\n\n\t&.llms-error {\n\t\tbackground: rgba( $color-red, .3 );\n\t\tborder-color: $color-red;\n\t}\n\n\t&.llms-success {\n\t\tbackground: rgba( $color-green, .3 );\n\t\tborder-color: $color-green;\n\t}\n\n}\n\n// this helps genesis and numerous other themes out a bit\n// by being slightly more specific\n.entry-content .llms-notice {\n\tmargin: 0 0 10px;\n\tli {\n\t\tlist-style-type: none;\n\t}\n}\n","ul.llms-achievements-loop,\n.lifterlms ul.llms-achievements-loop,\nul.llms-certificates-loop,\n.lifterlms ul.llms-certificates-loop {\n\n\t@include clearfix();\n\tlist-style-type: none;\n\tmargin: 0 -10px;\n\tpadding: 0;\n\n\tli.llms-achievement-loop-item,\n\tli.llms-certificate-loop-item {\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 10px;\n\t\twidth: 100%;\n\t}\n\n\t@media all and (min-width: 600px) {\n\t\t$cols: 1;\n\t\t@while $cols <= 5 {\n\t\t\t&.loop-cols-#{$cols} li.llms-achievement-loop-item,\n\t\t\t&.loop-cols-#{$cols} li.llms-certificate-loop-item {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n\n}\n\n.llms-achievement,\n.llms-certificate {\n\n\tbackground: #f1f1f1;\n\tborder: none;\n\tcolor: inherit;\n\tdisplay: block;\n\ttext-decoration: none;\n\twidth: 100%;\n\n\t&:hover {\n\t\tbackground: #eaeaea;\n\t}\n\n\t.llms-achievement-img {\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\twidth: 100%;\n\t}\n\n\t.llms-achievement-title {\n\t\tfont-size: 16px;\n\t\tmargin: 0;\n\t\tpadding: 10px;\n\t\ttext-align: center;\n\t}\n\n\t.llms-certificate-title {\n\t\tfont-size: 16px;\n\t\tmargin: 0;\n\t\tpadding: 0 0 10px;\n\t}\n\n\t.llms-achievement-info,\n\t.llms-achievement-date {\n\t\tdisplay: none;\n\t}\n\n\t.llms-achievement-content {\n\t\tpadding: 20px;\n\t\t&:empty {\n\t\t\tpadding: 0;\n\t\t}\n\t\t*:last-child {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t}\n\n}\n\n.llms-certificate {\n\tborder: 4px double #f1f1f1;\n\tpadding: 20px 10px;\n\tbackground: #fff;\n\ttext-align: center;\n\t&:hover {\n\t\tbackground: #fff;\n\t\tborder-color: #eaeaea;\n\t}\n}\n\n.llms-achievement-modal {\n\t.llms-achievement {\n\t\tbackground: #fff;\n\t}\n\t.llms-achievement-info {\n\t\tdisplay: block;\n\t}\n\t.llms-achievement-title {\n\t\tdisplay: none;\n\t}\n}\n",".llms-notification {\n\n\t@include clearfix();\n\n\tbackground: #fff;\n\tbox-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n\tborder-top: 4px solid $color-blue;\n\topacity: 0;\n\tpadding: 12px;\n\tposition: fixed;\n\tright: -800px;\n\ttop: 24px;\n\ttransition:\n\t\topacity 0.4s ease-in-out,\n\t\tright 0.4s ease-in-out,\n\t;\n\tvisibility: hidden;\n\twidth: auto;\n\tz-index: 9999999;\n\n\t&.visible {\n\t\tleft: 12px;\n\t\topacity: 1;\n\t\tright: 12px;\n\t\ttransition:\n\t\t\topacity 0.4s ease-in-out,\n\t\t\tright 0.4s ease-in-out,\n\t\t\ttop 0.1s ease-in-out,\n\t\t\tbackground 0.2s ease-in-out,\n\t\t\ttransform 0.2s ease-in-out\n\t\t;\n\t\tvisibility: visible;\n\n\t\t&:hover {\n\t\t\t.llms-notification-dismiss {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t.llms-notification-content {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\n\t}\n\n\t\t.llms-notification-main {\n\t\t\talign-self: flex-start;\n\t\t\tflex: 4;\n\t\t\torder: 2;\n\t\t}\n\n\t\t\t.llms-notification-title {\n\t\t\t\tfont-size: 18px;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.llms-notification-body {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tline-height: 1.4;\n\t\t\t\tp, li {\n\t\t\t\t\tfont-size: inherit;\n\t\t\t\t}\n\t\t\t\tp {\n\t\t\t\t\tmargin-bottom: 8px;\n\t\t\t\t}\n\n\t\t\t\t.llms-mini-cert {\n\t\t\t\t\tbackground: #f6f6f6;\n\t\t\t\t\tborder: 1px solid #d0d0d0;\n\t\t\t\t\tbox-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n\t\t\t\t\tpadding: 16px 16px 24px;\n\t\t\t\t\tmargin-top: 12px;\n\t\t\t\t\t.llms-mini-cert-title {\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tfont-weight: 700;\n\t\t\t\t\t\tmargin: 12px auto;\n\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t}\n\t\t\t\t\t.llms-mini-cert--body {\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t> div {\n\t\t\t\t\t\t\t&:nth-child(1) { width:65%; }\n\t\t\t\t\t\t\t&:nth-child(2) { width:35%; }\n\t\t\t\t\t\t\t&:nth-child(3) { width:85%; }\n\t\t\t\t\t\t\t&:nth-child(4) { width:75%; margin-top: 18px; }\n\t\t\t\t\t\t\t&:nth-child(5) { width:70%; }\n\t\t\t\t\t\t\t&:nth-child(6) { margin-left: 12px; margin-bottom:-24px; } // Dot.\n\t\t\t\t\t\t\t&:nth-child(7) { width:65%; margin-right: 12px; }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t.llms-mini-cert--mock-line {\n\t\t\t\t\t\tborder-radius: 2px;\n\t\t\t\t\t\theight: 8px;\n\t\t\t\t\t\tbackground: #b0b0b0;\n\t\t\t\t\t\tbackground-image: linear-gradient( to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100% );\n\t\t\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t\t\tmargin: 4px auto;\n\t\t\t\t\t}\n\t\t\t\t\t.llms-mini-cert--mock-dot {\n\t\t\t\t\t\tbackground: #b0b0b0;\n\t\t\t\t\t\tborder-radius: 50%;\n\t\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t}\n\t\t\t\t\tp { margin-bottom: 0; }\n\t\t\t\t}\n\t\t\t}\n\n\t\t.llms-notification-aside {\n\t\t\talign-self: flex-start;\n\t\t\tflex: 1;\n\t\t\tmargin-right: 12px;\n\t\t\torder: 1;\n\t\t}\n\n\t\t\t.llms-notification-icon {\n\t\t\t\tdisplay: block;\n\t\t\t\tmax-width: 64px;\n\t\t\t}\n\n\t.llms-notification-footer {\n\t\tborder-top: 1px solid #e5e5e5;\n\t\tfont-size: 12px;\n\t\tmargin-top: 12px;\n\t\tpadding: 6px 6px 0;\n\t\ttext-align: right;\n\t}\n\n\t.llms-notification-dismiss {\n\t\tcolor: $color-danger;\n\t\tcursor: pointer;\n\t\tfont-size: 22px;\n\t\tposition: absolute;\n\t\tright: 10px;\n\t\ttop: 8px;\n\t\ttransition: opacity 0.4s ease-in-out;\n\t}\n\n}\n\n.llms-sd-notification-center {\n\n\t.llms-notification-list,\n\t.llms-notification-list-item {\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t.llms-notification-list-item {\n\t\t&:hover .llms-notification {\n\t\t\tbackground: #fcfcfc;\n\t\t}\n\t}\n\n\t.llms-notification {\n\t\topacity: 1;\n\t\tborder-top: 1px solid #e5e5e5;\n\t\tleft: auto;\n\t\tpadding: 24px;\n\t\tposition: relative;\n\t\tright: auto;\n\t\ttop: auto;\n\t\tvisibility: visible;\n\t\twidth: auto;\n\t\t.llms-notification-aside {\n\t\t\tmax-width: 64px;\n\t\t}\n\t\t.llms-notification-footer {\n\t\t\tborder: none;\n\t\t\tpadding: 0;\n\t\t\ttext-align: left;\n\t\t}\n\t\t.llms-progress {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t.llms-notification-date {\n\t\t\tcolor: #515151;\n\t\t\tfloat: left;\n\t\t\tmargin-right: 6px;\n\t\t}\n\t\t.llms-mini-cert {\n\t\t\tmargin: 0 auto;\n\t\t\tmax-width: 380px;\n\t\t}\n\t}\n}\n\n@media all and (min-width: 480px) {\n\t.llms-notification {\n\t\tright: -800px;\n\t\twidth: 360px;\n\t\t&.visible {\n\t\t\tleft: auto;\n\t\t\tright: 24px;\n\t\t}\n\t\t.llms-notification-dismiss {\n\t\t\topacity: 0;\n\t\t}\n\t}\n}\n",".llms-pagination {\n\n\tul {\n\t\tlist-style-type: none;\n\t\t@extend %cf;\n\n\t\tli {\n\n\t\t\tfloat: left;\n\n\t\t\ta {\n\t\t\t\tborder-bottom: 0;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\n\t\t\t.page-numbers {\n\t\t\t\tpadding: 0.5em;\n\t\t\t\ttext-decoration: underline;\n\n\t\t\t\t&.current {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}",".llms-tooltip {\n\n\tbackground: #2a2a2a;\n\tborder-radius: 4px;\n\tcolor: #fff;\n\tfont-size: 14px;\n\tline-height: 1.2;\n\topacity: 0;\n\ttop: -20px;\n\tpadding: 8px 12px;\n\tleft: 50%;\n\tposition: absolute;\n\tpointer-events: none;\n\ttransform: translateX( -50% );\n\ttransition: opacity .2s ease, top .2s ease;\n\tmax-width: 320px;\n\n\t&.show {\n\t\ttop: -28px;\n\t\topacity: 1;\n\t}\n\n\t&:after {\n\n\t\tbottom: -8px;\n\t\tborder-top: 8px solid #2a2a2a;\n\t\tborder-left: 8px solid transparent;\n\t\tborder-right: 8px solid transparent;\n\t\tcontent: '';\n\t\theight: 0;\n\t\tleft: 50%;\n\t\tposition: absolute;\n\t\ttransform: translateX( -50% );\n\t\twidth: 0;\n\n\t}\n\n}\n\n\n\n.webui-popover-title {\n\tfont-size: initial;\n\tfont-weight: initial;\n\tline-height: initial;\n}\n.webui-popover-inverse {\n\t.webui-popover-inner .close {\n\t\tcolor: #fff;\n\t\topacity: 0.6;\n\t\ttext-shadow: none;\n\t\t&:hover {\n\t\t\topacity: 0.8;\n\t\t}\n\t}\n\t.webui-popover-content a {\n\t\tcolor: #fff;\n\t\ttext-decoration: underline;\n\t\t&:hover {\n\t\t\ttext-decoration: none;\n\t\t}\n\t}\n}\n",".llms-quiz-attempt-results {\n\tmargin: 0;\n\tpadding: 0;\n\tlist-style-type: none;\n\n\t.llms-quiz-attempt-question {\n\t\tbackground: #efefef;\n\t\tmargin: 0 0 10px;\n\t\tposition: relative;\n\n\t\t.toggle-answer {\n\t\t\t@include clearfix();\n\t\t\tcolor: inherit;\n\t\t\tdisplay: block;\n\t\t\tpadding: 10px 35px 10px 10px;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t&.status--waiting.correct,\n\t\t&.status--waiting.incorrect {\n\t\t\tbackground: rgba( $color-orange, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-orange;\n\t\t\t}\n\t\t}\n\n\t\t&.status--graded.correct {\n\t\t\tbackground: rgba( $color-green, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-green;\n\t\t\t}\n\t\t}\n\t\t&.status--graded.incorrect {\n\t\t\tbackground: rgba( $color-red, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-red;\n\t\t\t}\n\t\t}\n\t\tpre {\n\t\t\toverflow: auto;\n\t\t}\n\t\t.llms-question-title {\n\t\t\tfloat: left;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-points {\n\t\t\tfloat: right;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-status-icon-tip {\n\t\t\tposition: absolute;\n\t\t\tright: -12px;\n\t\t\ttop: -2px;\n\t\t}\n\n\t\t.llms-status-icon {\n\t\t\tcolor: rgba( 255, 255, 255, 0.65 );\n\t\t\tborder-radius: 50%;\n\t\t\tfont-size: 30px;\n\t\t\theight: 40px;\n\t\t\tline-height: 40px;\n\t\t\ttext-align: center;\n\t\t\twidth: 40px;\n\t\t}\n\n\t\t.llms-quiz-attempt-question-main {\n\t\t\tdisplay: none;\n\t\t\tpadding: 0 10px 10px;\n\n\t\t\t.llms-quiz-results-label {\n\t\t\t\tfont-weight: 700;\n\t\t\t\tmargin-bottom: 10px;\n\t\t\t}\n\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tmargin: 0 0 0 30px;\n\t\t\t\t\t&:only-child {\n\t\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tmax-width: 200px;\n\t\t\t}\n\n\t\t\t.llms-quiz-attempt-answer-section {\n\t\t\t\tborder-top: 2px solid rgba( #fff, 0.5 );\n\t\t\t\tmargin-top: 20px;\n\t\t\t\tpadding-top: 20px;\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-top: none;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tpadding-top: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t&.type--picture_choice,\n\t\t&.type--picture_reorder {\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tlist-style-type: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 5px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type--removed {\n\t\t\t.llms-question-title {\n\t\t\t\tfont-style: italic;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t\topacity: .5;\n\t\t}\n\n\t}\n}\n",".single-llms_quiz {\n\n\t@import \"../_includes/quiz-result-question-list\";\n\n\t.llms-return {\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.llms-quiz-results {\n\t\t@include clearfix();\n\n\t\t.llms-donut {\n\t\t\t&.passing {\n\t\t\t\tcolor: $color-success;\n\t\t\t\tsvg path {\n\t\t\t\t\tstroke: $color-success;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&.pending {\n\t\t\t\tcolor: #555;\n\t\t\t\tsvg path {\n\t\t\t\t\tstroke: #555;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&.failing {\n\t\t\t\tcolor: $color-danger;\n\t\t\t\tsvg path {\n\t\t\t\t\tstroke: $color-danger;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.llms-quiz-results-aside,\n\t\t.llms-quiz-results-main,\n\t\t.llms-quiz-results-history {\n\t\t\tmargin-bottom: 20px;\n\t\t}\n\n\n\t\t@media all and (min-width: 600px) {\n\t\t\t.llms-quiz-results-aside {\n\t\t\t\tfloat: left;\n\t\t\t\twidth: 220px;\n\t\t\t}\n\t\t\t.llms-quiz-results-main,\n\t\t\t.llms-quiz-results-history {\n\t\t\t\tfloat: left;\n\t\t\t\twidth: calc( 100% - 300px );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tul.llms-quiz-meta-info,\n\tul.llms-quiz-meta-info li {\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0\n\t}\n\n\tul.llms-quiz-meta-info {\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.llms-quiz-buttons {\n\t\tmargin-top: 10px;\n\t\ttext-align: left;\n\n\t\tform { display: inline-block; }\n\t}\n\n}\n\n.llms-quiz-question-wrapper {\n\tmin-height: 140px;\n\tposition: relative;\n\t.llms-quiz-loading {\n\t\tbottom: 20px;\n\t\tleft: 0;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttext-align: center;\n\t\tz-index: 1;\n\t}\n}\n\n.llms-quiz-ui {\n\tbackground: #fcfcfc;\n\tpadding: 20px;\n\tposition: relative;\n\n\t.llms-quiz-header {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\t\tmargin: 0 0 30px;\n\t}\n\n\t.llms-progress {\n\t\tbackground-color: #f1f2f1;\n\t\tflex-direction: row;\n\t\theight: 8px;\n\t\tmargin: 0;\n\t\toverflow: hidden;\n\t\t.progress-bar-complete {\n\t\t\ttransition: width 0.3s ease-in;\n\t\t\twidth: 0;\n\t\t}\n\t}\n\n\t.llms-error {\n\t\t@include clearfix();\n\t\tbackground: $color-danger;\n\t\tborder-radius: 4px;\n\t\tcolor: #fff;\n\t\tmargin: 10px 0;\n\t\tpadding: 10px;\n\n\t\ta {\n\t\t\tcolor: rgba( #fff, 0.6 );\n\t\t\tfloat: right;\n\t\t\tfont-size: 22px;\n\t\t\tline-height: 1;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t}\n\n\t.llms-quiz-counter {\n\t\tdisplay: none;\n\n\t\tcolor: #6a6a6a;\n\t\tfloat: right;\n\t\tfont-size: 18px;\n\n\t\t.llms-sep {\n\t\t\tmargin: 0 5px;\n\t\t}\n\t}\n\n\t.llms-quiz-nav {\n\t\tmargin-top: 20px;\n\t\tbutton {\n\t\t\tmargin: 0 10px 0 0;\n\t\t}\n\t}\n\n}\n\n// single question wrapper\n.llms-question-wrapper {\n\n\t.llms-question-text {\n\t\tfont-size: 30px;\n\t\tfont-weight: 400;\n\t\tmargin-bottom: 15px;\n\t}\n\n\tol.llms-question-choices {\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\n\t\tli.llms-choice {\n\t\t\tborder-bottom: 1px solid #e8e8e8;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tposition: relative;\n\n\t\t\t&:last-child {\n\t\t\t\tborder-bottom: none;\n\t\t\t}\n\n\t\t\t&.type--picture {\n\t\t\t\tborder-bottom: none;\n\t\t\t\tlabel {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t}\n\t\t\t\t.llms-marker {\n\t\t\t\t\tbottom: 10px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tright: 10px;\n\t\t\t\t}\n\t\t\t\t.llms-choice-image {\n\t\t\t\t\tmargin: 2px;\n\t\t\t\t\tpadding: 20px;\n\t\t\t\t\ttransition: background 0.4s ease;\n\t\t\t\t\timg {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tinput:checked ~ .llms-choice-image {\n\t\t\t\t\tbackground: #efefef\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tinput {\n\t\t\t\tdisplay: none;\n\t\t\t\tleft: 0;\n\t\t\t\tpointer-events: none;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0;\n\t\t\t\tvisibility: hidden;\n\t\t\t}\n\n\t\t\tlabel {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 10px 20px;\n\t\t\t\tposition: relative;\n\t\t\t\t// &:hover {\n\t\t\t\t&.hovered {\n\t\t\t\t\t.llms-marker:not(.type--lister) {\n\t\t\t\t\t\t.iterator {\n\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.fa {\n\t\t\t\t\t\t\tdisplay: inline;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-marker {\n\n\t\t\t\tbackground: #f0f0f0;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 20px;\n\t\t\t\theight: 40px;\n\t\t\t\tline-height: 40px;\n\t\t\t\tmargin-right: 10px;\n\t\t\t\ttext-align: center;\n\t\t\t\ttransition: all 0.2s ease;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 40px;\n\n\t\t\t\t.fa {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t&.type--lister,\n\t\t\t\t&.type--checkbox { border-radius: 4px; }\n\t\t\t\t&.type--radio { border-radius: 50%; }\n\n\t\t\t}\n\n\t\t\tinput:checked + .llms-marker {\n\t\t\t\tbackground: $color-brand-pink;\n\t\t\t\tcolor: #fff;\n\t\t\t\t.iterator {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t.fa {\n\t\t\t\t\tdisplay: inline;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-choice-text {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tline-height: 1.6;\n\t\t\t\tmargin-bottom: 0;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: calc( 100% - 60px );\n\t\t\t}\n\n\t\t}\n\t}\n\n}\n\n.llms-quiz-timer {\n\tbackground: #fff;\n\tborder: 1px solid $color-green;\n\tborder-radius: 4px;\n\tcolor: $color-green;\n\tfloat: right;\n\tfont-size: 18px;\n\tline-height: 1;\n\tmargin-left: 20px;\n\tpadding: 8px 12px;\n\tposition: relative;\n\twhite-space: nowrap;\n\tz-index: 1;\n\n\t&.color-half {\n\t\tborder-color: $color-orange;\n\t\tcolor: $color-orange\n\t}\n\n\t&.color-empty {\n\t\tborder-color: $color-danger;\n\t\tcolor: $color-danger\n\t}\n\n\t.llms-tiles {\n\t\tdisplay: inline-block;\n\t\tmargin-left: 5px;\n\t}\n}\n\n\n// /* My Quizzes */\n// .llms-quiz-results {\n// @extend %cf;\n// font-family: \"Open Sans\",Verdana,Geneva,sans-serif,sans-serif;\n// position: relative;\n// }\n// .llms-quiz-results > h3 {\n// background-color: #f5f5f5;\n// padding: 4px;\n// }\n\n// .llms-quiz-result-details {\n// float: left;\n// ul {\n// list-style-type: none;\n// float: left;\n// li {\n// list-style-type: none;\n// font-size: 20px;\n// }\n// }\n// }\n// .llms-attempts {\n// font-weight: bold;\n// }\n\n// .llms-pass-perc {\n// font-weight: bold;\n// }\n// .llms-content-block {\n// margin: 6px 0;\n// }\n// .llms-question-wrapper {\n// margin: 40px 0 20px 0;\n// }\n// .llms-question-count {\n// margin-bottom: 20px;\n// }\n\n\n",".voucher-expand {\n\tdisplay: none;\n}",".llms-access-plans {\n\t@extend %clearfix;\n\n\t@media all and (min-width: 600px) {\n\t\t$cols: 1;\n\t\t@while $cols <= 5 {\n\t\t\t&.cols-#{$cols} .llms-access-plan {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n\n}\n\n.llms-free-enroll-form {\n\tmargin-bottom: 0;\n}\n\n.llms-access-plan {\n\tbox-sizing: border-box;\n\tfloat: left;\n\ttext-align: center;\n\twidth: 100%;\n\n\t.llms-access-plan-footer,\n\t.llms-access-plan-content {\n\t\tbackground: #f1f1f1;\n\t}\n\n\t&.featured {\n\n\t\t.llms-access-plan-featured {\n\t\t\tbackground: lighten( $color-brand-blue, 8 );\n\t\t}\n\n\t\t.llms-access-plan-footer,\n\t\t.llms-access-plan-content {\n\t\t\tborder-left: 3px solid $color-brand-blue;\n\t\t\tborder-right: 3px solid $color-brand-blue;\n\t\t}\n\n\t\t.llms-access-plan-footer {\n\t\t\tborder-bottom-color: $color-brand-blue;\n\t\t}\n\n\t}\n\n\t&.on-sale {\n\t\t.price-regular { text-decoration: line-through; }\n\t}\n\n\t.stamp {\n\t\tbackground: $color-brand-blue;\n\t\tcolor: #fff;\n\t\tfont-size: 11px;\n\t\tfont-style: normal;\n\t\tfont-weight: 300;\n\t\tpadding: 2px 3px;\n\t\tvertical-align: top;\n\t}\n\n\t.llms-access-plan-restrictions ul { margin: 0; }\n\n}\n\t.llms-access-plan-featured {\n\t\tcolor: #fff;\n\t\tfont-size: 14px;\n\t\tfont-weight: 400;\n\t\tmargin: 0 2px 0 2px;\n\t}\n\n\t.llms-access-plan-content {\n\t\tmargin: 0 2px 0;\n\n\t\t.llms-access-plan-pricing {\n\t\t\tpadding: 10px 0 0;\n\t\t}\n\t}\n\n\t\t.llms-access-plan-title {\n\t\t\tbackground: $color-brand-blue;\n\t\t\tcolor: #fff;\n\t\t\tmargin-bottom: 0;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t.llms-access-plan-pricing {\n\n\t\t\t.llms-price-currency-symbol {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tvertical-align: top;\n\t\t\t}\n\n\t\t}\n\n\t\t\t.llms-access-plan-price {\n\t\t\t\tfont-size: 18px;\n\t\t\t\tfont-variant: small-caps;\n\t\t\t\tline-height: 20px;\n\n\t\t\t\t.lifterlms-price {\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t}\n\n\t\t\t\t&.sale {\n\t\t\t\t\tpadding: 5px 0;\n\t\t\t\t\tborder-top: 1px solid #d0d0d0;\n\t\t\t\t\tborder-bottom: 1px solid #d0d0d0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-access-plan-trial,\n\t\t\t.llms-access-plan-schedule,\n\t\t\t.llms-access-plan-sale-end,\n\t\t\t.llms-access-plan-expiration {\n\t\t\t\tfont-size: 15px;\n\t\t\t\tfont-variant: small-caps;\n\t\t\t\tline-height: 1.2;\n\t\t\t}\n\n\t\t.llms-access-plan-description {\n\t\t\tfont-size: 16px;\n\t\t\tpadding: 10px 10px 0;\n\n\t\t\tul {\n\t\t\t\tmargin: 0;\n\t\t\t\tli {\n\t\t\t\t\tborder-bottom: 1px solid #d0d0d0;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tborder-bottom: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdiv, img, p, ul, li {\n\t\t\t\t&:last-child { margin-bottom: 0; }\n\t\t\t}\n\t\t}\n\n\t\t.llms-access-plan-restrictions {\n\t\t\t.stamp {\n\t\t\t\tvertical-align: baseline;\n\t\t\t}\n\t\t\tul {\n\t\t\t\tmargin: 0;\n\t\t\t\tli {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tline-height: 14px;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t}\n\t\t\t}\n\t\t\ta {\n\t\t\t\tcolor: $color-brand-orange;\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $color-brand-orange-dark;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t.llms-access-plan-footer {\n\t\tborder-bottom: 3px solid #f1f1f1;\n\t\tpadding: 10px;\n\t\tmargin: 0 2px 2px 2px;\n\n\t\t.llms-access-plan-pricing {\n\t\t\tpadding: 0 0 10px;\n\t\t}\n\t}\n\n\n.webui-popover-content .llms-members-only-restrictions {\n\ttext-align: center;\n\tul,ol,li,p {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\tul,ol,li {\n\t\tlist-style-type: none;\n\t}\n\tli {\n\t\tpadding: 8px 0;\n\t\tborder-top: 1px solid #3b3b3b;\n\t\t&:first-child {\n\t\t\tborder-top: none;\n\t\t}\n\t\ta {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n",".llms-checkout-wrapper {\n\tform.llms-login {\n\t\tborder: 3px solid $color-brand-blue;\n\t\tdisplay: none;\n\t\tmargin-bottom: 10px;\n\t}\n\t.llms-form-heading {\n\t\tbackground: $color-brand-blue;\n\t\tcolor: #fff;\n\t\tmargin: 0 0 5px;\n\t\tpadding: 10px;\n\t}\n}\n\n.llms-checkout {\n\tbackground: #fff;\n\tposition: relative;\n}\n\n.llms-checkout-cols-2 {\n\t@extend %clearfix;\n\n\t@media all and (min-width: 800px) {\n\n\t\t.llms-checkout-col {\n\t\t\tfloat: left;\n\n\t\t\t&.llms-col-1 {\n\t\t\t\tmargin-right: 5px;\n\t\t\t\twidth: calc( 58% - 5px );\n\t\t\t}\n\t\t\t&.llms-col-2 {\n\t\t\t\tmargin-left: 5px;\n\t\t\t\twidth: calc( 42% - 5px );\n\n\t\t\t\tbutton {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n\n\t.llms-checkout-section {\n\t\tborder: 3px solid $color-brand-blue;\n\t\tmargin-bottom: 10px;\n\t\tposition: relative;\n\t}\n\n\t\t.llms-checkout-section-content {\n\t\t\tmargin: 10px;\n\t\t\t&.llms-form-fields {\n\t\t\t\tmargin: 0px;\n\t\t\t}\n\n\t\t\t.llms-label {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-variant: small-caps;\n\t\t\t\ttext-transform: lowercase;\n\t\t\t}\n\n\t\t\t.llms-order-summary {\n\t\t\t\tlist-style-type: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli { list-style-type: none; }\n\n\t\t\t\tli.llms-pricing {\n\t\t\t\t\t&.on-sale,\n\t\t\t\t\t&.has-coupon {\n\t\t\t\t\t\t.price-regular { text-decoration: line-through; }\n\t\t\t\t\t}\n\t\t\t\t}\n\n\n\t\t\t}\n\n\t\t\t.llms-coupon-wrapper {\n\t\t\t\tborder-top: 1px solid #dadada;\n\t\t\t\tmargin-top: 10px;\n\t\t\t\tpadding-top: 10px;\n\n\t\t\t\t.llms-coupon-entry {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tmargin-top: 10px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-form-field.llms-payment-gateway-option {\n\n\t\t\tlabel + span.llms-description {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-left: 5px;\n\t\t\t}\n\n\t\t\t.llms-description {\n\t\t\t\ta {\n\t\t\t\t\tborder: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\timg {\n\t\t\t\t\tdisplay: inline;\n\t\t\t\t\tmax-height: 22px;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-checkout-wrapper ul.llms-payment-gateways {\n\t\t\tmargin: 5px 0 0;\n\t\t\tpadding: 0;\n\t\t}\n\t\tul.llms-payment-gateways {\n\t\t\tlist-style-type: none;\n\n\t\t\tli:last-child:after {\n\t\t\t\tborder-bottom: 1px solid #dadada;\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 10px;\n\t\t\t}\n\n\t\t\t.llms-payment-gateway {\n\t\t\t\tmargin-bottom: 5px;\n\t\t\t\tlist-style-type: none;\n\t\t\t\t&:last-child {\n\t\t\t\t\tmargin-bottom: none;\n\t\t\t\t}\n\n\t\t\t\t&.is-selected {\n\t\t\t\t\t.llms-payment-gateway-option label {\n\t\t\t\t\t\tfont-weight: 700;\n\t\t\t\t\t}\n\t\t\t\t\t.llms-gateway-fields {\n\t\t\t\t\t\tdisplay: block;\n\n\t\t\t\t\t\t.llms-notice {\n\t\t\t\t\t\t\tmargin-left: 10px;\n\t\t\t\t\t\t\tmargin-right: 10px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.llms-form-field {\n\t\t\t\t\tpadding-bottom: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t\t.llms-gateway-description {\n\t\t\t\t\tmargin-left: 40px;\n\t\t\t\t}\n\n\t\t\t\t.llms-gateway-fields {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tmargin: 5px 0 20px;\n\t\t\t\t}\n\n\t\t\t.llms-payment-gateway-error {\n\t\t\t\tpadding: 0 10px;\n\t\t\t}\n\t\t}\n\n\t\t.llms-checkout-confirm {\n\t\t\tmargin: 0 10px;\n\t\t}\n\n\t\t.llms-payment-method {\n\t\t\tmargin: 10px 10px 0;\n\t\t}\n\n\t\t.llms-gateway-description {\n\t\t\tp {\n\t\t\t\tfont-size: 85%;\n\t\t\t\tfont-style: italic;\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t}\n",".llms-form-fields {\n\t@extend %clearfix;\n\tbox-sizing: border-box;\n\t& * {\n\t\tbox-sizing: border-box;\n\t}\n\t&.flush {\n\t\t.llms-form-field {\n\t\t\tpadding: 0 0 10px;\n\t\t}\n\t}\n\n\t.wp-block-columns, .wp-block-column {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n\t.llms-form-heading {\n\t\tpadding: 0 10px 10px;\n\t}\n\n\t.llms-form-field {\n\t\tfloat: left;\n\t\tpadding: 0 10px 10px;\n\t\tposition: relative;\n\t\twidth: 100%;\n\n\t\t// Ensure \"empty\" labels don't break the layout.\n\t\t// See the billing_address_2 field which has no label.\n\t\tlabel:empty:after {\n\t\t\tcontent: '\\00a0';\n\t\t}\n\n\t\t&.valid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( #83c373, .3 );\n\t\t\t\tborder-color: #83c373;\n\t\t\t}\n\t\t}\n\n\t\t&.error,\n\t\t&.invalid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( $color-red, .3 );\n\t\t\t\tborder-color: $color-red;\n\t\t\t}\n\t\t}\n\n\t\t&.llms-visually-hidden-field {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&.align-right {\n\t\t\ttext-align: right;\n\t\t}\n\n\t\t@media screen and ( min-width: 600px ) {\n\t\t\t$i: 1;\n\t\t\t@while $i <= 12 {\n\t\t\t\t&.llms-cols-#{$i} {\n\t\t\t\t\twidth: calc( $i / 12 ) * 100%;\n\t\t\t\t\t$i: $i + 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type-hidden { padding: 0; }\n\n\t\t&.type-radio,\n\t\t&.type-checkbox {\n\t\t\tinput,\n\t\t\tlabel {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: auto;\n\t\t\t}\n\t\t\tinput {\n\t\t\t\tmargin-right: 5px;\n\t\t\t}\n\t\t\tlabel + .llms-description {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\n\t\t&.type-radio:not(.is-group) {\n\n\t\t\tinput[type=\"radio\"] {\n\t\t\t\tposition: absolute;\n\t\t\t\topacity: 0;\n\t\t\t\tvisibility: none;\n\t\t\t}\n\n\t\t\tlabel:before {\n\t\t\t\tbackground: #fafafa;\n\t\t\t\tbackground-position: -24px 0;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tbox-shadow: hsla( 0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.35) 0 0 0 1px;\n\t\t\t\tcontent: '';\n\t\t\t\tcursor: pointer;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: 22px;\n\t\t\t\tmargin-right: 5px;\n\t\t\t\tposition: relative;\n\t\t\t\ttransition: background-position .15s cubic-bezier(.8, 0, 1, 1);\n\t\t\t\ttop: -3px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 22px;\n\t\t\t\tz-index: 2;\n\t\t\t}\n\n\t\t\tinput[type=\"radio\"]:checked + label:before {\n\t\t\t\ttransition: background-position .2s .15s cubic-bezier(0, 0, .2, 1);\n\t\t\t\tbackground-position: 0 0;\n\t\t\t\tbackground-image: radial-gradient(ellipse at center, $color-brand-blue 0%,$color-brand-blue 40%, #fafafa 45%);\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-input-group {\n\t\t\tmargin-top: 5px;\n\t\t\t.llms-form-field {\n\t\t\t\tpadding: 0 0 5px 5px;\n\t\t\t}\n\t\t}\n\n\t\t&.type-reset,\n\t\t&.type-button,\n\t\t&.type-submit {\n\t\t\tbutton:not(.auto) { width: 100%; }\n\t\t}\n\n\t\t.llms-description {\n\t\t\tfont-size: 14px;\n\t\t\tfont-style: italic;\n\t\t}\n\n\t\t.llms-required {\n\t\t\tcolor: $color-red;\n\t\t\tmargin-left: 4px;\n\t\t}\n\n\t\tinput, textarea, select {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 5px;\n\t\t}\n\n\t\t.select2-container .select2-selection--single {\n\t\t\theight: auto;\n\t\t\tpadding: 4px 6px;\n\t\t}\n\t\t.select2-container--default .select2-selection--single .select2-selection__arrow {\n\t\t\theight: 100%;\n\t\t}\n\n\t}\n\n\n\t.llms-password-strength-meter {\n\t\tborder: 1px solid #dadada;\n\t\tdisplay: none;\n\t\tfont-size: 10px;\n\t\tmargin-top: -10px;\n\t\tpadding: 1px;\n\t\tposition: relative;\n\t\ttext-align: center;\n\n\t\t&:before {\n\t\t\tbottom: 0;\n\t\t\tcontent: '';\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\ttransition: width .4s ease;\n\t\t}\n\n\t\t&.mismatch,\n\t\t&.too-short,\n\t\t&.very-weak {\n\t\t\tborder-color: #e35b5b;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #e35b5b, 0.25 );\n\t\t\t\twidth: 25%;\n\t\t\t}\n\t\t}\n\n\t\t&.too-short:before {\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&.weak {\n\t\t\tborder-color: #f78b53;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #f78b53, 0.25 );\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t}\n\n\t\t&.medium {\n\t\t\tborder-color: #ffc733;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #ffc733, 0.25 );\n\t\t\t\twidth: 75%;\n\t\t\t}\n\t\t}\n\n\t\t&.strong {\n\t\t\tborder-color: #83c373;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #83c373, 0.25 );\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n",".llms-widget-syllabus--collapsible {\n\n\t.llms-section {\n\n\t\t.section-header {\n\n\t\t\tcursor: pointer;\n\n\t\t}\n\n\t\t&.llms-section--opened {\n\n\t\t\t.llms-collapse-caret {\n\t\t\t\t.fa-caret-right { display: none; }\n\t\t\t}\n\n\t\t}\n\n\t\t&.llms-section--closed {\n\n\t\t\t.llms-collapse-caret {\n\t\t\t\t.fa-caret-down { display: none; }\n\t\t\t}\n\n\t\t\t.llms-lesson {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.llms-syllabus-footer {\n\n\t\ttext-align: left;\n\n\t}\n\n}\n",".llms-student-dashboard {\n\n\t.llms-sd-nav {}\n\n\t.llms-sd-title {\n\t\tmargin: 25px 0;\n\t}\n\n\t.llms-sd-items { // ul\n\t\t@extend %clearfix;\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\t\t.llms-sd-item { // li\n\t\t\tfloat: left;\n\t\t\tlist-style-type: none;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&:last-child {\n\t\t\t\t.llms-sep {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-sep {\n\t\t\t\tcolor: #333;\n\t\t\t\tmargin: 0 5px;\n\t\t\t}\n\t\t}\n\n\t.llms-sd-section {\n\t\tmargin-bottom: 25px;\n\t\t.llms-sd-section-footer {\n\t\t\tmargin-top: 10px;\n\t\t}\n\t}\n\n\t.orders-table {\n\n\t\tborder: 1px solid #f5f5f5;\n\t\twidth: 100%;\n\n\t\tthead {\n\t\t\tdisplay: none;\n\t\t\tth,td {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t\t@media all and ( min-width: 600px ) {\n\t\t\t\tdisplay: table-header-group;\n\t\t\t}\n\t\t}\n\n\t\ttbody {\n\t\t\ttr:nth-child( even ) {\n\t\t\t\ttd, th {\n\t\t\t\t\tbackground: #f9f9f9;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttfoot {\n\t\t\tth, td {\n\t\t\t\tpadding: 10px;\n\t\t\t\ttext-align: right;\n\t\t\t\t&:last-child { border-bottom-width: 0; }\n\t\t\t}\n\t\t}\n\n\t\tth {\n\t\t\tfont-weight: 700;\n\t\t}\n\n\t\tth, td {\n\t\t\tborder-color: #efefef;\n\t\t\tborder-style: solid;\n\t\t\tborder-width: 0;\n\t\t\tdisplay: block;\n\t\t\tpadding: 8px 12px;\n\t\t\ttext-align: center;\n\n\t\t\t.llms-button-primary {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t&:last-child {\n\t\t\t\tborder-bottom-width: 1px;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tcontent: attr( data-label );\n\t\t\t}\n\n\t\t\t@media all and ( min-width: 600px ) {\n\t\t\t\tborder-bottom-width: 1px;\n\t\t\t\tdisplay: table-cell;\n\t\t\t\ttext-align: left;\n\t\t\t\t&:first-child { width: 220px; }\n\t\t\t\t&:before { display: none; }\n\t\t\t}\n\n\t\t}\n\n\t\t@media all and ( min-width: 600px ) {\n\t\t\t&.transactions th:first-child {width: auto; }\n\t\t}\n\n\t}\n\n\t@include order_status_badges();\n\n\t.llms-person-form-wrapper {\n\t\t.llms-change-password { display: none; }\n\t}\n\n\t.order-primary {\n\n\t\t@media all and ( min-width: 600px ) {\n\t\t\tfloat: left;\n\t\t\twidth: 68%;\n\t\t}\n\n\t}\n\t.order-secondary {\n\n\t\t@media all and ( min-width: 600px ) {\n\t\t\tfloat: left;\n\t\t\twidth: 32%;\n\t\t}\n\n\t\tform {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n\t// stack columns when alternate layout declared via filter\n\t@media all and ( min-width: 600px ) {\n\t\t.llms-view-order.llms-stack-cols {\n\t\t\t.order-primary,\n\t\t\t.order-secondary {\n\t\t\t\tfloat: none;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n\n\t.llms-switch-payment-source {\n\t\t.llms-notice,\n\t\t.entry-content .llms-notice {\n\t\t\tmargin-left: 10px;\n\t\t\tmargin-right: 10px;\n\t\t}\n\t}\n\n\t.llms-switch-payment-source-main {\n\t\tborder: none;\n\t\tdisplay: none;\n\t\tmargin: 0;\n\t\tul.llms-payment-gateways {\n\t\t\tpadding: 10px 15px 0;\n\t\t\tmargin: 0;\n\t\t}\n\t\t.llms-payment-method,\n\t\tul.llms-order-summary {\n\t\t\tpadding: 0 25px 10px;\n\t\t\tmargin: 0;\n\t\t\tlist-style-type: none;\n\t\t\tli { list-style-type: none; }\n\t\t}\n\t}\n\n\t/**\n\t * Dashboard Home\n\t */\n\t.llms-loop-list {\n\t\tmargin: 0 -10px;\n\t}\n\n}\n\n// My Grades course list\n.llms-sd-grades {\n\t.llms-table {\n\t\t.llms-progress {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0;\n\t\t\t.llms-progress-bar {\n\t\t\t\ttop: 0;\n\t\t\t\theight: 1.4em;\n\t\t\t}\n\t\t\t.progress__indicator {\n\t\t\t\tfont-size: 1em;\n\t\t\t\tposition: relative;\n\t\t\t\tright: 0.4em;\n\t\t\t\ttop: 0.2em;\n\t\t\t\tz-index: 1;\n\t\t\t}\n\t\t}\n\t}\n}\n\n// grades table for a single course\n.llms-table.llms-single-course-grades {\n\n\ttbody {\n\t\ttr:first-child td, tr:first-child th {\n\t\t\tbackground-color: #eaeaea;\n\t\t}\n\t}\n\n\tth {\n\t\tfont-weight: 400;\n\t}\n\n\ttd {\n\t\t.llms-donut {\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t.llms-status {\n\t\t\tmargin-right: 4px;\n\t\t}\n\t\t.llms-donut + .llms-status {\n\t\t\tmargin-left: 4px;\n\t\t}\n\t}\n\n\tth.llms-section_title {\n\t\tfont-size: 110%;\n\t\tfont-weight: 700;\n\t}\n\n\ttd.llms-lesson_title {\n\t\tpadding-left: 36px;\n\t\tmax-width: 40%;\n\t}\n\ttd.llms-associated_quiz {\n\t\t.llms-donut {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-right: 5px;\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\ttd.llms-lesson_title {\n\t\ta[href=\"#\"] {\n\t\t\tpointer-events: none;\n\t\t}\n\t\ta[href^=\"#\"] {\n\t\t\tcolor: inherit;\n\t\t\tposition: relative;\n\t\t\t.llms-tooltip {\n\t\t\t\tmax-width: 380px;\n\t\t\t\twidth: 380px;\n\t\t\t\t&.show {\n\t\t\t\t\ttop: -54px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.llms-sd-widgets {\n\tdisplay: flex;\n\n\t.llms-sd-widget {\n\t\tbackground: #f9f9f9;\n\t\tflex: 1;\n\t\tmargin: 10px 10px 20px;\n\t\tpadding: 0 0 20px;\n\t\t&:first-child {\n\t\t\tmargin-left: 0;\n\t\t}\n\t\t&:last-child {\n\t\t\tmargin-right: 0;\n\t\t}\n\n\t\t.llms-sd-widget-title {\n\t\t\tbackground: $color-brand-blue;\n\t\t\tcolor: #fff;\n\t\t\tfont-size: 18px;\n\t\t\tline-height: 1;\n\t\t\tmargin: 0 0 20px;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t.llms-sd-widget-empty {\n\t\t\tfont-size: 14px;\n\t\t\tfont-style: italic;\n\t\t\topacity: 0.5;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t.llms-donut {\n\t\t\tmargin: 0 auto;\n\t\t}\n\n\t\t.llms-sd-date {\n\t\t\topacity: 0.8;\n\t\t\ttext-align: center;\n\t\t\tfont-size: 22px;\n\t\t\tline-height: 1.1;\n\t\t\tspan {\n\t\t\t\tdisplay: block;\n\t\t\t\t&.day {\n\t\t\t\t\tfont-size: 52px;\n\t\t\t\t}\n\t\t\t\t&.diff {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tfont-style: italic;\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t\topacity: 0.75;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.llms-achievement {\n\t\t\tbackground: transparent;\n\t\t\tmargin: 0 auto;\n\t\t\tmax-width: 120px;\n\t\t\t.llms-achievement-title {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t}\n\n\n}\n\n\n.llms-sd-pagination {\n\tmargin-top: 24px;\n\t@include clearfix;\n\t.llms-button-secondary {\n\t\tdisplay: inline-block;\n\t\t&.prev { float: left; }\n\t\t&.next { float: right; }\n\t}\n}\n\n\n.llms-sd-notification-center {\n\t.llms-notification {\n\t\tz-index: 1;\n\t}\n}\n",".llms-table {\n\tborder: 1px solid #efefef;\n\twidth: 100%;\n\n\tthead {\n\t\tth,td {\n\t\t\tfont-weight: 700;\n\t\t}\n\t}\n\n\ttbody {\n\t\ttr:nth-child( odd ) {\n\t\t\ttd, th {\n\t\t\t\tbackground: #f9f9f9;\n\t\t\t}\n\t\t}\n\t\ttr:last-child {\n\t\t\tborder-bottom-width: 0;\n\t\t}\n\t}\n\n\ttfoot {\n\t\ttr {\n\t\t\tbackground: #f9f9f9;\n\t\t\t.llms-pagination .page-numbers {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t\t.llms-table-sort {\n\t\t\t\ttext-align: right;\n\t\t\t\tform, select, input, button {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tth {\n\t\tfont-weight: 700;\n\t}\n\n\tth, td {\n\t\tborder-bottom: 1px solid #efefef;\n\t\tpadding: 8px 12px;\n\n\t\t// launchpad compat...\n\t\t&:first-child { padding-left: 12px; }\n\t\t&:last-child { padding-right: 12px; }\n\n\t}\n\n}\n\n// launchpad compat...\n#page .llms-table tfoot label {\n\tdisplay: inline;\n}\n#page .llms-table tfoot select {\n\theight: auto;\n}\n","/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: 'FontAwesome';\n src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');\n src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.fa-pull-left {\n float: left;\n}\n.fa-pull-right {\n float: right;\n}\n.fa.fa-pull-left {\n margin-right: .3em;\n}\n.fa.fa-pull-right {\n margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n.fa-music:before {\n content: \"\\f001\";\n}\n.fa-search:before {\n content: \"\\f002\";\n}\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n.fa-heart:before {\n content: \"\\f004\";\n}\n.fa-star:before {\n content: \"\\f005\";\n}\n.fa-star-o:before {\n content: \"\\f006\";\n}\n.fa-user:before {\n content: \"\\f007\";\n}\n.fa-film:before {\n content: \"\\f008\";\n}\n.fa-th-large:before {\n content: \"\\f009\";\n}\n.fa-th:before {\n content: \"\\f00a\";\n}\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n.fa-check:before {\n content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n.fa-power-off:before {\n content: \"\\f011\";\n}\n.fa-signal:before {\n content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n.fa-home:before {\n content: \"\\f015\";\n}\n.fa-file-o:before {\n content: \"\\f016\";\n}\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n.fa-road:before {\n content: \"\\f018\";\n}\n.fa-download:before {\n content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n.fa-refresh:before {\n content: \"\\f021\";\n}\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n.fa-lock:before {\n content: \"\\f023\";\n}\n.fa-flag:before {\n content: \"\\f024\";\n}\n.fa-headphones:before {\n content: \"\\f025\";\n}\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n.fa-tag:before {\n content: \"\\f02b\";\n}\n.fa-tags:before {\n content: \"\\f02c\";\n}\n.fa-book:before {\n content: \"\\f02d\";\n}\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n.fa-print:before {\n content: \"\\f02f\";\n}\n.fa-camera:before {\n content: \"\\f030\";\n}\n.fa-font:before {\n content: \"\\f031\";\n}\n.fa-bold:before {\n content: \"\\f032\";\n}\n.fa-italic:before {\n content: \"\\f033\";\n}\n.fa-text-height:before {\n content: \"\\f034\";\n}\n.fa-text-width:before {\n content: \"\\f035\";\n}\n.fa-align-left:before {\n content: \"\\f036\";\n}\n.fa-align-center:before {\n content: \"\\f037\";\n}\n.fa-align-right:before {\n content: \"\\f038\";\n}\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n.fa-list:before {\n content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n.fa-indent:before {\n content: \"\\f03c\";\n}\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n.fa-pencil:before {\n content: \"\\f040\";\n}\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n.fa-adjust:before {\n content: \"\\f042\";\n}\n.fa-tint:before {\n content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n.fa-arrows:before {\n content: \"\\f047\";\n}\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n.fa-backward:before {\n content: \"\\f04a\";\n}\n.fa-play:before {\n content: \"\\f04b\";\n}\n.fa-pause:before {\n content: \"\\f04c\";\n}\n.fa-stop:before {\n content: \"\\f04d\";\n}\n.fa-forward:before {\n content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n.fa-eject:before {\n content: \"\\f052\";\n}\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n.fa-ban:before {\n content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n.fa-expand:before {\n content: \"\\f065\";\n}\n.fa-compress:before {\n content: \"\\f066\";\n}\n.fa-plus:before {\n content: \"\\f067\";\n}\n.fa-minus:before {\n content: \"\\f068\";\n}\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n.fa-gift:before {\n content: \"\\f06b\";\n}\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n.fa-fire:before {\n content: \"\\f06d\";\n}\n.fa-eye:before {\n content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n.fa-plane:before {\n content: \"\\f072\";\n}\n.fa-calendar:before {\n content: \"\\f073\";\n}\n.fa-random:before {\n content: \"\\f074\";\n}\n.fa-comment:before {\n content: \"\\f075\";\n}\n.fa-magnet:before {\n content: \"\\f076\";\n}\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n.fa-retweet:before {\n content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n.fa-folder:before {\n content: \"\\f07b\";\n}\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n.fa-key:before {\n content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n.fa-comments:before {\n content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n.fa-star-half:before {\n content: \"\\f089\";\n}\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n.fa-trophy:before {\n content: \"\\f091\";\n}\n.fa-github-square:before {\n content: \"\\f092\";\n}\n.fa-upload:before {\n content: \"\\f093\";\n}\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n.fa-phone:before {\n content: \"\\f095\";\n}\n.fa-square-o:before {\n content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n.fa-twitter:before {\n content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n.fa-github:before {\n content: \"\\f09b\";\n}\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n.fa-square:before {\n content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n.fa-table:before {\n content: \"\\f0ce\";\n}\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n.fa-money:before {\n content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n.fa-columns:before {\n content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n.fa-desktop:before {\n content: \"\\f108\";\n}\n.fa-laptop:before {\n content: \"\\f109\";\n}\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n.fa-spinner:before {\n content: \"\\f110\";\n}\n.fa-circle:before {\n content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n.fa-terminal:before {\n content: \"\\f120\";\n}\n.fa-code:before {\n content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n.fa-crop:before {\n content: \"\\f125\";\n}\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n.fa-question:before {\n content: \"\\f128\";\n}\n.fa-info:before {\n content: \"\\f129\";\n}\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n.fa-microphone:before {\n content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n.fa-shield:before {\n content: \"\\f132\";\n}\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n.fa-rocket:before {\n content: \"\\f135\";\n}\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n.fa-html5:before {\n content: \"\\f13b\";\n}\n.fa-css3:before {\n content: \"\\f13c\";\n}\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n.fa-ticket:before {\n content: \"\\f145\";\n}\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n.fa-level-up:before {\n content: \"\\f148\";\n}\n.fa-level-down:before {\n content: \"\\f149\";\n}\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n.fa-compass:before {\n content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n.fa-gbp:before {\n content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n.fa-file:before {\n content: \"\\f15b\";\n}\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n.fa-youtube:before {\n content: \"\\f167\";\n}\n.fa-xing:before {\n content: \"\\f168\";\n}\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n.fa-adn:before {\n content: \"\\f170\";\n}\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n.fa-apple:before {\n content: \"\\f179\";\n}\n.fa-windows:before {\n content: \"\\f17a\";\n}\n.fa-android:before {\n content: \"\\f17b\";\n}\n.fa-linux:before {\n content: \"\\f17c\";\n}\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n.fa-skype:before {\n content: \"\\f17e\";\n}\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n.fa-trello:before {\n content: \"\\f181\";\n}\n.fa-female:before {\n content: \"\\f182\";\n}\n.fa-male:before {\n content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n.fa-archive:before {\n content: \"\\f187\";\n}\n.fa-bug:before {\n content: \"\\f188\";\n}\n.fa-vk:before {\n content: \"\\f189\";\n}\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n.fa-renren:before {\n content: \"\\f18b\";\n}\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n.fa-slack:before {\n content: \"\\f198\";\n}\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n.fa-openid:before {\n content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n.fa-google:before {\n content: \"\\f1a0\";\n}\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n.fa-language:before {\n content: \"\\f1ab\";\n}\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n.fa-building:before {\n content: \"\\f1ad\";\n}\n.fa-child:before {\n content: \"\\f1ae\";\n}\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n.fa-database:before {\n content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n.fa-git:before {\n content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n.fa-history:before {\n content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n.fa-header:before {\n content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n.fa-at:before {\n content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n.fa-bus:before {\n content: \"\\f207\";\n}\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n.fa-angellist:before {\n content: \"\\f209\";\n}\n.fa-cc:before {\n content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n.fa-diamond:before {\n content: \"\\f219\";\n}\n.fa-ship:before {\n content: \"\\f21a\";\n}\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n.fa-venus:before {\n content: \"\\f221\";\n}\n.fa-mars:before {\n content: \"\\f222\";\n}\n.fa-mercury:before {\n content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n.fa-server:before {\n content: \"\\f233\";\n}\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n.fa-user-times:before {\n content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n.fa-train:before {\n content: \"\\f238\";\n}\n.fa-subway:before {\n content: \"\\f239\";\n}\n.fa-medium:before {\n content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n.fa-object-group:before {\n content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n.fa-clone:before {\n content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n.fa-registered:before {\n content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n.fa-gg:before {\n content: \"\\f260\";\n}\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n.fa-safari:before {\n content: \"\\f267\";\n}\n.fa-chrome:before {\n content: \"\\f268\";\n}\n.fa-firefox:before {\n content: \"\\f269\";\n}\n.fa-opera:before {\n content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n.fa-contao:before {\n content: \"\\f26d\";\n}\n.fa-500px:before {\n content: \"\\f26e\";\n}\n.fa-amazon:before {\n content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n.fa-industry:before {\n content: \"\\f275\";\n}\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n.fa-map-o:before {\n content: \"\\f278\";\n}\n.fa-map:before {\n content: \"\\f279\";\n}\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n.fa-edge:before {\n content: \"\\f282\";\n}\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n.fa-modx:before {\n content: \"\\f285\";\n}\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n.fa-usb:before {\n content: \"\\f287\";\n}\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n.fa-percent:before {\n content: \"\\f295\";\n}\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n.fa-envira:before {\n content: \"\\f299\";\n}\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n.fa-blind:before {\n content: \"\\f29d\";\n}\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n"],"sourceRoot":"../../scss"} \ No newline at end of file +{"version":3,"sources":["lifterlms.css","_includes/_extends.scss","_includes/_grid.scss","_includes/_buttons.scss","_includes/_vars.scss","_includes/_llms-donut.scss","_includes/_mixins.scss","_includes/_tooltip.scss","frontend/_main.scss","frontend/_loop.scss","frontend/_course.scss","frontend/_syllabus.scss","frontend/_llms-progress.scss","frontend/_llms-author.scss","frontend/_reviews.scss","frontend/_notices.scss","frontend/_llms-achievements-certs.scss","frontend/_llms-notifications.scss","frontend/_llms-pagination.scss","frontend/_tooltip.scss","_includes/_quiz-result-question-list.scss","frontend/_llms-quizzes.scss","frontend/_voucher.scss","frontend/_llms-access-plans.scss","frontend/_checkout.scss","_includes/_llms-form-field.scss","frontend/_llms-outline-collapse.scss","frontend/_student-dashboard.scss","frontend/_llms-table.scss","_includes/vendor/_font-awesome.scss"],"names":[],"mappings":"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CE,gBAAA;A7B0tGF;;A6BxtGA;EACE,gBAAA;A7B2tGF;;A6BztGA;EACE,gBAAA;A7B4tGF;;A6B1tGA;EACE,gBAAA;A7B6tGF;;A6B3tGA;EACE,gBAAA;A7B8tGF;;A6B5tGA;EACE,gBAAA;A7B+tGF;;A6B7tGA;EACE,gBAAA;A7BguGF;;A6B9tGA;EACE,gBAAA;A7BiuGF;;A6B/tGA;EACE,gBAAA;A7BkuGF;;A6BhuGA;EACE,gBAAA;A7BmuGF;;A6BjuGA;;;EAGE,gBAAA;A7BouGF;;A6BluGA;EACE,gBAAA;A7BquGF;;A6BnuGA;EACE,gBAAA;A7BsuGF;;A6BpuGA;EACE,gBAAA;A7BuuGF;;A6BruGA;EACE,gBAAA;A7BwuGF;;A6BtuGA;;EAEE,gBAAA;A7ByuGF;;A6BvuGA;EACE,gBAAA;A7B0uGF;;A6BxuGA;EACE,gBAAA;A7B2uGF;;A6BzuGA;EACE,gBAAA;A7B4uGF;;A6B1uGA;EACE,gBAAA;A7B6uGF;;A6B3uGA;EACE,gBAAA;A7B8uGF;;A6B5uGA;EACE,gBAAA;A7B+uGF;;A6B7uGA;EACE,gBAAA;A7BgvGF;;A6B9uGA;EACE,gBAAA;A7BivGF;;A6B/uGA;EACE,gBAAA;A7BkvGF;;A6BhvGA;EACE,gBAAA;A7BmvGF;;A6BjvGA;;EAEE,gBAAA;A7BovGF;;A6BlvGA;EACE,gBAAA;A7BqvGF;;A6BnvGA;EACE,gBAAA;A7BsvGF;;A6BpvGA;EACE,gBAAA;A7BuvGF;;A6BrvGA;EACE,gBAAA;A7BwvGF;;A6BtvGA;EACE,gBAAA;A7ByvGF;;A6BvvGA;EACE,gBAAA;A7B0vGF;;A6BxvGA;EACE,gBAAA;A7B2vGF;;A6BzvGA;EACE,gBAAA;A7B4vGF;;A6B1vGA;EACE,gBAAA;A7B6vGF;;A6B3vGA;EACE,gBAAA;A7B8vGF;;A6B5vGA;EACE,gBAAA;A7B+vGF;;A6B7vGA;EACE,gBAAA;A7BgwGF;;A6B9vGA;EACE,gBAAA;A7BiwGF;;A6B/vGA;EACE,gBAAA;A7BkwGF;;A6BhwGA;EACE,gBAAA;A7BmwGF;;A6BjwGA;EACE,gBAAA;A7BowGF;;A6BlwGA;EACE,gBAAA;A7BqwGF;;A6BnwGA;EACE,gBAAA;A7BswGF;;A6BpwGA;EACE,gBAAA;A7BuwGF;;A6BrwGA;EACE,gBAAA;A7BwwGF;;A6BtwGA;EACE,gBAAA;A7BywGF;;A6BvwGA;EACE,gBAAA;A7B0wGF;;A6BxwGA;EACE,gBAAA;A7B2wGF;;A6BzwGA;EACE,gBAAA;A7B4wGF;;A6B1wGA;EACE,gBAAA;A7B6wGF;;A6B3wGA;EACE,gBAAA;A7B8wGF;;A6B5wGA;;EAEE,gBAAA;A7B+wGF;;A6B7wGA;EACE,gBAAA;A7BgxGF;;A6B9wGA;EACE,gBAAA;A7BixGF;;A6B/wGA;;;EAGE,gBAAA;A7BkxGF;;A6BhxGA;EACE,gBAAA;A7BmxGF;;A6BjxGA;EACE,gBAAA;A7BoxGF;;A6BlxGA;EACE,gBAAA;A7BqxGF;;A6BnxGA;EACE,gBAAA;A7BsxGF;;A6BpxGA;;EAEE,gBAAA;A7BuxGF;;A6BrxGA;EACE,gBAAA;A7BwxGF;;A6BtxGA;EACE,gBAAA;A7ByxGF;;A6BvxGA;EACE,gBAAA;A7B0xGF;;A6BxxGA;EACE,gBAAA;A7B2xGF;;A6BzxGA;EACE,gBAAA;A7B4xGF;;A6B1xGA;EACE,gBAAA;A7B6xGF;;A6B3xGA;EACE,gBAAA;A7B8xGF;;A6B5xGA;EACE,gBAAA;A7B+xGF;;A6B7xGA;EACE,gBAAA;A7BgyGF;;A6B9xGA;EACE,gBAAA;A7BiyGF;;A6B/xGA;EACE,gBAAA;A7BkyGF;;A6BhyGA;EACE,gBAAA;A7BmyGF;;A6BjyGA;EACE,gBAAA;A7BoyGF;;A6BlyGA;EACE,gBAAA;A7BqyGF;;A6BnyGA;EACE,gBAAA;A7BsyGF;;A6BpyGA;EACE,gBAAA;A7BuyGF;;A6BryGA;EACE,gBAAA;A7BwyGF;;A6BtyGA;EACE,gBAAA;A7ByyGF;;A6BvyGA;EACE,gBAAA;A7B0yGF;;A6BxyGA;EACE,gBAAA;A7B2yGF;;A6BzyGA;EACE,gBAAA;A7B4yGF;;A6B1yGA;EACE,gBAAA;A7B6yGF;;A6B3yGA;EACE,gBAAA;A7B8yGF;;A6B5yGA;EACE,gBAAA;A7B+yGF;;A6B7yGA;EACE,gBAAA;A7BgzGF;;A6B9yGA;EACE,gBAAA;A7BizGF;;A6B/yGA;EACE,gBAAA;A7BkzGF;;A6BhzGA;EACE,gBAAA;A7BmzGF;;A6BjzGA;EACE,gBAAA;A7BozGF;;A6BlzGA;;EAEE,gBAAA;A7BqzGF;;A6BnzGA;EACE,gBAAA;A7BszGF;;A6BpzGA;EACE,gBAAA;A7BuzGF;;A6BrzGA;EACE,gBAAA;A7BwzGF;;A6BtzGA;EACE,gBAAA;A7ByzGF;;A6BvzGA;EACE,gBAAA;A7B0zGF;;A6BxzGA;EACE,gBAAA;A7B2zGF;;A6BzzGA;EACE,gBAAA;A7B4zGF;;A6B1zGA;EACE,gBAAA;A7B6zGF;;A6B3zGA;EACE,gBAAA;A7B8zGF;;A6B5zGA;EACE,gBAAA;A7B+zGF;;A6B7zGA;EACE,gBAAA;A7Bg0GF;;A6B9zGA;;EAEE,gBAAA;A7Bi0GF;;A6B/zGA;EACE,gBAAA;A7Bk0GF;;A6Bh0GA;EACE,gBAAA;A7Bm0GF;;A6Bj0GA;EACE,gBAAA;A7Bo0GF;;A6Bl0GA;EACE,gBAAA;A7Bq0GF;;A6Bn0GA;EACE,gBAAA;A7Bs0GF;;A6Bp0GA;EACE,gBAAA;A7Bu0GF;;A6Br0GA;EACE,gBAAA;A7Bw0GF;;A6Bt0GA;EACE,gBAAA;A7By0GF;;A6Bv0GA;EACE,gBAAA;A7B00GF;;A6Bx0GA;EACE,gBAAA;A7B20GF;;A6Bz0GA;EACE,gBAAA;A7B40GF;;A6B10GA;EACE,gBAAA;A7B60GF;;A6B30GA;EACE,gBAAA;A7B80GF;;A6B50GA;;EAEE,gBAAA;A7B+0GF;;A6B70GA;EACE,gBAAA;A7Bg1GF;;A6B90GA;EACE,gBAAA;A7Bi1GF;;A6B/0GA;EACE,gBAAA;A7Bk1GF;;A6Bh1GA;EACE,gBAAA;A7Bm1GF;;A6Bj1GA;;EAEE,gBAAA;A7Bo1GF;;A6Bl1GA;EACE,gBAAA;A7Bq1GF;;A6Bn1GA;EACE,gBAAA;A7Bs1GF;;A6Bp1GA;EACE,gBAAA;A7Bu1GF;;A6Br1GA;EACE,gBAAA;A7Bw1GF;;A6Bt1GA;EACE,gBAAA;A7By1GF;;A6Bv1GA;EACE,gBAAA;A7B01GF;;A6Bx1GA;EACE,gBAAA;A7B21GF;;A6Bz1GA;EACE,gBAAA;A7B41GF;;A6B11GA;EACE,gBAAA;A7B61GF;;A6B31GA;EACE,gBAAA;A7B81GF;;A6B51GA;EACE,gBAAA;A7B+1GF;;A6B71GA;EACE,gBAAA;A7Bg2GF;;A6B91GA;EACE,gBAAA;A7Bi2GF;;A6B/1GA;EACE,gBAAA;A7Bk2GF;;A6Bh2GA;EACE,gBAAA;A7Bm2GF;;A6Bj2GA;EACE,gBAAA;A7Bo2GF;;A6Bl2GA;EACE,gBAAA;A7Bq2GF;;A6Bn2GA;EACE,gBAAA;A7Bs2GF;;A6Bp2GA;EACE,gBAAA;A7Bu2GF;;A6Br2GA;;EAEE,gBAAA;A7Bw2GF;;A6Bt2GA;EACE,gBAAA;A7By2GF;;A6Bv2GA;EACE,gBAAA;A7B02GF;;A6Bx2GA;EACE,gBAAA;A7B22GF;;A6Bz2GA;;EAEE,gBAAA;A7B42GF;;A6B12GA;EACE,gBAAA;A7B62GF;;A6B32GA;EACE,gBAAA;A7B82GF;;A6B52GA;EACE,gBAAA;A7B+2GF;;A6B72GA;EACE,gBAAA;A7Bg3GF;;A6B92GA;EACE,gBAAA;A7Bi3GF;;A6B/2GA;EACE,gBAAA;A7Bk3GF;;A6Bh3GA;EACE,gBAAA;A7Bm3GF;;A6Bj3GA;EACE,gBAAA;A7Bo3GF;;A6Bl3GA;EACE,gBAAA;A7Bq3GF;;A6Bn3GA;EACE,gBAAA;A7Bs3GF;;A6Bp3GA;EACE,gBAAA;A7Bu3GF;;A6Br3GA;EACE,gBAAA;A7Bw3GF;;A6Bt3GA;EACE,gBAAA;A7By3GF;;A6Bv3GA;EACE,gBAAA;A7B03GF;;A6Bx3GA;EACE,gBAAA;A7B23GF;;A6Bz3GA;EACE,gBAAA;A7B43GF;;A6B13GA;EACE,gBAAA;A7B63GF;;A6B33GA;EACE,gBAAA;A7B83GF;;A6B53GA;;EAEE,gBAAA;A7B+3GF;;A6B73GA;;EAEE,gBAAA;A7Bg4GF;;A6B93GA;EACE,gBAAA;A7Bi4GF;;A6B/3GA;EACE,gBAAA;A7Bk4GF;;A6Bh4GA;;EAEE,gBAAA;A7Bm4GF;;A6Bj4GA;;EAEE,gBAAA;A7Bo4GF;;A6Bl4GA;EACE,gBAAA;A7Bq4GF;;A6Bn4GA;;EAEE,gBAAA;A7Bs4GF;;A6Bp4GA;EACE,gBAAA;A7Bu4GF;;A6Br4GA;;;EAGE,gBAAA;A7Bw4GF;;A6Bt4GA;EACE,gBAAA;A7By4GF;;A6Bv4GA;EACE,gBAAA;A7B04GF;;A6Bx4GA;EACE,gBAAA;A7B24GF;;A6Bz4GA;EACE,gBAAA;A7B44GF;;A6B14GA;EACE,gBAAA;A7B64GF;;A6B34GA;EACE,gBAAA;A7B84GF;;A6B54GA;EACE,gBAAA;A7B+4GF;;A6B74GA;EACE,gBAAA;A7Bg5GF;;A6B94GA;EACE,gBAAA;A7Bi5GF;;A6B/4GA;EACE,gBAAA;A7Bk5GF;;A6Bh5GA;EACE,gBAAA;A7Bm5GF;;A6Bj5GA;EACE,gBAAA;A7Bo5GF;;A6Bl5GA;EACE,gBAAA;A7Bq5GF;;A6Bn5GA;EACE,gBAAA;A7Bs5GF;;A6Bp5GA;EACE,gBAAA;A7Bu5GF;;A6Br5GA;EACE,gBAAA;A7Bw5GF;;A6Bt5GA;EACE,gBAAA;A7By5GF;;A6Bv5GA;;EAEE,gBAAA;A7B05GF;;A6Bx5GA;;EAEE,gBAAA;A7B25GF;;A6Bz5GA;;EAEE,gBAAA;A7B45GF;;A6B15GA;EACE,gBAAA;A7B65GF;;A6B35GA;EACE,gBAAA;A7B85GF;;A6B55GA;;EAEE,gBAAA;A7B+5GF;;A6B75GA;;EAEE,gBAAA;A7Bg6GF;;A6B95GA;;EAEE,gBAAA;A7Bi6GF;;A6B/5GA;EACE,gBAAA;A7Bk6GF;;A6Bh6GA;EACE,gBAAA;A7Bm6GF;;A6Bj6GA;;EAEE,gBAAA;A7Bo6GF;;A6Bl6GA;EACE,gBAAA;A7Bq6GF;;A6Bn6GA;EACE,gBAAA;A7Bs6GF;;A6Bp6GA;;EAEE,gBAAA;A7Bu6GF;;A6Br6GA;EACE,gBAAA;A7Bw6GF;;A6Bt6GA;EACE,gBAAA;A7By6GF;;A6Bv6GA;EACE,gBAAA;A7B06GF;;A6Bx6GA;EACE,gBAAA;A7B26GF;;A6Bz6GA;EACE,gBAAA;A7B46GF;;A6B16GA;EACE,gBAAA;A7B66GF;;A6B36GA;EACE,gBAAA;A7B86GF;;A6B56GA;EACE,gBAAA;A7B+6GF;;A6B76GA;EACE,gBAAA;A7Bg7GF;;A6B96GA;EACE,gBAAA;A7Bi7GF;;A6B/6GA;EACE,gBAAA;A7Bk7GF;;A6Bh7GA;EACE,gBAAA;A7Bm7GF;;A6Bj7GA;EACE,gBAAA;A7Bo7GF;;A6Bl7GA;EACE,gBAAA;A7Bq7GF;;A6Bn7GA;EACE,gBAAA;A7Bs7GF;;A6Bp7GA;EACE,gBAAA;A7Bu7GF;;A6Br7GA;EACE,gBAAA;A7Bw7GF;;A6Bt7GA;EACE,gBAAA;A7By7GF;;A6Bv7GA;EACE,gBAAA;A7B07GF;;A6Bx7GA;EACE,gBAAA;A7B27GF;;A6Bz7GA;EACE,gBAAA;A7B47GF;;A6B17GA;EACE,gBAAA;A7B67GF;;A6B37GA;EACE,gBAAA;A7B87GF;;A6B57GA;EACE,gBAAA;A7B+7GF;;A6B77GA;EACE,gBAAA;A7Bg8GF;;A6B97GA;EACE,gBAAA;A7Bi8GF;;A6B/7GA;EACE,gBAAA;A7Bk8GF;;A6Bh8GA;EACE,gBAAA;A7Bm8GF;;A6Bj8GA;EACE,gBAAA;A7Bo8GF;;A6Bl8GA;EACE,gBAAA;A7Bq8GF;;A6Bn8GA;;EAEE,gBAAA;A7Bs8GF;;A6Bp8GA;EACE,gBAAA;A7Bu8GF;;A6Br8GA;EACE,gBAAA;A7Bw8GF;;A6Bt8GA;EACE,gBAAA;A7By8GF;;A6Bv8GA;EACE,gBAAA;A7B08GF;;A6Bx8GA;EACE,gBAAA;A7B28GF;;A6Bz8GA;;EAEE,gBAAA;A7B48GF;;A6B18GA;EACE,gBAAA;A7B68GF;;A6B38GA;EACE,gBAAA;A7B88GF;;A6B58GA;EACE,gBAAA;A7B+8GF;;A6B78GA;EACE,gBAAA;A7Bg9GF;;A6B98GA;EACE,gBAAA;A7Bi9GF;;A6B/8GA;EACE,gBAAA;A7Bk9GF;;A6Bh9GA;EACE,gBAAA;A7Bm9GF;;A6Bj9GA;EACE,gBAAA;A7Bo9GF;;A6Bl9GA;EACE,gBAAA;A7Bq9GF;;A6Bn9GA;EACE,gBAAA;A7Bs9GF;;A6Bp9GA;EACE,gBAAA;A7Bu9GF;;A6Br9GA;EACE,gBAAA;A7Bw9GF;;A6Bt9GA;;EAEE,gBAAA;A7By9GF;;A6Bv9GA;;;EAGE,gBAAA;A7B09GF;;A6Bx9GA;EACE,gBAAA;A7B29GF;;A6Bz9GA;EACE,gBAAA;A7B49GF;;A6B19GA;EACE,gBAAA;A7B69GF;;A6B39GA;;EAEE,gBAAA;A7B89GF;;A6B59GA;EACE,gBAAA;A7B+9GF;;A6B79GA;EACE,gBAAA;A7Bg+GF;;A6B99GA;EACE,gBAAA;A7Bi+GF;;A6B/9GA;EACE,gBAAA;A7Bk+GF;;A6Bh+GA;EACE,gBAAA;A7Bm+GF;;A6Bj+GA;EACE,gBAAA;A7Bo+GF;;A6Bl+GA;EACE,gBAAA;A7Bq+GF;;A6Bn+GA;EACE,gBAAA;A7Bs+GF;;A6Bp+GA;EACE,gBAAA;A7Bu+GF;;A6Br+GA;EACE,gBAAA;A7Bw+GF;;A6Bt+GA;EACE,gBAAA;A7By+GF;;A6Bv+GA;EACE,gBAAA;A7B0+GF;;A6Bx+GA;EACE,gBAAA;A7B2+GF;;A6Bz+GA;EACE,gBAAA;A7B4+GF;;A6B1+GA;EACE,gBAAA;A7B6+GF;;A6B3+GA;EACE,gBAAA;A7B8+GF;;A6B5+GA;EACE,gBAAA;A7B++GF;;A6B7+GA;EACE,gBAAA;A7Bg/GF;;A6B9+GA;EACE,gBAAA;A7Bi/GF;;A6B/+GA;EACE,gBAAA;A7Bk/GF;;A6Bh/GA;EACE,gBAAA;A7Bm/GF;;A6Bj/GA;EACE,gBAAA;A7Bo/GF;;A6Bl/GA;EACE,gBAAA;A7Bq/GF;;A6Bn/GA;EACE,gBAAA;A7Bs/GF;;A6Bp/GA;EACE,gBAAA;A7Bu/GF;;A6Br/GA;EACE,gBAAA;A7Bw/GF;;A6Bt/GA;EACE,gBAAA;A7By/GF;;A6Bv/GA;EACE,gBAAA;A7B0/GF;;A6Bx/GA;EACE,gBAAA;A7B2/GF;;A6Bz/GA;EACE,gBAAA;A7B4/GF;;A6B1/GA;EACE,gBAAA;A7B6/GF;;A6B3/GA;EACE,gBAAA;A7B8/GF;;A6B5/GA;EACE,gBAAA;A7B+/GF;;A6B7/GA;EACE,gBAAA;A7BggHF;;A6B9/GA;EACE,gBAAA;A7BigHF;;A6B//GA;EACE,gBAAA;A7BkgHF;;A6BhgHA;EACE,gBAAA;A7BmgHF;;A6BjgHA;;EAEE,gBAAA;A7BogHF;;A6BlgHA;;EAEE,gBAAA;A7BqgHF;;A6BngHA;;EAEE,gBAAA;A7BsgHF;;A6BpgHA;;EAEE,gBAAA;A7BugHF;;A6BrgHA;EACE,gBAAA;A7BwgHF;;A6BtgHA;;EAEE,gBAAA;A7BygHF;;A6BvgHA;;EAEE,gBAAA;A7B0gHF;;A6BxgHA;;;;EAIE,gBAAA;A7B2gHF;;A6BzgHA;;;EAGE,gBAAA;A7B4gHF;;A6B1gHA;;EAEE,gBAAA;A7B6gHF;;A6B3gHA;;EAEE,gBAAA;A7B8gHF;;A6B5gHA;EACE,gBAAA;A7B+gHF;;A6B7gHA;EACE,gBAAA;A7BghHF;;A6B9gHA;EACE,gBAAA;A7BihHF;;A6B/gHA;EACE,gBAAA;A7BkhHF;;A6BhhHA;EACE,gBAAA;A7BmhHF;;A6BjhHA;EACE,gBAAA;A7BohHF;;A6BlhHA;EACE,gBAAA;A7BqhHF;;A6BnhHA;EACE,gBAAA;A7BshHF;;A6BphHA;EACE,gBAAA;A7BuhHF;;A6BrhHA;EACE,gBAAA;A7BwhHF;;A6BthHA;EACE,gBAAA;A7ByhHF;;A6BvhHA;EACE,gBAAA;A7B0hHF;;A6BxhHA;EACE,gBAAA;A7B2hHF;;A6BzhHA;EACE,gBAAA;A7B4hHF;;A6B1hHA;EACE,gBAAA;A7B6hHF;;A6B3hHA;EACE,gBAAA;A7B8hHF;;A6B5hHA;EACE,gBAAA;A7B+hHF;;A6B7hHA;EACE,gBAAA;A7BgiHF;;A6B9hHA;EACE,gBAAA;A7BiiHF;;A6B/hHA;EACE,gBAAA;A7BkiHF;;A6BhiHA;EACE,gBAAA;A7BmiHF;;A6BjiHA;EACE,gBAAA;A7BoiHF;;A6BliHA;EACE,gBAAA;A7BqiHF;;A6BniHA;EACE,gBAAA;A7BsiHF;;A6BpiHA;EACE,gBAAA;A7BuiHF;;A6BriHA;EACE,gBAAA;A7BwiHF;;A6BtiHA;EACE,gBAAA;A7ByiHF;;A6BviHA;EACE,gBAAA;A7B0iHF;;A6BxiHA;EACE,gBAAA;A7B2iHF;;A6BziHA;EACE,gBAAA;A7B4iHF;;A6B1iHA;EACE,gBAAA;A7B6iHF;;A6B3iHA;EACE,gBAAA;A7B8iHF;;A6B5iHA;EACE,gBAAA;A7B+iHF;;A6B7iHA;EACE,gBAAA;A7BgjHF;;A6B9iHA;EACE,gBAAA;A7BijHF;;A6B/iHA;EACE,gBAAA;A7BkjHF;;A6BhjHA;EACE,gBAAA;A7BmjHF;;A6BjjHA;EACE,gBAAA;A7BojHF;;A6BljHA;;EAEE,gBAAA;A7BqjHF;;A6BnjHA;EACE,gBAAA;A7BsjHF;;A6BpjHA;EACE,gBAAA;A7BujHF;;A6BrjHA;EACE,gBAAA;A7BwjHF;;A6BtjHA;EACE,gBAAA;A7ByjHF;;A6BvjHA;EACE,gBAAA;A7B0jHF;;A6BxjHA;EACE,gBAAA;A7B2jHF;;A6BzjHA;EACE,gBAAA;A7B4jHF;;A6B1jHA;EACE,gBAAA;A7B6jHF;;A6B3jHA;EACE,gBAAA;A7B8jHF;;A6B5jHA;EACE,gBAAA;A7B+jHF;;A6B7jHA;EACE,gBAAA;A7BgkHF;;A6B9jHA;;EAEE,gBAAA;A7BikHF;;A6B/jHA;EACE,gBAAA;A7BkkHF;;A6BhkHA;EACE,gBAAA;A7BmkHF;;A6BjkHA;EACE,gBAAA;A7BokHF;;A6BlkHA;;EAEE,gBAAA;A7BqkHF;;A6BnkHA;EACE,gBAAA;A7BskHF;;A6BpkHA;EACE,gBAAA;A7BukHF;;A6BrkHA;EACE,gBAAA;A7BwkHF;;A6BtkHA;EACE,gBAAA;A7BykHF;;A6BvkHA;EACE,gBAAA;A7B0kHF;;A6BxkHA;EACE,gBAAA;A7B2kHF;;A6BzkHA;;;EAGE,gBAAA;A7B4kHF;;A6B1kHA;;EAEE,gBAAA;A7B6kHF;;A6B3kHA;EACE,gBAAA;A7B8kHF;;A6B5kHA;EACE,gBAAA;A7B+kHF;;A6B7kHA;EACE,gBAAA;A7BglHF;;A6B9kHA;EACE,gBAAA;A7BilHF;;A6B/kHA;EACE,gBAAA;A7BklHF;;A6BhlHA;EACE,gBAAA;A7BmlHF;;A6BjlHA;EACE,gBAAA;A7BolHF;;A6BllHA;EACE,gBAAA;A7BqlHF;;A6BnlHA;EACE,gBAAA;A7BslHF;;A6BplHA;EACE,gBAAA;A7BulHF;;A6BrlHA;EACE,gBAAA;A7BwlHF;;A6BtlHA;EACE,gBAAA;A7BylHF;;A6BvlHA;EACE,gBAAA;A7B0lHF;;A6BxlHA;EACE,gBAAA;A7B2lHF;;A6BzlHA;EACE,gBAAA;A7B4lHF;;A6B1lHA;EACE,gBAAA;A7B6lHF;;A6B3lHA;EACE,gBAAA;A7B8lHF;;A6B5lHA;EACE,gBAAA;A7B+lHF;;A6B7lHA;EACE,gBAAA;A7BgmHF;;A6B9lHA;EACE,gBAAA;A7BimHF;;A6B/lHA;EACE,gBAAA;A7BkmHF;;A6BhmHA;EACE,gBAAA;A7BmmHF;;A6BjmHA;EACE,gBAAA;A7BomHF;;A6BlmHA;EACE,gBAAA;A7BqmHF;;A6BnmHA;EACE,gBAAA;A7BsmHF;;A6BpmHA;;EAEE,gBAAA;A7BumHF;;A6BrmHA;;EAEE,gBAAA;A7BwmHF;;A6BtmHA;EACE,gBAAA;A7BymHF;;A6BvmHA;EACE,gBAAA;A7B0mHF;;A6BxmHA;EACE,gBAAA;A7B2mHF;;A6BzmHA;EACE,gBAAA;A7B4mHF;;A6B1mHA;EACE,gBAAA;A7B6mHF;;A6B3mHA;EACE,gBAAA;A7B8mHF;;A6B5mHA;EACE,gBAAA;A7B+mHF;;A6B7mHA;EACE,gBAAA;A7BgnHF;;A6B9mHA;EACE,gBAAA;A7BinHF;;A6B/mHA;;;EAGE,gBAAA;A7BknHF;;A6BhnHA;;EAEE,gBAAA;A7BmnHF;;A6BjnHA;;EAEE,gBAAA;A7BonHF;;A6BlnHA;;EAEE,gBAAA;A7BqnHF;;A6BnnHA;EACE,gBAAA;A7BsnHF;;A6BpnHA;EACE,gBAAA;A7BunHF;;A6BrnHA;EACE,gBAAA;A7BwnHF;;A6BtnHA;EACE,gBAAA;A7BynHF;;A6BvnHA;;;;;EAKE,gBAAA;A7B0nHF;;A6BxnHA;EACE,gBAAA;A7B2nHF;;A6BznHA;;;EAGE,gBAAA;A7B4nHF;;A6B1nHA;;EAEE,gBAAA;A7B6nHF;;A6B3nHA;EACE,gBAAA;A7B8nHF;;A6B5nHA;EACE,gBAAA;A7B+nHF;;A6B7nHA;;;EAGE,gBAAA;A7BgoHF;;A6B9nHA;EACE,gBAAA;A7BioHF;;A6B/nHA;EACE,gBAAA;A7BkoHF;;A6BhoHA;;EAEE,gBAAA;A7BmoHF;;A6BjoHA;;EAEE,gBAAA;A7BooHF;;A6BloHA;;EAEE,gBAAA;A7BqoHF;;A6BnoHA;EACE,gBAAA;A7BsoHF;;A6BpoHA;EACE,gBAAA;A7BuoHF;;A6BroHA;EACE,gBAAA;A7BwoHF;;A6BtoHA;EACE,gBAAA;A7ByoHF;;A6BvoHA;EACE,gBAAA;A7B0oHF;;A6BxoHA;EACE,gBAAA;A7B2oHF;;A6BzoHA;EACE,gBAAA;A7B4oHF;;A6B1oHA;EACE,gBAAA;A7B6oHF;;A6B3oHA;;EAEE,gBAAA;A7B8oHF;;A6B5oHA;EACE,gBAAA;A7B+oHF;;A6B7oHA;EACE,gBAAA;A7BgpHF;;A6B9oHA;EACE,gBAAA;A7BipHF;;A6B/oHA;EACE,gBAAA;A7BkpHF;;A6BhpHA;EACE,gBAAA;A7BmpHF;;A6BjpHA;EACE,gBAAA;A7BopHF;;A6BlpHA;EACE,gBAAA;A7BqpHF;;A6BnpHA;EACE,gBAAA;A7BspHF;;A6BppHA;EACE,gBAAA;A7BupHF;;A6BrpHA;EACE,gBAAA;A7BwpHF;;A6BtpHA;EACE,gBAAA;A7BypHF;;A6BvpHA;EACE,gBAAA;A7B0pHF;;A6BxpHA;EACE,gBAAA;A7B2pHF;;A6BzpHA;EACE,gBAAA;A7B4pHF;;A6B1pHA;EACE,gBAAA;A7B6pHF;;A6B3pHA;EACE,gBAAA;A7B8pHF;;A6B5pHA;EACE,gBAAA;A7B+pHF;;A6B7pHA;EACE,gBAAA;A7BgqHF;;A6B9pHA;EACE,gBAAA;A7BiqHF;;A6B/pHA;EACE,gBAAA;A7BkqHF;;A6BhqHA;EACE,gBAAA;A7BmqHF;;A6BjqHA;EACE,gBAAA;A7BoqHF;;A6BlqHA;EACE,gBAAA;A7BqqHF;;A6BnqHA;EACE,gBAAA;A7BsqHF;;A6BpqHA;EACE,gBAAA;A7BuqHF;;A6BrqHA;EACE,gBAAA;A7BwqHF;;A6BtqHA;EACE,gBAAA;A7ByqHF;;A6BvqHA;EACE,gBAAA;A7B0qHF;;A6BxqHA;EACE,gBAAA;A7B2qHF;;A6BzqHA;EACE,gBAAA;A7B4qHF;;A6B1qHA;EACE,gBAAA;A7B6qHF;;A6B3qHA;EACE,gBAAA;A7B8qHF;;A6B5qHA;EACE,gBAAA;A7B+qHF;;A6B7qHA;EACE,gBAAA;A7BgrHF;;A6B9qHA;EACE,gBAAA;A7BirHF;;A6B/qHA;EACE,gBAAA;A7BkrHF;;A6BhrHA;EACE,gBAAA;A7BmrHF;;A6BjrHA;;;EAGE,gBAAA;A7BorHF;;A6BlrHA;EACE,gBAAA;A7BqrHF;;A6BnrHA;EACE,gBAAA;A7BsrHF;;A6BprHA;EACE,gBAAA;A7BurHF;;A6BrrHA;EACE,gBAAA;A7BwrHF;;A6BtrHA;EACE,gBAAA;A7ByrHF;;A6BvrHA;EACE,gBAAA;A7B0rHF;;A6BxrHA;EACE,gBAAA;A7B2rHF;;A6BzrHA;EACE,gBAAA;A7B4rHF;;A6B1rHA;EACE,gBAAA;A7B6rHF;;A6B3rHA;EACE,gBAAA;A7B8rHF;;A6B5rHA;EACE,gBAAA;A7B+rHF;;A6B7rHA;EACE,gBAAA;A7BgsHF;;A6B9rHA;EACE,gBAAA;A7BisHF;;A6B/rHA;EACE,gBAAA;A7BksHF;;A6BhsHA;EACE,gBAAA;A7BmsHF;;A6BjsHA;EACE,gBAAA;A7BosHF;;A6BlsHA;EACE,gBAAA;A7BqsHF;;A6BnsHA;EACE,gBAAA;A7BssHF;;A6BpsHA;EACE,gBAAA;A7BusHF;;A6BrsHA;EACE,gBAAA;A7BwsHF;;A6BtsHA;EACE,gBAAA;A7BysHF;;A6BvsHA;;EAEE,gBAAA;A7B0sHF;;A6BxsHA;EACE,gBAAA;A7B2sHF;;A6BzsHA;EACE,gBAAA;A7B4sHF;;A6B1sHA;EACE,gBAAA;A7B6sHF;;A6B3sHA;EACE,gBAAA;A7B8sHF;;A6B5sHA;EACE,gBAAA;A7B+sHF;;A6B7sHA;EACE,gBAAA;A7BgtHF;;A6B9sHA;EACE,gBAAA;A7BitHF;;A6B/sHA;EACE,gBAAA;A7BktHF;;A6BhtHA;EACE,gBAAA;A7BmtHF;;A6BjtHA;EACE,gBAAA;A7BotHF;;A6BltHA;EACE,gBAAA;A7BqtHF;;A6BntHA;EACE,gBAAA;A7BstHF;;A6BptHA;EACE,gBAAA;A7ButHF;;A6BrtHA;EACE,gBAAA;A7BwtHF;;A6BttHA;EACE,gBAAA;A7BytHF;;A6BvtHA;;EAEE,gBAAA;A7B0tHF;;A6BxtHA;EACE,gBAAA;A7B2tHF;;A6BztHA;EACE,gBAAA;A7B4tHF;;A6B1tHA;EACE,gBAAA;A7B6tHF;;A6B3tHA;EACE,gBAAA;A7B8tHF;;A6B5tHA;;EAEE,gBAAA;A7B+tHF;;A6B7tHA;EACE,gBAAA;A7BguHF;;A6B9tHA;EACE,gBAAA;A7BiuHF;;A6B/tHA;EACE,gBAAA;A7BkuHF;;A6BhuHA;;;EAGE,gBAAA;A7BmuHF;;A6BjuHA;;EAEE,gBAAA;A7BouHF;;A6BluHA;;EAEE,gBAAA;A7BquHF;;A6BnuHA;;EAEE,gBAAA;A7BsuHF;;A6BpuHA;;EAEE,gBAAA;A7BuuHF;;A6BruHA;EACE,gBAAA;A7BwuHF;;A6BtuHA;EACE,gBAAA;A7ByuHF;;A6BvuHA;EACE,gBAAA;A7B0uHF;;A6BxuHA;EACE,gBAAA;A7B2uHF;;A6BzuHA;EACE,gBAAA;A7B4uHF;;A6B1uHA;EACE,gBAAA;A7B6uHF;;A6B3uHA;EACE,gBAAA;A7B8uHF;;A6B5uHA;EACE,gBAAA;A7B+uHF;;A6B7uHA;EACE,gBAAA;A7BgvHF;;A6B9uHA;EACE,gBAAA;A7BivHF;;A6B/uHA;EACE,gBAAA;A7BkvHF;;A6BhvHA;;EAEE,gBAAA;A7BmvHF;;A6BjvHA;;EAEE,gBAAA;A7BovHF;;A6BlvHA;;EAEE,gBAAA;A7BqvHF;;A6BnvHA;EACE,gBAAA;A7BsvHF;;A6BpvHA;;EAEE,gBAAA;A7BuvHF;;A6BrvHA;;EAEE,gBAAA;A7BwvHF;;A6BtvHA;EACE,gBAAA;A7ByvHF;;A6BvvHA;EACE,gBAAA;A7B0vHF;;A6BxvHA;EACE,gBAAA;A7B2vHF;;A6BzvHA;EACE,gBAAA;A7B4vHF;;A6B1vHA;EACE,gBAAA;A7B6vHF;;A6B3vHA;EACE,gBAAA;A7B8vHF;;A6B5vHA;EACE,gBAAA;A7B+vHF;;A6B7vHA;EACE,gBAAA;A7BgwHF;;A6B9vHA;EACE,gBAAA;A7BiwHF;;A6B/vHA;EACE,gBAAA;A7BkwHF;;A6BhwHA;EACE,gBAAA;A7BmwHF;;A6BjwHA;EACE,gBAAA;A7BowHF;;A6BlwHA;EACE,gBAAA;A7BqwHF;;A6BnwHA;EACE,gBAAA;A7BswHF;;A6BpwHA;EACE,gBAAA;A7BuwHF;;A6BrwHA;EACE,gBAAA;A7BwwHF;;A6BtwHA;EACE,gBAAA;A7BywHF;;A6BvwHA;EACE,gBAAA;A7B0wHF;;A6BxwHA;EACE,gBAAA;A7B2wHF;;A6BzwHA;EACE,gBAAA;A7B4wHF;;A6B1wHA;;EAEE,gBAAA;A7B6wHF;;A6B3wHA;EACE,gBAAA;A7B8wHF;;A6B5wHA;EACE,gBAAA;A7B+wHF;;A6B7wHA;EACE,gBAAA;A7BgxHF;;A6B9wHA;EACE,gBAAA;A7BixHF;;A6B/wHA;EACE,gBAAA;A7BkxHF;;A6BhxHA;EACE,gBAAA;A7BmxHF;;A6BjxHA;EACE,gBAAA;A7BoxHF;;A6BlxHA;EACE,gBAAA;A7BqxHF;;A6BnxHA;EACE,gBAAA;A7BsxHF;;A6BpxHA;EACE,gBAAA;A7BuxHF;;A6BrxHA;EACE,gBAAA;A7BwxHF;;A6BtxHA;EACE,gBAAA;A7ByxHF;;A6BvxHA;EACE,gBAAA;A7B0xHF;;A6BxxHA;EACE,gBAAA;A7B2xHF;;A6BzxHA;EACE,gBAAA;A7B4xHF;;A6B1xHA;EACE,gBAAA;A7B6xHF;;A6B3xHA;EACE,gBAAA;A7B8xHF;;A6B5xHA;EACE,gBAAA;A7B+xHF;;A6B7xHA;EACE,gBAAA;A7BgyHF;;A6B9xHA;EACE,gBAAA;A7BiyHF;;A6B/xHA;EACE,gBAAA;A7BkyHF;;A6BhyHA;EACE,gBAAA;A7BmyHF;;A6BjyHA;EACE,gBAAA;A7BoyHF;;A6BlyHA;EACE,gBAAA;A7BqyHF;;A6BnyHA;EACE,gBAAA;A7BsyHF;;A6BpyHA;EACE,gBAAA;A7BuyHF;;A6BryHA;EACE,gBAAA;A7BwyHF;;A6BtyHA;EACE,gBAAA;A7ByyHF;;A6BvyHA;EACE,gBAAA;A7B0yHF;;A6BxyHA;EACE,gBAAA;A7B2yHF;;A6BzyHA;EACE,gBAAA;A7B4yHF;;A6B1yHA;EACE,gBAAA;A7B6yHF;;A6B3yHA;EACE,gBAAA;A7B8yHF;;A6B5yHA;EACE,gBAAA;A7B+yHF;;A6B7yHA;EACE,gBAAA;A7BgzHF;;A6B9yHA;EACE,gBAAA;A7BizHF;;A6B/yHA;EACE,gBAAA;A7BkzHF;;A6BhzHA;EACE,gBAAA;A7BmzHF;;A6BjzHA;EACE,gBAAA;A7BozHF;;A6BlzHA;EACE,gBAAA;A7BqzHF;;A6BnzHA;EACE,gBAAA;A7BszHF;;A6BpzHA;EACE,gBAAA;A7BuzHF;;A6BrzHA;EACE,gBAAA;A7BwzHF;;A6BtzHA;EACE,gBAAA;A7ByzHF;;A6BvzHA;EACE,gBAAA;A7B0zHF;;A6BxzHA;EACE,gBAAA;A7B2zHF;;A6BzzHA;EACE,gBAAA;A7B4zHF;;A6B1zHA;EACE,gBAAA;A7B6zHF;;A6B3zHA;EACE,gBAAA;A7B8zHF;;A6B5zHA;EACE,gBAAA;A7B+zHF;;A6B7zHA;;EAEE,gBAAA;A7Bg0HF;;A6B9zHA;;;EAGE,gBAAA;A7Bi0HF;;A6B/zHA;EACE,gBAAA;A7Bk0HF;;A6Bh0HA;EACE,gBAAA;A7Bm0HF;;A6Bj0HA;;EAEE,gBAAA;A7Bo0HF;;A6Bl0HA;EACE,gBAAA;A7Bq0HF;;A6Bn0HA;EACE,gBAAA;A7Bs0HF;;A6Bp0HA;EACE,gBAAA;A7Bu0HF;;A6Br0HA;EACE,gBAAA;A7Bw0HF;;A6Bt0HA;EACE,gBAAA;A7By0HF;;A6Bv0HA;EACE,gBAAA;A7B00HF;;A6Bx0HA;EACE,gBAAA;A7B20HF;;A6Bz0HA;EACE,gBAAA;A7B40HF;;A6B10HA;EACE,gBAAA;A7B60HF;;A6B30HA;EACE,gBAAA;A7B80HF;;A6B50HA;;EAEE,gBAAA;A7B+0HF;;A6B70HA;;EAEE,gBAAA;A7Bg1HF;;A6B90HA;EACE,gBAAA;A7Bi1HF;;A6B/0HA;EACE,gBAAA;A7Bk1HF;;A6Bh1HA;EACE,gBAAA;A7Bm1HF;;A6Bj1HA;EACE,gBAAA;A7Bo1HF;;A6Bl1HA;EACE,gBAAA;A7Bq1HF;;A6Bn1HA;EACE,gBAAA;A7Bs1HF;;A6Bp1HA;;EAEE,gBAAA;A7Bu1HF;;A6Br1HA;;EAEE,gBAAA;A7Bw1HF;;A6Bt1HA;EACE,gBAAA;A7By1HF;;A6Bv1HA;EACE,gBAAA;A7B01HF;;A6Bx1HA;EACE,gBAAA;A7B21HF;;A6Bz1HA;EACE,gBAAA;A7B41HF;;A6B11HA;;EAEE,gBAAA;A7B61HF;;A6B31HA;;EAEE,gBAAA;A7B81HF;;A6B51HA;EACE,gBAAA;A7B+1HF;;A6B71HA;EACE,gBAAA;A7Bg2HF;;A6B91HA;EACE,gBAAA;A7Bi2HF;;A6B/1HA;;;EAGE,gBAAA;A7Bk2HF;;A6Bh2HA;;EAEE,gBAAA;A7Bm2HF;;A6Bj2HA;;EAEE,gBAAA;A7Bo2HF;;A6Bl2HA;;EAEE,gBAAA;A7Bq2HF;;A6Bn2HA;;EAEE,gBAAA;A7Bs2HF;;A6Bp2HA;EACE,gBAAA;A7Bu2HF;;A6Br2HA;;;EAGE,gBAAA;A7Bw2HF;;A6Bt2HA;EACE,gBAAA;A7By2HF;;A6Bv2HA;EACE,gBAAA;A7B02HF;;A6Bx2HA;EACE,gBAAA;A7B22HF;;A6Bz2HA;EACE,gBAAA;A7B42HF;;A6B12HA;;EAEE,gBAAA;A7B62HF;;A6B32HA;;EAEE,gBAAA;A7B82HF;;A6B52HA;EACE,gBAAA;A7B+2HF;;A6B72HA;EACE,gBAAA;A7Bg3HF;;A6B92HA;EACE,gBAAA;A7Bi3HF;;A6B/2HA;EACE,gBAAA;A7Bk3HF;;A6Bh3HA;EACE,gBAAA;A7Bm3HF;;A6Bj3HA;EACE,gBAAA;A7Bo3HF;;A6Bl3HA;EACE,gBAAA;A7Bq3HF;;A6Bn3HA;EACE,gBAAA;A7Bs3HF;;A6Bp3HA;EACE,gBAAA;A7Bu3HF;;A6Br3HA;EACE,gBAAA;A7Bw3HF;;A6Bt3HA;EACE,gBAAA;A7By3HF;;A6Bv3HA;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,sBAAA;EACA,SAAA;A7B03HF;;A6Bx3HA;;EAEE,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;A7B23HF","file":"../../css/lifterlms.css","sourcesContent":["@charset \"UTF-8\";\n.llms-pagination ul:before, .llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:before,\n.llms-form-fields:before,\n.llms-checkout-cols-2:before,\n.llms-access-plans:before,\n.llms-course-navigation:before,\n.llms-loop-list:before,\n.llms-cols:before,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n content: \" \";\n display: table;\n}\n.llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n clear: both;\n}\n\n.llms-cols .llms-col {\n width: 100%;\n}\n@media all and (min-width: 600px) {\n .llms-cols [class*=llms-col-] {\n float: left;\n }\n}\n\n.llms-flex-cols {\n display: flex;\n flex-flow: row wrap;\n}\n.llms-flex-cols [class*=llms-col] {\n flex: 0 1 auto;\n width: 100%;\n}\n\n@media all and (min-width: 600px) {\n .llms-cols .llms-col-1, .llms-flex-cols .llms-col-1 {\n width: 100%;\n }\n .llms-cols .llms-col-2, .llms-flex-cols .llms-col-2 {\n width: 50%;\n }\n .llms-cols .llms-col-3, .llms-flex-cols .llms-col-3 {\n width: 33.3333333333%;\n }\n .llms-cols .llms-col-4, .llms-flex-cols .llms-col-4 {\n width: 25%;\n }\n .llms-cols .llms-col-5, .llms-flex-cols .llms-col-5 {\n width: 20%;\n }\n .llms-cols .llms-col-6, .llms-flex-cols .llms-col-6 {\n width: 16.6666666667%;\n }\n .llms-cols .llms-col-7, .llms-flex-cols .llms-col-7 {\n width: 14.2857142857%;\n }\n .llms-cols .llms-col-8, .llms-flex-cols .llms-col-8 {\n width: 12.5%;\n }\n .llms-cols .llms-col-9, .llms-flex-cols .llms-col-9 {\n width: 11.1111111111%;\n }\n .llms-cols .llms-col-10, .llms-flex-cols .llms-col-10 {\n width: 10%;\n }\n .llms-cols .llms-col-11, .llms-flex-cols .llms-col-11 {\n width: 9.0909090909%;\n }\n .llms-cols .llms-col-12, .llms-flex-cols .llms-col-12 {\n width: 8.3333333333%;\n }\n}\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #2295ff;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #0077e4;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #4ba9ff;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.llms-donut {\n background-color: #f1f1f1;\n background-image: none;\n border-radius: 50%;\n color: #ef476f;\n height: 200px;\n overflow: hidden;\n position: relative;\n width: 200px;\n}\n.llms-donut:before, .llms-donut:after {\n content: \" \";\n display: table;\n}\n.llms-donut:after {\n clear: both;\n}\n.llms-donut svg {\n overflow: visible !important;\n pointer-events: none;\n width: 100%;\n}\n.llms-donut svg path {\n fill: none;\n stroke-width: 35px;\n stroke: #ef476f;\n}\n.llms-donut.mini {\n height: 36px;\n width: 36px;\n}\n.llms-donut.mini .percentage {\n font-size: 10px;\n}\n.llms-donut.small {\n height: 100px;\n width: 100px;\n}\n.llms-donut.small .percentage {\n font-size: 18px;\n}\n.llms-donut.medium {\n height: 130px;\n width: 130px;\n}\n.llms-donut.medium .percentage {\n font-size: 26px;\n}\n.llms-donut.large {\n height: 260px;\n width: 260px;\n}\n.llms-donut.large .percentage {\n font-size: 48px;\n}\n.llms-donut .inside {\n align-items: center;\n background: #fff;\n border-radius: 50%;\n box-sizing: border-box;\n display: flex;\n flex-wrap: wrap;\n height: 80%;\n justify-content: center;\n left: 50%;\n position: absolute;\n text-align: center;\n transform: translate(-50%, -50%);\n width: 80%;\n top: 50%;\n z-index: 3;\n}\n.llms-donut .percentage {\n line-height: 1.2;\n font-size: 34px;\n}\n.llms-donut .caption {\n font-size: 50%;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n.llms-membership-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-course-image {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n}\n\n.llms-featured-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-image-thumb {\n width: 150px;\n}\n\n.llms-video-wrapper .center-video {\n height: auto;\n max-width: 100%;\n overflow: hidden;\n position: relative;\n padding-top: 56.25%;\n text-align: center;\n}\n.llms-video-wrapper .center-video > .wp-video,\n.llms-video-wrapper .center-video .fluid-width-video-wrapper,\n.llms-video-wrapper .center-video iframe, .llms-video-wrapper .center-video object, .llms-video-wrapper .center-video embed {\n height: 100%;\n left: 0;\n position: absolute;\n top: 0;\n width: 100%;\n}\n.llms-video-wrapper .center-video > .wp-video {\n width: 100% !important;\n}\n.llms-video-wrapper .center-video .fluid-width-video-wrapper {\n padding-top: 0 !important;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\n.llms-featured-image {\n text-align: center;\n}\n\n#main-content .llms-payment-options p {\n margin: 0;\n font-size: 16px;\n}\n\n.llms-option {\n display: block;\n position: relative;\n margin: 20px 0;\n padding-left: 40px;\n font-size: 16px;\n}\n.llms-option label {\n cursor: pointer;\n position: static;\n}\n\n.llms-option:first-child {\n margin-top: 0;\n}\n\n.llms-option:last-child {\n margin-bottom: 0;\n}\n\n#main-content .llms-option:last-child {\n margin-bottom: 0;\n}\n\n.llms-option input[type=radio] {\n display: block;\n position: absolute;\n top: 3px;\n left: 0;\n z-index: 0;\n}\n\n.llms-option input[type=radio] {\n display: inline-block;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n display: none;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n appearance: none;\n z-index: 20;\n position: absolute;\n top: 0;\n left: -2px;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n vertical-align: middle;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.5) 0 0 0 1px;\n background: #efefef;\n background-image: radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);\n background-repeat: no-repeat;\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n background-position: -24px 0;\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n background-position: 0 0;\n}\n\n.llms-option input[type=submit] {\n border: none;\n background: #e5554e;\n color: #fff;\n font-size: 20px;\n padding: 10px 0;\n border-radius: 3px;\n cursor: pointer;\n width: 100%;\n}\n\n.llms-styled-text {\n padding: 14px 0;\n}\n\n.llms-notice-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n border: 1px solid #ccc;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n.llms-notice-box input[type=text] {\n height: auto;\n}\n.llms-notice-box .col-1-1 {\n width: 100%;\n}\n.llms-notice-box .col-1-1 input[type=text] {\n width: 100%;\n}\n.llms-notice-box .col-1-2 {\n width: 50%;\n float: left;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-2 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-3 {\n width: 33%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-4 {\n width: 25%;\n float: left;\n margin-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-4 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-6 {\n width: 16.6%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-8 {\n width: 11%;\n float: right;\n}\n.llms-notice-box .llms-pad-right {\n padding-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .llms-pad-right {\n padding-right: 0;\n }\n}\n\ninput[type=text].cc_cvv,\n#cc_cvv {\n margin-right: 0;\n width: 23%;\n float: right;\n}\n\n.llms-clear-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n\n.llms-price-label {\n font-weight: normal;\n}\n\n.llms-final-price {\n font-weight: bold;\n float: right;\n}\n\n.llms-center-content {\n text-align: center;\n}\n\n.llms-input-text {\n background-color: #fff;\n border: 1px solid #ddd;\n color: #333;\n font-size: 18px;\n font-weight: 300;\n padding: 16px;\n width: 100%;\n}\n\n.llms-price {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.llms-price-loop {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.courses .entry {\n padding: 0;\n}\n\n.list-view .site-content .llms-course-list .hentry, .list-view .site-content .llms-membership-list .hentry {\n border-top: 0;\n padding-top: 0;\n}\n\n.llms-content {\n width: 100%;\n}\n\n.llms-lesson-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-template-wrapper {\n width: 100%;\n display: block;\n clear: both;\n}\n\n.llms-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-styled-select {\n border: 1px solid #ccc;\n box-sizing: border-box;\n border-radius: 3px;\n overflow: hidden;\n position: relative;\n}\n\n.llms-styled-select, .llms-styled-select select {\n width: 100%;\n}\n\nselect:focus {\n outline: none;\n}\n\n.llms-styled-select select {\n height: 34px;\n padding: 5px 0 5px 5px;\n background: transparent;\n border: none;\n -webkit-appearance: none;\n font-size: 16px;\n color: #444444;\n}\n\n@-moz-document url-prefix() {\n .--ms-styled-select select {\n width: 110%;\n }\n}\n.llms-styled-select .fa-sort-desc {\n position: absolute;\n top: 0;\n right: 12px;\n font-size: 24px;\n color: #ccc;\n}\n\nselect::-ms-expand {\n display: none;\n}\n\n_:-o-prefocus .llms-styled-select, .selector .llms-styled-select {\n background: none;\n}\n\n.llms-form-item-wrapper {\n margin-bottom: 1em;\n}\n\n/* Circle Graph */\n.llms-progress-circle {\n position: relative;\n width: 200px;\n height: 200px;\n float: left;\n}\n\n.llms-progress-circle-count {\n top: 27%;\n position: absolute;\n width: 94%;\n text-align: center;\n color: #666;\n font-size: 44px;\n}\n\n.llms-progress-circle svg {\n position: absolute;\n width: 200px;\n height: 200px;\n}\n\n.llms-progress-circle circle {\n fill: transparent;\n}\n\nsvg .llms-background-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #f1f2f1;\n stroke-dasharray: 430;\n}\n\nsvg .llms-animated-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #e5554e;\n stroke-dasharray: 430;\n stroke-dashoffset: 410;\n}\n\n.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title {\n font-weight: 700;\n}\n.llms-widget-syllabus .llms-lesson-complete, .llms-widget-syllabus .lesson-complete-placeholder {\n font-size: 1.2em;\n margin-right: 6px;\n color: #ccc;\n}\n.llms-widget-syllabus .llms-lesson-complete.done, .llms-widget-syllabus .lesson-complete-placeholder.done {\n color: #e5554e;\n}\n.llms-widget-syllabus .section-title {\n font-weight: bold;\n}\n.llms-widget-syllabus .lesson-title a {\n text-decoration: none;\n}\n.llms-widget-syllabus .lesson-title a:hover {\n text-decoration: none !important;\n}\n.llms-widget-syllabus .lesson-title.done a {\n color: #999;\n text-decoration: line-through;\n}\n.llms-widget-syllabus ul {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li ul li {\n margin: 0 0 2px 0;\n padding: 0;\n}\n\n.llms-remove-coupon {\n float: right;\n}\n\n.llms-lesson-link-locked, .llms-lesson-link-locked:hover {\n background: #f1f1f1;\n box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n display: block;\n color: #a6a6a6;\n min-height: 85px;\n padding: 15px;\n text-decoration: none;\n position: relative;\n}\n\n.llms-lesson-preview.is-complete .llms-lesson-link-locked {\n padding-left: 75px;\n}\n\n.llms-lesson-tooltip {\n display: none;\n position: absolute;\n color: #000000;\n background-color: #c0c0c0;\n padding: 0.25em;\n border-radius: 2px;\n z-index: 100;\n top: 0;\n left: 50%;\n text-align: center;\n -webkit-transform: translateX(-50%) translateY(-100%);\n transform: translateX(-50%) translateY(-100%);\n}\n\n/* arrows - :after */\n.llms-lesson-tooltip:after {\n content: \"\";\n width: 0;\n height: 0;\n border-top: 8px solid #c0c0c0;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n position: absolute;\n bottom: -8px;\n left: 50%;\n transform: translateX(-50%);\n}\n\n.llms-lesson-tooltip.active {\n display: inline-block;\n}\n\n.llms-loop-list {\n list-style: none;\n margin: 0 -10px;\n padding: 0;\n}\n@media all and (min-width: 600px) {\n .llms-loop-list.cols-1 .llms-loop-item {\n width: 100%;\n }\n .llms-loop-list.cols-2 .llms-loop-item {\n width: 50%;\n }\n .llms-loop-list.cols-3 .llms-loop-item {\n width: 33.3333333333%;\n }\n .llms-loop-list.cols-4 .llms-loop-item {\n width: 25%;\n }\n .llms-loop-list.cols-5 .llms-loop-item {\n width: 20%;\n }\n .llms-loop-list.cols-6 .llms-loop-item {\n width: 16.6666666667%;\n }\n}\n\n.llms-loop-item {\n float: left;\n list-style: none;\n margin: 0;\n padding: 0;\n width: 100%;\n}\n\n.llms-loop-item-content {\n background: #f1f1f1;\n padding-bottom: 10px;\n margin: 10px;\n}\n.llms-loop-item-content:hover {\n background: #eaeaea;\n}\n.llms-loop-item-content .llms-loop-link {\n color: #212121;\n display: block;\n}\n.llms-loop-item-content .llms-loop-link:visited {\n color: #212121;\n}\n.llms-loop-item-content .llms-featured-image {\n display: block;\n max-width: 100%;\n}\n.llms-loop-item-content .llms-loop-title {\n margin-top: 5px;\n}\n.llms-loop-item-content .llms-loop-title:hover {\n color: #2295ff;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author,\n.llms-loop-item-content .llms-loop-title {\n padding: 0 10px;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author {\n color: #444;\n display: block;\n font-size: 13px;\n margin-bottom: 3px;\n}\n.llms-loop-item-content .llms-meta:last-child,\n.llms-loop-item-content .llms-author:last-child {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-featured-img-wrap {\n overflow: hidden;\n}\n.llms-loop-item-content p {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-progress {\n margin: 0;\n height: 0.4em;\n}\n.llms-loop-item-content .llms-progress .progress__indicator {\n display: none;\n}\n.llms-loop-item-content .llms-progress .llms-progress-bar {\n background-color: #f6f6f6;\n right: 0;\n top: 0;\n}\n\n.course .llms-meta-info {\n margin: 20px 0;\n}\n.course .llms-meta-info .llms-meta-title {\n margin-bottom: 5px;\n}\n.course .llms-meta-info .llms-meta p {\n margin-bottom: 0;\n}\n.course .llms-meta-info .llms-meta span {\n font-weight: 700;\n}\n.course .llms-course-progress {\n margin: 40px auto;\n max-width: 480px;\n text-align: center;\n}\n\n.llms-syllabus-wrapper {\n margin: 15px;\n text-align: center;\n}\n.llms-syllabus-wrapper .llms-section-title {\n margin: 25px 0 0;\n}\n\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-back-to-course {\n width: 49%;\n}\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-back-to-course {\n float: left;\n margin-right: 0.5%;\n}\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-prev-lesson + .llms-back-to-course {\n float: right;\n margin-left: 0.5%;\n}\n\n.llms-lesson-preview {\n display: inline-block;\n margin-top: 15px;\n max-width: 100%;\n position: relative;\n width: 480px;\n}\n.llms-lesson-preview .llms-lesson-link {\n background: #f1f1f1;\n color: #212121;\n display: block;\n padding: 15px;\n text-decoration: none;\n}\n.llms-lesson-preview .llms-lesson-link:before, .llms-lesson-preview .llms-lesson-link:after {\n content: \" \";\n display: table;\n}\n.llms-lesson-preview .llms-lesson-link:after {\n clear: both;\n}\n.llms-lesson-preview .llms-lesson-link:hover {\n background: #eaeaea;\n}\n.llms-lesson-preview .llms-lesson-link:visited {\n color: #212121;\n}\n.llms-lesson-preview .llms-lesson-thumbnail {\n margin-bottom: 10px;\n}\n.llms-lesson-preview .llms-lesson-thumbnail img {\n display: block;\n width: 100%;\n}\n.llms-lesson-preview .llms-pre-text {\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title {\n font-weight: 700;\n margin: 0 auto 10px;\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title:last-child {\n margin-bottom: 0;\n}\n.llms-lesson-preview .llms-lesson-excerpt {\n text-align: left;\n}\n.llms-lesson-preview .llms-main {\n float: left;\n width: 100%;\n}\n.llms-lesson-preview .llms-extra {\n float: right;\n width: 15%;\n}\n.llms-lesson-preview .llms-extra + .llms-main {\n width: 85%;\n}\n.llms-lesson-preview .llms-lesson-counter,\n.llms-lesson-preview .llms-free-lesson-svg,\n.llms-lesson-preview .llms-lesson-complete,\n.llms-lesson-preview .llms-lesson-complete-placeholder {\n display: block;\n font-size: 32px;\n margin-bottom: 15px;\n}\n.llms-lesson-preview.is-free .llms-lesson-complete, .llms-lesson-preview.is-complete .llms-lesson-complete {\n color: #2295ff;\n}\n.llms-lesson-preview .llms-icon-free {\n background: #2295ff;\n border-radius: 4px;\n color: #f1f1f1;\n display: inline-block;\n padding: 5px 6px 4px;\n line-height: 1;\n font-size: 14px;\n}\n.llms-lesson-preview.is-incomplete .llms-lesson-complete {\n color: #cacaca;\n}\n.llms-lesson-preview .llms-lesson-counter {\n font-size: 16px;\n line-height: 1;\n}\n.llms-lesson-preview .llms-free-lesson-svg {\n fill: currentColor;\n height: 23px;\n width: 50px;\n}\n.llms-lesson-preview p {\n margin-bottom: 0;\n}\n\n/* progress bar */\n.llms-progress {\n clear: both;\n display: flex;\n flex-direction: row-reverse;\n position: relative;\n height: 1em;\n width: 100%;\n margin: 15px 0;\n}\n\n.llms-progress .llms-progress-bar {\n background-color: #f1f2f1;\n position: relative;\n height: 0.4em;\n top: 0.3em;\n width: 100%;\n}\n\n.llms-progress .progress-bar-complete {\n background-color: #ef476f;\n height: 100%;\n}\n\n.progress__indicator {\n float: right;\n text-align: right;\n height: 1em;\n line-height: 1em;\n margin-left: 5px;\n white-space: nowrap;\n}\n\n.llms-author .name {\n margin-left: 5px;\n}\n.llms-author .label {\n margin-left: 5px;\n}\n.llms-author .avatar {\n border-radius: 50%;\n}\n.llms-author .bio {\n margin-top: 5px;\n}\n\n.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author {\n margin-left: 0;\n}\n.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author {\n margin-right: 0;\n}\n.llms-instructor-info .llms-instructors .llms-author {\n background: #f5f5f5;\n border-top: 4px solid #2295ff;\n text-align: center;\n margin: 45px 5px 5px;\n padding: 0 10px 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .avatar {\n background: #2295ff;\n border: 4px solid #2295ff;\n display: block;\n margin: -35px auto 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info {\n display: block;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name {\n font-weight: 700;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label {\n font-size: 85%;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio {\n font-size: 90%;\n margin-bottom: 0;\n}\n\n.llms_review {\n margin: 20px 0px;\n padding: 10px;\n}\n.llms_review h5 {\n font-size: 17px;\n margin: 3px 0px;\n}\n.llms_review h6 {\n font-size: 13px;\n}\n.llms_review p {\n font-size: 15px;\n}\n\n.review_box [type=text] {\n margin: 10px 0px;\n}\n.review_box h5 {\n color: red;\n display: none;\n}\n.review_box + .thank_you_box {\n display: none;\n}\n\n.llms-notice {\n background: rgba(34, 149, 255, 0.3);\n border-color: #2295ff;\n border-style: solid;\n border-width: 3px;\n padding: 10px;\n margin-bottom: 10px;\n}\n.llms-notice p:last-child, .llms-notice ul:last-child {\n margin-bottom: 0;\n}\n.llms-notice li {\n list-style-type: none;\n}\n.llms-notice.llms-debug {\n background: rgba(202, 202, 202, 0.3);\n border-color: #cacaca;\n}\n.llms-notice.llms-error {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-notice.llms-success {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n\n.entry-content .llms-notice {\n margin: 0 0 10px;\n}\n.entry-content .llms-notice li {\n list-style-type: none;\n}\n\nul.llms-achievements-loop,\n.lifterlms ul.llms-achievements-loop,\nul.llms-certificates-loop,\n.lifterlms ul.llms-certificates-loop {\n list-style-type: none;\n margin: 0 -10px;\n padding: 0;\n}\nul.llms-achievements-loop:before, ul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:before,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:before,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:before,\n.lifterlms ul.llms-certificates-loop:after {\n content: \" \";\n display: table;\n}\nul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:after {\n clear: both;\n}\nul.llms-achievements-loop li.llms-achievement-loop-item,\nul.llms-achievements-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,\nul.llms-certificates-loop li.llms-achievement-loop-item,\nul.llms-certificates-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item {\n box-sizing: border-box;\n display: block;\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 10px;\n width: 100%;\n}\n@media all and (min-width: 600px) {\n ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item {\n width: 100%;\n }\n ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item {\n width: 50%;\n }\n ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item {\n width: 33.3333333333%;\n }\n ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item {\n width: 25%;\n }\n ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item {\n width: 20%;\n }\n}\n\n.llms-achievement,\n.llms-certificate {\n background: #f1f1f1;\n border: none;\n color: inherit;\n display: block;\n text-decoration: none;\n width: 100%;\n}\n.llms-achievement:hover,\n.llms-certificate:hover {\n background: #eaeaea;\n}\n.llms-achievement .llms-achievement-img,\n.llms-certificate .llms-achievement-img {\n display: block;\n margin: 0;\n width: 100%;\n}\n.llms-achievement .llms-achievement-title,\n.llms-certificate .llms-achievement-title {\n font-size: 16px;\n margin: 0;\n padding: 10px;\n text-align: center;\n}\n.llms-achievement .llms-certificate-title,\n.llms-certificate .llms-certificate-title {\n font-size: 16px;\n margin: 0;\n padding: 0 0 10px;\n}\n.llms-achievement .llms-achievement-info,\n.llms-achievement .llms-achievement-date,\n.llms-certificate .llms-achievement-info,\n.llms-certificate .llms-achievement-date {\n display: none;\n}\n.llms-achievement .llms-achievement-content,\n.llms-certificate .llms-achievement-content {\n padding: 20px;\n}\n.llms-achievement .llms-achievement-content:empty,\n.llms-certificate .llms-achievement-content:empty {\n padding: 0;\n}\n.llms-achievement .llms-achievement-content *:last-child,\n.llms-certificate .llms-achievement-content *:last-child {\n margin-bottom: 0;\n}\n\n.llms-certificate {\n border: 4px double #f1f1f1;\n padding: 20px 10px;\n background: #fff;\n text-align: center;\n}\n.llms-certificate:hover {\n background: #fff;\n border-color: #eaeaea;\n}\n\n.llms-achievement-modal .llms-achievement {\n background: #fff;\n}\n.llms-achievement-modal .llms-achievement-info {\n display: block;\n}\n.llms-achievement-modal .llms-achievement-title {\n display: none;\n}\n\n.llms-notification {\n background: #fff;\n box-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n border-top: 4px solid #2295ff;\n opacity: 0;\n padding: 12px;\n position: fixed;\n right: -800px;\n top: 24px;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out;\n visibility: hidden;\n width: auto;\n z-index: 9999999;\n}\n.llms-notification:before, .llms-notification:after {\n content: \" \";\n display: table;\n}\n.llms-notification:after {\n clear: both;\n}\n.llms-notification.visible {\n left: 12px;\n opacity: 1;\n right: 12px;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, transform 0.2s ease-in-out;\n visibility: visible;\n}\n.llms-notification.visible:hover .llms-notification-dismiss {\n opacity: 1;\n}\n.llms-notification .llms-notification-content {\n align-items: center;\n display: flex;\n}\n.llms-notification .llms-notification-main {\n align-self: flex-start;\n flex: 4;\n order: 2;\n}\n.llms-notification .llms-notification-title {\n font-size: 18px;\n margin: 0;\n}\n.llms-notification .llms-notification-body {\n font-size: 14px;\n line-height: 1.4;\n}\n.llms-notification .llms-notification-body p, .llms-notification .llms-notification-body li {\n font-size: inherit;\n}\n.llms-notification .llms-notification-body p {\n margin-bottom: 8px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert {\n background: #f6f6f6;\n border: 1px solid #d0d0d0;\n box-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n padding: 16px 16px 24px;\n margin-top: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title {\n font-size: 16px;\n font-weight: 700;\n margin: 12px auto;\n text-align: center;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body {\n width: 100%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(1) {\n width: 65%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(2) {\n width: 35%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(3) {\n width: 85%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(4) {\n width: 75%;\n margin-top: 18px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(5) {\n width: 70%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(6) {\n margin-left: 12px;\n margin-bottom: -24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(7) {\n width: 65%;\n margin-right: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line {\n border-radius: 2px;\n height: 8px;\n background: #b0b0b0;\n background-image: linear-gradient(to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);\n background-repeat: no-repeat;\n margin: 4px auto;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot {\n background: #b0b0b0;\n border-radius: 50%;\n display: inline-block;\n content: \"\";\n height: 24px;\n width: 24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert p {\n margin-bottom: 0;\n}\n.llms-notification .llms-notification-aside {\n align-self: flex-start;\n flex: 1;\n margin-right: 12px;\n order: 1;\n}\n.llms-notification .llms-notification-icon {\n display: block;\n max-width: 64px;\n}\n.llms-notification .llms-notification-footer {\n border-top: 1px solid #e5e5e5;\n font-size: 12px;\n margin-top: 12px;\n padding: 6px 6px 0;\n text-align: right;\n}\n.llms-notification .llms-notification-dismiss {\n color: #e5554e;\n cursor: pointer;\n font-size: 22px;\n position: absolute;\n right: 10px;\n top: 8px;\n transition: opacity 0.4s ease-in-out;\n}\n\n.llms-sd-notification-center .llms-notification-list,\n.llms-sd-notification-center .llms-notification-list-item {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification {\n background: #fcfcfc;\n}\n.llms-sd-notification-center .llms-notification {\n opacity: 1;\n border-top: 1px solid #e5e5e5;\n left: auto;\n padding: 24px;\n position: relative;\n right: auto;\n top: auto;\n visibility: visible;\n width: auto;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-aside {\n max-width: 64px;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-footer {\n border: none;\n padding: 0;\n text-align: left;\n}\n.llms-sd-notification-center .llms-notification .llms-progress {\n display: none !important;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-date {\n color: #515151;\n float: left;\n margin-right: 6px;\n}\n.llms-sd-notification-center .llms-notification .llms-mini-cert {\n margin: 0 auto;\n max-width: 380px;\n}\n\n@media all and (min-width: 480px) {\n .llms-notification {\n right: -800px;\n width: 360px;\n }\n .llms-notification.visible {\n left: auto;\n right: 24px;\n }\n .llms-notification .llms-notification-dismiss {\n opacity: 0;\n }\n}\n.llms-pagination ul {\n list-style-type: none;\n}\n.llms-pagination ul li {\n float: left;\n}\n.llms-pagination ul li a {\n border-bottom: 0;\n text-decoration: none;\n}\n.llms-pagination ul li .page-numbers {\n padding: 0.5em;\n text-decoration: underline;\n}\n.llms-pagination ul li .page-numbers.current {\n text-decoration: none;\n}\n\n.llms-tooltip {\n background: #2a2a2a;\n border-radius: 4px;\n color: #fff;\n font-size: 14px;\n line-height: 1.2;\n opacity: 0;\n top: -20px;\n padding: 8px 12px;\n left: 50%;\n position: absolute;\n pointer-events: none;\n transform: translateX(-50%);\n transition: opacity 0.2s ease, top 0.2s ease;\n max-width: 320px;\n}\n.llms-tooltip.show {\n top: -28px;\n opacity: 1;\n}\n.llms-tooltip:after {\n bottom: -8px;\n border-top: 8px solid #2a2a2a;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n content: \"\";\n height: 0;\n left: 50%;\n position: absolute;\n transform: translateX(-50%);\n width: 0;\n}\n\n.webui-popover-title {\n font-size: initial;\n font-weight: initial;\n line-height: initial;\n}\n\n.webui-popover-inverse .webui-popover-inner .close {\n color: #fff;\n opacity: 0.6;\n text-shadow: none;\n}\n.webui-popover-inverse .webui-popover-inner .close:hover {\n opacity: 0.8;\n}\n.webui-popover-inverse .webui-popover-content a {\n color: #fff;\n text-decoration: underline;\n}\n.webui-popover-inverse .webui-popover-content a:hover {\n text-decoration: none;\n}\n\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n list-style-type: none;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n.single-llms_quiz .llms-return {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-results:before, .single-llms_quiz .llms-quiz-results:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz .llms-quiz-results:after {\n clear: both;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing {\n color: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path {\n stroke: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending {\n color: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path {\n stroke: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing {\n color: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path {\n stroke: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n margin-bottom: 20px;\n}\n@media all and (min-width: 600px) {\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-aside {\n float: left;\n width: 220px;\n }\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n float: right;\n width: calc(100% - 300px);\n }\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n clear: right;\n }\n}\n.single-llms_quiz ul.llms-quiz-meta-info,\n.single-llms_quiz ul.llms-quiz-meta-info li {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz ul.llms-quiz-meta-info {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-buttons {\n margin-top: 10px;\n text-align: left;\n}\n.single-llms_quiz .llms-quiz-buttons form {\n display: inline-block;\n}\n\n.llms-quiz-question-wrapper {\n min-height: 140px;\n position: relative;\n}\n.llms-quiz-question-wrapper .llms-quiz-loading {\n bottom: 20px;\n left: 0;\n position: absolute;\n right: 0;\n text-align: center;\n z-index: 1;\n}\n\n.llms-quiz-ui {\n background: #fcfcfc;\n padding: 20px;\n position: relative;\n}\n.llms-quiz-ui .llms-quiz-header {\n align-items: center;\n display: flex;\n margin: 0 0 30px;\n}\n.llms-quiz-ui .llms-progress {\n background-color: #f1f2f1;\n flex-direction: row;\n height: 8px;\n margin: 0;\n overflow: hidden;\n}\n.llms-quiz-ui .llms-progress .progress-bar-complete {\n transition: width 0.3s ease-in;\n width: 0;\n}\n.llms-quiz-ui .llms-error {\n background: #e5554e;\n border-radius: 4px;\n color: #fff;\n margin: 10px 0;\n padding: 10px;\n}\n.llms-quiz-ui .llms-error:before, .llms-quiz-ui .llms-error:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-ui .llms-error:after {\n clear: both;\n}\n.llms-quiz-ui .llms-error a {\n color: rgba(255, 255, 255, 0.6);\n float: right;\n font-size: 22px;\n line-height: 1;\n text-decoration: none;\n}\n.llms-quiz-ui .llms-quiz-counter {\n display: none;\n color: #6a6a6a;\n float: right;\n font-size: 18px;\n}\n.llms-quiz-ui .llms-quiz-counter .llms-sep {\n margin: 0 5px;\n}\n.llms-quiz-ui .llms-quiz-nav {\n margin-top: 20px;\n}\n.llms-quiz-ui .llms-quiz-nav button {\n margin: 0 10px 0 0;\n}\n\n.llms-question-wrapper .llms-question-text {\n font-size: 30px;\n font-weight: 400;\n margin-bottom: 15px;\n}\n.llms-question-wrapper ol.llms-question-choices {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice {\n border-bottom: 1px solid #e8e8e8;\n margin: 0;\n padding: 0;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label {\n display: inline-block;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker {\n bottom: 10px;\n margin: 0;\n position: absolute;\n right: 10px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image {\n margin: 2px;\n padding: 20px;\n transition: background 0.4s ease;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img {\n display: block;\n width: 100%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked ~ .llms-choice-image {\n background: #efefef;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input {\n display: none;\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n visibility: hidden;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label {\n display: block;\n margin: 0;\n padding: 10px 20px;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker {\n background: #f0f0f0;\n display: inline-block;\n font-size: 20px;\n height: 40px;\n line-height: 40px;\n margin-right: 10px;\n text-align: center;\n transition: all 0.2s ease;\n vertical-align: middle;\n width: 40px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister, .llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox {\n border-radius: 4px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio {\n border-radius: 50%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker {\n background: #ef476f;\n color: #fff;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text {\n display: inline-block;\n font-size: 18px;\n font-weight: 400;\n line-height: 1.6;\n margin-bottom: 0;\n vertical-align: middle;\n width: calc(100% - 60px);\n}\n\n.llms-quiz-timer {\n background: #fff;\n border: 1px solid #83c373;\n border-radius: 4px;\n color: #83c373;\n float: right;\n font-size: 18px;\n line-height: 1;\n margin-left: 20px;\n padding: 8px 12px;\n position: relative;\n white-space: nowrap;\n z-index: 1;\n}\n.llms-quiz-timer.color-half {\n border-color: #ff922b;\n color: #ff922b;\n}\n.llms-quiz-timer.color-empty {\n border-color: #e5554e;\n color: #e5554e;\n}\n.llms-quiz-timer .llms-tiles {\n display: inline-block;\n margin-left: 5px;\n}\n\n.voucher-expand {\n display: none;\n}\n\n@media all and (min-width: 600px) {\n .llms-access-plans.cols-1 .llms-access-plan {\n width: 100%;\n }\n .llms-access-plans.cols-2 .llms-access-plan {\n width: 50%;\n }\n .llms-access-plans.cols-3 .llms-access-plan {\n width: 33.3333333333%;\n }\n .llms-access-plans.cols-4 .llms-access-plan {\n width: 25%;\n }\n .llms-access-plans.cols-5 .llms-access-plan {\n width: 20%;\n }\n}\n\n.llms-free-enroll-form {\n margin-bottom: 0;\n}\n\n.llms-access-plan {\n box-sizing: border-box;\n float: left;\n text-align: center;\n width: 100%;\n}\n.llms-access-plan .llms-access-plan-footer,\n.llms-access-plan .llms-access-plan-content {\n background: #f1f1f1;\n}\n.llms-access-plan.featured .llms-access-plan-featured {\n background: #4ba9ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer,\n.llms-access-plan.featured .llms-access-plan-content {\n border-left: 3px solid #2295ff;\n border-right: 3px solid #2295ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer {\n border-bottom-color: #2295ff;\n}\n.llms-access-plan.on-sale .price-regular {\n text-decoration: line-through;\n}\n.llms-access-plan .stamp {\n background: #2295ff;\n color: #fff;\n font-size: 11px;\n font-style: normal;\n font-weight: 300;\n padding: 2px 3px;\n vertical-align: top;\n}\n.llms-access-plan .llms-access-plan-restrictions ul {\n margin: 0;\n}\n\n.llms-access-plan-featured {\n color: #fff;\n font-size: 14px;\n font-weight: 400;\n margin: 0 2px 0 2px;\n}\n\n.llms-access-plan-content {\n margin: 0 2px 0;\n}\n.llms-access-plan-content .llms-access-plan-pricing {\n padding: 10px 0 0;\n}\n\n.llms-access-plan-title {\n background: #2295ff;\n color: #fff;\n margin-bottom: 0;\n padding: 10px;\n}\n\n.llms-access-plan-pricing .llms-price-currency-symbol {\n font-size: 14px;\n vertical-align: top;\n}\n\n.llms-access-plan-price {\n font-size: 18px;\n font-variant: small-caps;\n line-height: 20px;\n}\n.llms-access-plan-price .lifterlms-price {\n font-weight: 700;\n}\n.llms-access-plan-price.sale {\n padding: 5px 0;\n border-top: 1px solid #d0d0d0;\n border-bottom: 1px solid #d0d0d0;\n}\n\n.llms-access-plan-trial,\n.llms-access-plan-schedule,\n.llms-access-plan-sale-end,\n.llms-access-plan-expiration {\n font-size: 15px;\n font-variant: small-caps;\n line-height: 1.2;\n}\n\n.llms-access-plan-description {\n font-size: 16px;\n padding: 10px 10px 0;\n}\n.llms-access-plan-description ul {\n margin: 0;\n}\n.llms-access-plan-description ul li {\n border-bottom: 1px solid #d0d0d0;\n list-style-type: none;\n}\n.llms-access-plan-description ul li:last-child {\n border-bottom: none;\n}\n.llms-access-plan-description div:last-child, .llms-access-plan-description img:last-child, .llms-access-plan-description p:last-child, .llms-access-plan-description ul:last-child, .llms-access-plan-description li:last-child {\n margin-bottom: 0;\n}\n\n.llms-access-plan-restrictions .stamp {\n vertical-align: baseline;\n}\n.llms-access-plan-restrictions ul {\n margin: 0;\n}\n.llms-access-plan-restrictions ul li {\n font-size: 12px;\n line-height: 14px;\n list-style-type: none;\n}\n.llms-access-plan-restrictions a {\n color: #f8954f;\n}\n.llms-access-plan-restrictions a:hover {\n color: #f67d28;\n}\n\n.llms-access-plan-footer {\n border-bottom: 3px solid #f1f1f1;\n padding: 10px;\n margin: 0 2px 2px 2px;\n}\n.llms-access-plan-footer .llms-access-plan-pricing {\n padding: 0 0 10px;\n}\n\n.webui-popover-content .llms-members-only-restrictions {\n text-align: center;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li, .webui-popover-content .llms-members-only-restrictions p {\n margin: 0;\n padding: 0;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li {\n list-style-type: none;\n}\n.webui-popover-content .llms-members-only-restrictions li {\n padding: 8px 0;\n border-top: 1px solid #3b3b3b;\n}\n.webui-popover-content .llms-members-only-restrictions li:first-child {\n border-top: none;\n}\n.webui-popover-content .llms-members-only-restrictions li a {\n display: block;\n}\n\n.llms-checkout-wrapper form.llms-login {\n border: 3px solid #2295ff;\n display: none;\n margin-bottom: 10px;\n}\n.llms-checkout-wrapper .llms-form-heading {\n background: #2295ff;\n color: #fff;\n margin: 0 0 5px;\n padding: 10px;\n}\n\n.llms-checkout {\n background: #fff;\n position: relative;\n}\n\n@media all and (min-width: 800px) {\n .llms-checkout-cols-2 .llms-checkout-col {\n float: left;\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-1 {\n margin-right: 5px;\n width: calc(58% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 {\n margin-left: 5px;\n width: calc(42% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button {\n width: 100%;\n }\n}\n\n.llms-checkout-section {\n border: 3px solid #2295ff;\n margin-bottom: 10px;\n position: relative;\n}\n\n.llms-checkout-section-content {\n margin: 10px;\n}\n.llms-checkout-section-content.llms-form-fields {\n margin: 0px;\n}\n.llms-checkout-section-content .llms-label {\n font-weight: 400;\n font-variant: small-caps;\n text-transform: lowercase;\n}\n.llms-checkout-section-content .llms-order-summary {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-checkout-section-content .llms-order-summary li {\n list-style-type: none;\n}\n.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular, .llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular {\n text-decoration: line-through;\n}\n.llms-checkout-section-content .llms-coupon-wrapper {\n border-top: 1px solid #dadada;\n margin-top: 10px;\n padding-top: 10px;\n}\n.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry {\n display: none;\n margin-top: 10px;\n}\n\n.llms-form-field.llms-payment-gateway-option label + span.llms-description {\n display: inline-block;\n margin-left: 5px;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description a {\n border: none;\n box-shadow: none;\n text-decoration: none;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description img {\n display: inline;\n max-height: 22px;\n vertical-align: middle;\n}\n\n.llms-checkout-wrapper ul.llms-payment-gateways {\n margin: 5px 0 0;\n padding: 0;\n}\n\nul.llms-payment-gateways {\n list-style-type: none;\n}\nul.llms-payment-gateways li:last-child:after {\n border-bottom: 1px solid #dadada;\n content: \"\";\n display: block;\n margin: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway {\n margin-bottom: 5px;\n list-style-type: none;\n}\nul.llms-payment-gateways .llms-payment-gateway:last-child {\n margin-bottom: none;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label {\n font-weight: 700;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields {\n display: block;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway .llms-form-field {\n padding-bottom: 0;\n}\nul.llms-payment-gateways .llms-gateway-description {\n margin-left: 40px;\n}\nul.llms-payment-gateways .llms-gateway-fields {\n display: none;\n margin: 5px 0 20px;\n}\nul.llms-payment-gateways .llms-payment-gateway-error {\n padding: 0 10px;\n}\n\n.llms-checkout-confirm {\n margin: 0 10px;\n}\n\n.llms-payment-method {\n margin: 10px 10px 0;\n}\n\n.llms-gateway-description p {\n font-size: 85%;\n font-style: italic;\n margin-bottom: 0;\n}\n\n.llms-form-fields {\n box-sizing: border-box;\n}\n.llms-form-fields * {\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n.llms-widget-syllabus--collapsible .llms-section .section-header {\n cursor: pointer;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-syllabus-footer {\n text-align: left;\n}\n\n.llms-student-dashboard {\n /**\n * Dashboard Home\n */\n}\n.llms-student-dashboard .llms-sd-title {\n margin: 25px 0;\n}\n.llms-student-dashboard .llms-sd-items {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item {\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item:last-child .llms-sep {\n display: none;\n}\n.llms-student-dashboard .llms-sd-item .llms-sep {\n color: #333;\n margin: 0 5px;\n}\n.llms-student-dashboard .llms-sd-section {\n margin-bottom: 25px;\n}\n.llms-student-dashboard .llms-sd-section .llms-sd-section-footer {\n margin-top: 10px;\n}\n.llms-student-dashboard .orders-table {\n border: 1px solid #f5f5f5;\n width: 100%;\n}\n.llms-student-dashboard .orders-table thead {\n display: none;\n}\n.llms-student-dashboard .orders-table thead th, .llms-student-dashboard .orders-table thead td {\n font-weight: 700;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table thead {\n display: table-header-group;\n }\n}\n.llms-student-dashboard .orders-table tbody tr:nth-child(even) td, .llms-student-dashboard .orders-table tbody tr:nth-child(even) th {\n background: #f9f9f9;\n}\n.llms-student-dashboard .orders-table tfoot th, .llms-student-dashboard .orders-table tfoot td {\n padding: 10px;\n text-align: right;\n}\n.llms-student-dashboard .orders-table tfoot th:last-child, .llms-student-dashboard .orders-table tfoot td:last-child {\n border-bottom-width: 0;\n}\n.llms-student-dashboard .orders-table th {\n font-weight: 700;\n}\n.llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-color: #efefef;\n border-style: solid;\n border-width: 0;\n display: block;\n padding: 8px 12px;\n text-align: center;\n}\n.llms-student-dashboard .orders-table th .llms-button-primary, .llms-student-dashboard .orders-table td .llms-button-primary {\n display: inline-block;\n}\n.llms-student-dashboard .orders-table th:last-child, .llms-student-dashboard .orders-table td:last-child {\n border-bottom-width: 1px;\n}\n.llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n content: attr(data-label);\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-bottom-width: 1px;\n display: table-cell;\n text-align: left;\n }\n .llms-student-dashboard .orders-table th:first-child, .llms-student-dashboard .orders-table td:first-child {\n width: 220px;\n }\n .llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n display: none;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table.transactions th:first-child {\n width: auto;\n }\n}\n.llms-student-dashboard .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.llms-student-dashboard .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.llms-student-dashboard .llms-status.llms-active, .llms-student-dashboard .llms-status.llms-completed, .llms-student-dashboard .llms-status.llms-pass, .llms-student-dashboard .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.llms-student-dashboard .llms-status.llms-fail, .llms-student-dashboard .llms-status.llms-failed, .llms-student-dashboard .llms-status.llms-expired, .llms-student-dashboard .llms-status.llms-cancelled, .llms-student-dashboard .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.llms-student-dashboard .llms-status.llms-incomplete, .llms-student-dashboard .llms-status.llms-on-hold, .llms-student-dashboard .llms-status.llms-pending, .llms-student-dashboard .llms-status.llms-pending-cancel, .llms-student-dashboard .llms-status.llms-refunded, .llms-student-dashboard .llms-status.llms-txn-pending, .llms-student-dashboard .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n.llms-student-dashboard .llms-person-form-wrapper .llms-change-password {\n display: none;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-primary {\n float: left;\n width: 68%;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-secondary {\n float: left;\n width: 32%;\n }\n}\n.llms-student-dashboard .order-secondary form {\n margin-bottom: 0;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,\n.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary {\n float: none;\n width: 100%;\n }\n}\n.llms-student-dashboard .llms-switch-payment-source .llms-notice,\n.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\n.llms-student-dashboard .llms-switch-payment-source-main {\n border: none;\n display: none;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways {\n padding: 10px 15px 0;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary {\n padding: 0 25px 10px;\n margin: 0;\n list-style-type: none;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li {\n list-style-type: none;\n}\n.llms-student-dashboard .llms-loop-list {\n margin: 0 -10px;\n}\n\n.llms-sd-grades .llms-table .llms-progress {\n display: block;\n margin: 0;\n}\n.llms-sd-grades .llms-table .llms-progress .llms-progress-bar {\n top: 0;\n height: 1.4em;\n}\n.llms-sd-grades .llms-table .llms-progress .progress__indicator {\n font-size: 1em;\n position: relative;\n right: 0.4em;\n top: 0.2em;\n z-index: 1;\n}\n\n.llms-table.llms-single-course-grades tbody tr:first-child td, .llms-table.llms-single-course-grades tbody tr:first-child th {\n background-color: #eaeaea;\n}\n.llms-table.llms-single-course-grades th {\n font-weight: 400;\n}\n.llms-table.llms-single-course-grades td .llms-donut {\n display: inline-block;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td .llms-status {\n margin-right: 4px;\n}\n.llms-table.llms-single-course-grades td .llms-donut + .llms-status {\n margin-left: 4px;\n}\n.llms-table.llms-single-course-grades th.llms-section_title {\n font-size: 110%;\n font-weight: 700;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title {\n padding-left: 36px;\n max-width: 40%;\n}\n.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut {\n display: inline-block;\n margin-right: 5px;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href=\"#\"] {\n pointer-events: none;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] {\n color: inherit;\n position: relative;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip {\n max-width: 380px;\n width: 380px;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip.show {\n top: -54px;\n}\n\n.llms-sd-widgets {\n display: flex;\n}\n.llms-sd-widgets .llms-sd-widget {\n background: #f9f9f9;\n flex: 1;\n margin: 10px 10px 20px;\n padding: 0 0 20px;\n}\n.llms-sd-widgets .llms-sd-widget:first-child {\n margin-left: 0;\n}\n.llms-sd-widgets .llms-sd-widget:last-child {\n margin-right: 0;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title {\n background: #2295ff;\n color: #fff;\n font-size: 18px;\n line-height: 1;\n margin: 0 0 20px;\n padding: 10px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty {\n font-size: 14px;\n font-style: italic;\n opacity: 0.5;\n text-align: center;\n}\n.llms-sd-widgets .llms-sd-widget .llms-donut {\n margin: 0 auto;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date {\n opacity: 0.8;\n text-align: center;\n font-size: 22px;\n line-height: 1.1;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span {\n display: block;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day {\n font-size: 52px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff {\n font-size: 12px;\n font-style: italic;\n margin-top: 8px;\n opacity: 0.75;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement {\n background: transparent;\n margin: 0 auto;\n max-width: 120px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title {\n display: none;\n}\n\n.llms-sd-pagination {\n margin-top: 24px;\n}\n.llms-sd-pagination:before, .llms-sd-pagination:after {\n content: \" \";\n display: table;\n}\n.llms-sd-pagination:after {\n clear: both;\n}\n.llms-sd-pagination .llms-button-secondary {\n display: inline-block;\n}\n.llms-sd-pagination .llms-button-secondary.prev {\n float: left;\n}\n.llms-sd-pagination .llms-button-secondary.next {\n float: right;\n}\n\n.llms-sd-notification-center .llms-notification {\n z-index: 1;\n}\n\n.llms-table {\n border: 1px solid #efefef;\n width: 100%;\n}\n.llms-table thead th, .llms-table thead td {\n font-weight: 700;\n}\n.llms-table tbody tr:nth-child(odd) td, .llms-table tbody tr:nth-child(odd) th {\n background: #f9f9f9;\n}\n.llms-table tbody tr:last-child {\n border-bottom-width: 0;\n}\n.llms-table tfoot tr {\n background: #f9f9f9;\n}\n.llms-table tfoot tr .llms-pagination .page-numbers {\n margin: 0;\n}\n.llms-table tfoot tr .llms-table-sort {\n text-align: right;\n}\n.llms-table tfoot tr .llms-table-sort form, .llms-table tfoot tr .llms-table-sort select, .llms-table tfoot tr .llms-table-sort input, .llms-table tfoot tr .llms-table-sort button {\n margin: 0;\n}\n.llms-table th {\n font-weight: 700;\n}\n.llms-table th, .llms-table td {\n border-bottom: 1px solid #efefef;\n padding: 8px 12px;\n}\n.llms-table th:first-child, .llms-table td:first-child {\n padding-left: 12px;\n}\n.llms-table th:last-child, .llms-table td:last-child {\n padding-right: 12px;\n}\n\n#page .llms-table tfoot label {\n display: inline;\n}\n\n#page .llms-table tfoot select {\n height: auto;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}","%cf,\n%clearfix {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\n\t&:after {\n \tclear: both;\n\t}\n}\n\n\n\n%llms-element {\n\tbackground: $el-background;\n\tbox-shadow: $el-box-shadow;\n\tdisplay: block;\n\tcolor: #212121;\n\tmin-height: 85px;\n\tpadding: 15px;\n\ttext-decoration: none;\n\tposition: relative;\n\ttransition: background .4s ease;\n\n\t&:hover {\n\t\tbackground: $el-background-hover;\n\t}\n}\n","//\n// Floated columns.\n//\n// Utilized prior to the introduction of `.llms-flex-cols`. Prefer\n// usage of flex cols for new code where possible.\n//\n.llms-cols {\n\t@extend %clearfix;\n\n\t.llms-col { width: 100%; }\n\n\t@media all and (min-width: 600px) {\n\t\t[class*=\"llms-col-\"] {\n\t\t\tfloat: left;\n\t\t}\n\t}\n\n}\n\n//\n// Flex-box columns.\n//\n// Preferred over floated `.llms-cols` wherever possible.\n//\n.llms-flex-cols {\n\tdisplay: flex;\n\tflex-flow: row wrap;\n\n\t[class*=\"llms-col\"] {\n\t\tflex: 0 1 auto;\n\t\twidth: 100%;\n\t}\n}\n\n@media all and (min-width: 600px) {\n\t.llms-cols, .llms-flex-cols {\n\t\t$cols: 1;\n\t\t@while $cols <= 12 {\n\t\t\t.llms-col-#{$cols} {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n}\n\n",".llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n\tborder:none;\n\tborder-radius: 8px;\n\tcolor: $color-white;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: $color-white;\n\t}\n\t&:focus {\n\t\tcolor: $color-white;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n\t&.small {\n\t\tfont-size: 13px;\n\t\tpadding: 8px 14px;\n\t\t&.square { padding: 8px; }\n\t}\n\n\t&.large {\n\t\tfont-size: 18px;\n\t\tline-height: 1.2;\n\t\tpadding: 16px 32px;\n\t\t&.square { padding: 16px; }\n\t\t.fa {\n\t\t\tleft: -7px;\n\t\t\tposition: relative;\n\t\t}\n\t}\n\n}\n\n.llms-button-primary {\n\tbackground: $color-brand-blue;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-blue-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-blue-light;\n\t}\n}\n\n.llms-button-secondary {\n\tbackground: #e1e1e1;\n\tcolor: #414141;\n\t&:hover {\n\t\tcolor: #414141;\n\t\tbackground: darken( #e1e1e1, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tcolor: #414141;\n\t\tbackground: lighten( #e1e1e1, 4 );\n\t}\n}\n\n.llms-button-action {\n\tbackground: $color-brand-orange;\n\t&:hover,\n\t&.clicked {\n\t\tbackground: $color-brand-orange-dark;\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: $color-brand-orange-light;\n\t}\n}\n\n.llms-button-danger {\n\tbackground: $color-danger;\n\t&:hover {\n\t\tbackground: darken( $color-danger, 8 );\n\t}\n\t&:focus,\n\t&:active {\n\t\tbackground: lighten( $color-danger, 4 );\n\t}\n}\n\n.llms-button-outline {\n\tbackground: transparent;\n\tborder: 3px solid #1D2327;\n\tborder-radius: 8px;\n\tcolor: #1D2327;\n\tcursor: pointer;\n\tfont-size: 16px;\n\tfont-weight: 700;\n\ttext-decoration: none;\n\ttext-shadow: none;\n\tline-height: 1;\n\tmargin: 0;\n\tmax-width: 100%;\n\tpadding: 12px 24px;\n\tposition: relative;\n\ttransition: all .5s ease;\n\n\t&:disabled {\n\t\topacity: 0.5;\n\t}\n\t&:hover, &:active {\n\t\tcolor: #1D2327;\n\t}\n\t&:focus {\n\t\tcolor: #1D2327;\n\t}\n\n\t&.auto {\n\t\twidth: auto;\n\t}\n\n\t&.full {\n\t\tdisplay: block;\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t}\n\n\t&.square {\n\t\tpadding: 12px;\n\t}\n\n}","// ----- LifterLMS Brand Colors ----- \\\\\n$color-brand-dark-blue: #243c56;\n\n$color-brand-blue: #2295ff;\n$color-brand-blue-dark: darken( $color-brand-blue, 12 ); // #0077e4\n$color-brand-blue-light: lighten( $color-brand-blue, 8 );\n\n$color-brand-orange: #f8954f;\n$color-brand-orange-dark: #f67d28;\n$color-brand-orange-light: lighten( $color-brand-orange, 8 );\n\n$color-brand-aqua: #17bebb;\n\n$color-brand-pink: #ef476f;\n\n\n\n// ----- name our versions of common colors ----- \\\\\n$color-black: #010101;\n$color-green: #83c373;\n$color-blue: $color-brand-blue;\n$color-red: #e5554e;\n$color-white: #fefefe;\n$color-aqua: #35bbaa;\n$color-purple: #845ef7;\n$color-orange: #ff922b;\n\n$color-red-hover: darken($color-red,5);\n\n\n// ----- state / action names ----- \\\\\n$color-success: $color-green;\n$color-danger: $color-red;\n\n\n\n\n\n\n\n\n$color-lightgrey:\t\t#ccc;\n$color-grey: \t\t\t#999;\n$color-darkgrey:\t\t#666;\n$color-cinder:\t\t\t#444;\n$color-lightblue:\t\t#33b1cb;\n$color-darkblue:\t\t#0185a3;\n\n\n\n\n\n\n\n\n\n\n\n\n$color-border: #efefef;\n\n$el-box-shadow: 0 1px 2px 0 rgba($color-black,0.4);\n$el-background: #f1f1f1;\n$el-background-hover: #eaeaea;\n\n$break-xsmall: 320px;\n$break-small: 641px;\n$break-medium: 768px;\n$break-large: 1024px;\n",".llms-donut {\n\n\t@include clearfix;\n\n\tbackground-color: #f1f1f1;\n\tbackground-image: none;\n\tborder-radius: 50%;\n\tcolor: $color-brand-pink;\n\theight: 200px;\n\toverflow: hidden;\n\tposition: relative;\n\twidth: 200px;\n\n\tsvg {\n\t\toverflow: visible !important;\n\t\tpointer-events: none;\n\t\twidth: 100%;\n\t}\n\n\tsvg path {\n\t\tfill: none;\n\t\tstroke-width: 35px;\n\t\tstroke: $color-brand-pink;\n\t}\n\n\t&.mini {\n\t\theight: 36px;\n\t\twidth: 36px;\n\t\t.percentage {\n\t\t\tfont-size: 10px;\n\t\t}\n\t}\n\t&.small {\n\t\theight: 100px;\n\t\twidth: 100px;\n\t\t.percentage {\n\t\t\tfont-size: 18px;\n\t\t}\n\t}\n\t&.medium {\n\t\theight: 130px;\n\t\twidth: 130px;\n\t\t.percentage {\n\t\t\tfont-size: 26px;\n\t\t}\n\t}\n\t&.large {\n\t\theight: 260px;\n\t\twidth: 260px;\n\t\t.percentage {\n\t\t\tfont-size: 48px;\n\t\t}\n\t}\n\n\t.inside {\n\t\talign-items: center;\n\t\tbackground: #fff;\n\t\tborder-radius: 50%;\n\t\tbox-sizing: border-box;\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\theight: 80%;\n\t\tjustify-content: center;\n\t\tleft: 50%;\n\t\tposition: absolute;\n\t\ttext-align: center;\n\t\ttransform: translate(-50%, -50%);\n\t\twidth: 80%;\n\t\ttop: 50%;\n\t\tz-index: 3;\n\t}\n\n\t.percentage {\n\t\tline-height: 1.2;\n\t\tfont-size: 34px;\n\t}\n\n\t.caption {\n\t\tfont-size: 50%;\n\t}\n\n}\n","\n@mixin clearfix() {\n\t&:before,\n\t&:after {\n\t content: \" \";\n\t display: table;\n\t}\n\t&:after {\n\t clear: both;\n\t}\n}\n\n//\n// Positioning mixin\n//\n// @param [string] $position: position\n// @param [list] $args (()): offsets list\n//\n// @source http://hugogiraudel.com/2013/08/05/offsets-sass-mixin/\n//\n@mixin position($position, $args: ()) {\n\t$offsets: top right bottom left;\n\tposition: $position;\n\n\t@each $offset in $offsets {\n\t\t$index: index($args, $offset);\n\n\t\t@if $index {\n\t\t\t@if $index == length($args) {\n\t\t\t\t#{$offset}: 0;\n\t\t\t}\n\t\t\t@else {\n\t\t\t\t$next: nth($args, $index + 1);\n\t\t\t\t@if is-valid-length($next) {\n\t\t\t\t\t#{$offset}: $next;\n\t\t\t\t}\n\t\t\t\t@else if index($offsets, $next) {\n\t\t\t\t\t#{$offset}: 0;\n\t\t\t\t}\n\t\t\t\t@else {\n\t\t\t\t\t@warn \"Invalid value `#{$next}` for offset `#{$offset}`.\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n//\n// Function checking if $value is a valid length\n// @param [literal] $value: value to test\n// @return [bool]\n//\n@function is-valid-length($value) {\n\t$r: (type-of($value) == \"number\" and not unitless($value)) or (index(auto initial inherit 0, $value) != null);\n\t@return $r;\n}\n\n//\n// Shorthands\n//\n@mixin absolute($args: ()) {\n\t@include position(absolute, $args);\n}\n\n@mixin fixed($args: ()) {\n\t@include position(fixed, $args);\n}\n\n@mixin relative($args: ()) {\n\t@include position(relative, $args);\n}\n\n\n\n@mixin order_status_badges() {\n\n\t.llms-status {\n\t\tborder-radius: 3px;\n\t\tborder-bottom: 1px solid #fff;\n\t\tdisplay: inline-block;\n\t\tfont-size: 80%;\n\t\tpadding: 3px 6px;\n\t\tvertical-align: middle;\n\n\t\t&.llms-size--large {\n\t\t\tfont-size: 105%;\n\t\t\tpadding: 6px 12px;\n\t\t}\n\n\t\t&.llms-active,\n\t\t&.llms-completed,\n\t\t&.llms-pass, // quiz\n\t\t&.llms-txn-succeeded {\n\t\t\tcolor: darken( $color-green, 45 );\n\t\t\tbackground-color: $color-green;\n\t\t}\n\n\t\t&.llms-fail, // quiz\n\t\t&.llms-failed,\n\t\t&.llms-expired,\n\t\t&.llms-cancelled,\n\t\t&.llms-txn-failed {\n\t\t\tcolor: darken( $color-red, 40 );\n\t\t\tbackground-color: $color-red;\n\t\t}\n\n\t\t&.llms-incomplete, // assignment\n\t\t&.llms-on-hold,\n\t\t&.llms-pending,\n\t\t&.llms-pending-cancel,\n\t\t&.llms-refunded,\n\t\t&.llms-txn-pending,\n\t\t&.llms-txn-refunded {\n\t\t\tcolor: darken( orange, 30 );\n\t\t\tbackground-color: orange;\n\t\t}\n\n\t}\n\n}\n",".lifterlms, // Settings & Course Builder.\n.llms-metabox, // Some Metaboxes.\n.llms-mb-container, // Other Metaboxes.\n.llms-quiz-wrapper { // Quiz results.\n\n\t[data-tip],\n\t[data-title-default],\n\t[data-title-active] {\n\n\t\t$bgcolor: #444;\n\n\t\tposition: relative;\n\n\t\t&.tip--top-right {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\t\t&.tip--top-left {\n\t\t\t&:before {\n\t\t\t\tbottom: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\tbottom: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-top-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\ttop: -6px;\n\t\t\t}\n\t\t}\n\n\n\n\t\t&.tip--bottom-left {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tright: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tright: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&.tip--bottom-right {\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tleft: -10px;\n\t\t\t}\n\t\t\t&:hover:before {\n\t\t\t\ttop: calc( 100% + 6px );\n\t\t\t}\n\t\t\t&:after {\n\t\t\t\tborder-bottom-color: $bgcolor;\n\t\t\t\tleft: 6px;\n\t\t\t\tbottom: 0;\n\t\t\t}\n\t\t\t&:hover:after {\n\t\t\t\tbottom: -6px;\n\t\t\t}\n\t\t}\n\n\t\t&:before {\n\t\t\tbackground: $bgcolor;\n\t\t\tborder-radius: 4px;\n\t\t\tcolor: #fff;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 1.2;\n\t\t\tpadding: 8px;\n\t\t\tmax-width: 300px;\n\t\t\twidth: max-content;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tborder: 6px solid transparent;\n\t\t\theight: 0;\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&:before,\n\t\t&:after {\n\t\t\topacity: 0;\n\t\t\ttransition: all 0.2s 0.1s ease;\n\t\t\tposition: absolute;\n\t\t\tpointer-events: none;\n\t\t\tvisibility: hidden;\n\t\t}\n\t\t&:hover:before,\n\t\t&:hover:after {\n\t\t\topacity: 1;\n\t\t\ttransition: all 0.2s 0.6s ease;\n\t\t\tvisibility: visible;\n\t\t\tz-index: 99999999;\n\t\t}\n\n\t}\n\n\t[data-tip] {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip);\n\t\t}\n\t}\n\t[data-tip].active {\n\t\t&:before {\n\t\t\tcontent: attr(data-tip-active);\n\t\t}\n\t}\n\n}\n","\n\n\n\n.llms-membership-image {\n display: block;\n margin: 0 auto;\n}\n\n\n\n.llms-course-image {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n}\n.llms-featured-image {\n display: block;\n margin: 0 auto;\n}\n.llms-image-thumb {\n width: 150px;\n}\n\n// Responsive Videos.\n.llms-video-wrapper {\n\n\t.center-video {\n\t\theight: auto;\n\t\tmax-width: 100%;\n\t\toverflow: hidden;\n\t\tposition: relative;\n\t\tpadding-top: 56.25%;\n\t\ttext-align: center;\n\n\t\t& > .wp-video,\n\t\t.fluid-width-video-wrapper,\n\t\tiframe, object, embed {\n\t\t\theight: 100%;\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t& > .wp-video {\n\t\t\twidth: 100% !important;\n\t\t}\n\t\t.fluid-width-video-wrapper {\n\t\t\tpadding-top: 0 !important;\n\t\t}\n\t}\n\n}\n\n\n\n\n\n\n\n\n\n\n\n.clear {\n clear: both;\n width: 100%;\n}\n.llms-featured-image {\n text-align: center;\n}\n\n#main-content .llms-payment-options p {\n margin: 0;\n font-size: 16px;\n}\n\n.llms-option {\n display: block;\n position: relative;\n margin: 20px 0;\n padding-left:40px;\n font-size: 16px;\n\n label {\n cursor: pointer;\n position: static;\n }\n}\n.llms-option:first-child {\n margin-top:0;\n}\n.llms-option:last-child {\n margin-bottom:0;\n}\n#main-content .llms-option:last-child {\n margin-bottom:0;\n}\n\n.llms-option input[type=\"radio\"] {\n display: block;\n position: absolute;\n top:3px;\n left:0;\n z-index: 0;\n}\n\n.llms-option input[type=\"radio\"] {\n display: inline-block;\n}\n.llms-option input[type=\"radio\"] + label span.llms-radio {\n display: none;\n}\n\n.llms-option input[type=\"radio\"] + label span.llms-radio {\n appearance: none;\n\n z-index: 20;\n position: absolute;\n top: 0;\n left: -2px;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n vertical-align: middle;\n box-shadow: hsla(0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.5) 0 0 0 1px;\n\n background: #efefef;\n background-image: radial-gradient(ellipse at center, $color-red 0%,$color-red 40%,#efefef 45%);\n background-repeat: no-repeat;\n\n transition: background-position .15s cubic-bezier(.8, 0, 1, 1);\n}\n.llms-option input[type=\"radio\"]:checked + label span.llms-radio {\n transition: background-position .2s .15s cubic-bezier(0, 0, .2, 1);\n}\n\n.llms-option input[type=\"radio\"] + label span.llms-radio {\n background-position: -24px 0;\n}\n.llms-option input[type=\"radio\"]:checked + label span.llms-radio {\n background-position: 0 0;\n}\n\n.llms-option input[type=\"submit\"] {\n border:none;\n background:$color-red;\n color:#fff;\n font-size:20px;\n padding:10px 0;\n border-radius:3px;\n cursor:pointer;\n width:100%;\n}\n.llms-styled-text {\n padding: 14px 0;\n}\n.llms-notice-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n //background: #fffef4;\n border: 1px solid #ccc;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n input[type=\"text\"] {\n height: auto;\n }\n .col-1-1 {\n width: 100%;\n input[type=text] {\n width: 100%;\n }\n }\n .col-1-2 {\n width: 50%;\n float: left;\n @media screen and (max-width: $break-medium) {\n width: 100%;\n }\n }\n .col-1-3 {\n width: 33%;\n float: left;\n margin-right: 10px;\n }\n .col-1-4 {\n width: 25%;\n float: left;\n margin-right: 10px;\n @media screen and (max-width: $break-medium) {\n width: 100%;\n }\n }\n .col-1-6 {\n width: 16.6%;\n float: left;\n margin-right: 10px;\n }\n .col-1-8 {\n width: 11%;\n float: right;\n }\n .llms-pad-right {\n padding-right: 10px;\n @media screen and (max-width: $break-medium) {\n padding-right: 0;\n }\n }\n}\ninput[type=\"text\"].cc_cvv,\n#cc_cvv {\n margin-right: 0;\n width: 23%;\n float: right;\n}\n.llms-clear-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n.llms-price-label {\n font-weight: normal;\n}\n.llms-final-price {\n font-weight: bold;\n float: right;\n}\n.llms-center-content {\n text-align: center;\n}\n.llms-input-text {\n background-color: #fff;\n border: 1px solid #ddd;\n color: #333;\n font-size: 18px;\n font-weight: 300;\n padding: 16px;\n width: 100%;\n}\n.llms-price {\n margin-bottom: 0;\n font-weight: bold;\n}\n.llms-price-loop {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n// hentry overrides\n.courses .entry {\n padding: 0\n}\n.list-view .site-content .llms-course-list .hentry, .list-view .site-content .llms-membership-list .hentry {\n border-top: 0;\n padding-top: 0;\n}\n.llms-content {\n width: 100%;\n}\n\n.llms-lesson-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n.llms-template-wrapper {\n width: 100%;\n display: block;\n clear: both;\n}\n.llms-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n\n//custom select box\n.llms-styled-select {\n border: 1px solid #ccc;\n box-sizing: border-box;\n border-radius: 3px;\n overflow: hidden;\n position: relative;\n}\n.llms-styled-select, .llms-styled-select select {\n width: 100%;\n}\nselect:focus { outline: none; }\n.llms-styled-select select {\n height: 34px;\n padding: 5px 0 5px 5px;\n background: transparent;\n border: none;\n -webkit-appearance: none;\n font-size: 16px;\n color: #444444;\n}\n\n@-moz-document url-prefix(){\n .--ms-styled-select select { width: 110%; }\n}\n\n.llms-styled-select .fa-sort-desc {\n position: absolute;\n top: 0;\n right: 12px;\n font-size: 24px;\n color: #ccc;\n}\n\nselect::-ms-expand { display: none; }\n\n_:-o-prefocus, .selector {\n .llms-styled-select { background: none; }\n}\n\n.llms-form-item-wrapper {\n margin-bottom: 1em;\n}\n\n/* Circle Graph */\n.llms-progress-circle {\n position: relative;\n width: 200px;\n height: 200px;\n float: left;\n}\n\n.llms-progress-circle-count {\n top: 27%;\n position: absolute;\n width: 94%;\n text-align: center;\n color: #666;\n font-size:44px;\n}\n.llms-progress-circle svg {\n position: absolute;\n width: 200px;\n height: 200px;\n}\n.llms-progress-circle circle {\n fill: transparent;\n}\nsvg .llms-background-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #f1f2f1;\n stroke-dasharray: 430;\n}\n\nsvg .llms-animated-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #e5554e;\n stroke-dasharray: 430;\n stroke-dashoffset: 430 - 20\n}\n\n\n\n\n\n\n\n.llms-widget-syllabus {\n\n .llms-lesson.current-lesson .lesson-title {\n \tfont-weight: 700;\n }\n\n .llms-lesson-complete, .lesson-complete-placeholder {\n font-size: 1.2em;\n margin-right: 6px;\n color: #ccc;\n &.done {\n color: #e5554e;\n }\n }.section-title {\n font-weight: bold;\n }.lesson-title {\n a {\n text-decoration: none;\n &:hover {\n text-decoration: none !important;\n }\n }\n &.done {\n a {\n color: #999;\n text-decoration: line-through;\n }\n }\n }\n ul {\n list-style-type: none;\n li {\n list-style-type: none;\n ul li {\n margin: 0 0 2px 0;\n padding: 0;\n }\n }\n }\n}\n\n\n\n.llms-remove-coupon {\n float: right;\n}\n\n\n\n\n\n.llms-lesson-link-locked, .llms-lesson-link-locked:hover {\n background: #f1f1f1;\n box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n display: block;\n color: #a6a6a6;\n min-height: 85px;\n padding: 15px;\n text-decoration: none;\n position: relative;\n}\n\n.llms-lesson-preview.is-complete .llms-lesson-link-locked {\n padding-left: 75px;\n}\n\n.llms-lesson-tooltip { \tdisplay: none;\n\t\t\t\tposition:absolute;\n\t\t\t\tcolor: #000000;\n\t\t\t\tbackground-color: #c0c0c0;\n\t\t\t\tpadding:.25em;\n\t\t\t\tborder-radius: 2px;\n\t\t\t\tz-index: 100;\n \t\t\t\ttop:0;\n \t\t\tleft:50%;\n \t\t\ttext-align: center;\n \t\t\t-webkit-transform: translateX(-50%) translateY(-100%);\n \t\t\t transform: translateX(-50%) translateY(-100%);\n\t\t\t}\n\n/* arrows - :after */\n.llms-lesson-tooltip:after {\n content: \"\";\n width: 0;\n height: 0;\n border-top: 8px solid #c0c0c0;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n position:absolute;\n bottom:-8px;\n left:50%;\n transform: translateX(-50%);\n}\n\n.llms-lesson-tooltip.active {\n display: inline-block;\n}\n",".llms-loop-list {\n\t@extend %clearfix;\n\n\tlist-style: none;\n\tmargin: 0 -10px;\n\tpadding: 0;\n\n\t@media all and (min-width: 600px) {\n\t\t$cols: 1;\n\t\t@while $cols <= 6 {\n\t\t\t&.cols-#{$cols} .llms-loop-item {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n\n\n}\n\n.llms-loop-item {\n\tfloat: left;\n\tlist-style: none;\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100%;\n}\n\n\n\t.llms-loop-item-content {\n\t\tbackground: #f1f1f1;\n\t\tpadding-bottom: 10px;\n\t\tmargin: 10px;\n\n\t\t&:hover {\n\t\t\tbackground: #eaeaea;\n\t\t}\n\n\t\t.llms-loop-link {\n\t\t\tcolor: #212121;\n\t\t\tdisplay: block;\n\t\t\t&:visited {\n\t\t\t\tcolor: #212121;\n\t\t\t}\n\t\t}\n\n\t\t.llms-featured-image {\n\t\t\tdisplay: block;\n\t\t\tmax-width: 100%;\n\t\t}\n\n\t\t.llms-loop-title {\n\t\t\tmargin-top: 5px;\n\t\t\t&:hover {\n\t\t\t\tcolor: $color-brand-blue;\n\t\t\t}\n\t\t}\n\n\t\t.llms-meta,\n\t\t.llms-author,\n\t\t.llms-loop-title {\n\t\t\tpadding: 0 10px;\n\t\t}\n\n\t\t.llms-meta,\n\t\t.llms-author {\n\t\t\tcolor: #444;\n\t\t\tdisplay: block;\n\t\t\tfont-size: 13px;\n\t\t\tmargin-bottom: 3px;\n\t\t\t&:last-child {\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t}\n\n\t\t.llms-featured-img-wrap {\n\t\t\toverflow: hidden;\n\t\t}\n\n\t\tp {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t.llms-progress {\n\t\t\tmargin: 0;\n\t\t\theight: .4em;\n\n\t\t\t.progress__indicator {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.llms-progress-bar {\n\t\t\t\tbackground-color: #f6f6f6;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t}\n\n\t}\n\n\n\n// .llms-membership-list .memberships {\n// border-top: 1px solid #f6f6f6;\n// width: 100%;\n// display: inline-block;\n// text-align: center;\n// list-style: none;\n// clear: both;\n// margin: 0;\n// padding: 0;\n// }\n\n\n\n// .llms-course-list {\n\n// .llms-membership-link {\n// @extend %llms-element;\n\n// display: block\n// }\n\n// .llms-membership-footer {\n// border-top: 3px solid $color-white;\n// margin: 15px -15px 0;\n// padding: 15px 15px 0;\n// text-align: center;\n// }\n\n// }\n\n\n\n\n// .llms-membership-list .memberships li {\n// width: 300px;\n// margin: 15px;\n// list-style: none;\n// vertical-align: top;\n// display: inline-block;\n// text-align: left;\n// }\n\n// .llms-membership-list .memberships li.first {\n// margin-left: 0;\n// }\n\n// .llms-membership-list .memberships li.last {\n// margin-right: 15px;\n// }\n\n// .llms-membership-list .memberships li .llms-title {\n// display: block;\n// font-weight: 700;\n// margin-bottom: .5em;\n// font-size: 18px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n// .llms-membership-list .memberships li .llms-price {\n// display: block;\n// font-weight: 700;\n// // margin-bottom: .5em;\n// // font-size: 24px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n// .llms-course-list {\n// //margin: 30px 0;\n// padding: 30px;\n// //background: #FFF;\n// // border-radius: 2px;\n// display: inline-block;\n// width: 100%;\n// box-sizing: border-box;\n\n// .llms-course-link {\n// @extend %llms-element;\n\n// display: block\n// }\n\n// .llms-course-footer {\n// border-top: 3px solid $color-white;\n// margin: 15px -15px 0;\n// padding: 15px 15px 0;\n// text-align: center;\n// }\n\n// .llms-progress {\n// margin-top: 0;\n// // .progress-bar {\n// // background-color: $color-white;\n// // }\n// }\n\n// }\n\n// .llms-course-list .courses {\n// //border-top: 1px solid #f6f6f6;\n// width: 100%;\n// display: inline-block;\n// text-align: center;\n// list-style: none;\n// clear: both;\n// margin: 0;\n// padding: 0;\n// }\n\n// .llms-course-list .courses li {\n// width: 300px;\n// padding-top: 0; // twentyfifteen compat\n// margin: 15px;\n// list-style: none;\n// vertical-align: top;\n// display: inline-block;\n// text-align: left;\n// }\n// @media screen and (max-width: $break-small) {\n// .llms-course-list {\n// padding: 30px 10px;\n\n// .courses li {\n// width: auto;\n// }\n// }\n// }\n\n// // .llms-course-list .courses li.first {\n// // \tmargin-left: 0;\n// // }\n\n// .llms-course-list .courses li.last {\n// margin-right: 15px;\n// }\n\n// .llms-course-list .courses li .llms-title {\n// display: block;\n// font-weight: 700;\n// margin-bottom: .5em;\n// font-size: 18px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n// .llms-course-list .courses li .llms-price {\n// display: block;\n// font-weight: 700;\n// // margin-bottom: .5em;\n// // font-size: 24px;\n// text-decoration: none;\n// line-height: 30px;\n// }\n\n\n\n\n// .courses a.llms-course-link:hover {\n// text-decoration: none;\n// }\n",".course {\n\t.llms-meta-info {\n\t\tmargin: 20px 0;\n\t\t.llms-meta-title {\n\t\t\tmargin-bottom: 5px;\n\t\t}\n\t\t.llms-meta {\n\t\t\tp {\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t\tspan {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\t}\n\t.llms-course-progress {\n\t\tmargin: 40px auto;\n\t\tmax-width: 480px;\n\t\ttext-align: center;\n\t}\n}\n",".llms-syllabus-wrapper {\n\n\tmargin: 15px;\n\ttext-align: center;\n\n\t.llms-section-title {\n\t\tmargin: 25px 0 0;\n\t}\n\n}\n\n.llms-course-navigation {\n\t@extend %clearfix;\n\n\t.llms-prev-lesson,\n\t.llms-next-lesson,\n\t.llms-back-to-course {\n\t\twidth: 49%;\n\t}\n\n\t.llms-prev-lesson,\n\t.llms-back-to-course {\n\t\tfloat: left;\n\t\tmargin-right: 0.5%;\n\t}\n\n\t.llms-next-lesson,\n\t.llms-prev-lesson + .llms-back-to-course {\n\t\tfloat: right;\n\t\tmargin-left: 0.5%;\n\t}\n\n}\n\n.llms-lesson-preview {\n\tdisplay: inline-block;\n\tmargin-top: 15px;\n\tmax-width: 100%;\n\tposition: relative;\n\twidth: 480px;\n\n\t.llms-lesson-link {\n\t\tbackground: #f1f1f1;\n\t\tcolor: #212121;\n\t\tdisplay: block;\n\t\t// height: 100%;\n\t\tpadding: 15px;\n\t\ttext-decoration: none;\n\n\t\t@include clearfix();\n\n\t\t&:hover {\n\t\t\tbackground: #eaeaea;\n\t\t}\n\n\t\t&:visited {\n\t\t\tcolor: #212121;\n\t\t}\n\n\t}\n\n\t.llms-lesson-thumbnail {\n\t\tmargin-bottom: 10px;\n\t\timg {\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t.llms-pre-text {\n\t\ttext-align: left;\n\t}\n\n\t.llms-lesson-title {\n\t\tfont-weight: 700;\n\t\tmargin: 0 auto 10px;\n\t\ttext-align: left;\n\t\t&:last-child {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t}\n\n\t.llms-lesson-excerpt {\n\t\ttext-align: left;\n\t}\n\n\t.llms-main {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t}\n\t.llms-extra {\n\t\tfloat: right;\n\t\twidth: 15%;\n\t}\n\n\t.llms-extra + .llms-main {\n\t\twidth: 85%;\n\t}\n\n\t.llms-lesson-counter,\n\t.llms-free-lesson-svg,\n\t.llms-lesson-complete,\n\t.llms-lesson-complete-placeholder {\n\t\tdisplay: block;\n\t\tfont-size: 32px;\n\t\tmargin-bottom: 15px;\n\t}\n\n\t&.is-free,\n\t&.is-complete {\n\t\t.llms-lesson-complete {\n\t\t\tcolor: $color-brand-blue;\n\t\t}\n\t}\n\n\t.llms-icon-free {\n\t\tbackground: $color-brand-blue;\n\t\tborder-radius: 4px;\n\t\tcolor: #f1f1f1;\n\t\tdisplay: inline-block;\n\t\tpadding: 5px 6px 4px;\n\t\tline-height: 1;\n\t\tfont-size: 14px;\n\t}\n\n\t&.is-incomplete {\n\t\t.llms-lesson-complete {\n\t\t\tcolor: #cacaca;\n\t\t}\n\t}\n\n\t.llms-lesson-counter {\n\t\tfont-size: 16px;\n\t\tline-height: 1;\n\t}\n\n\t.llms-free-lesson-svg {\n\t\tfill: currentColor;\n\t\theight: 23px;\n\t\twidth: 50px;\n\t}\n\n\tp {\n\t\tmargin-bottom: 0;\n\t}\n\n}\n","/* progress bar */\n.llms-progress {\n\tclear: both;\n\tdisplay: flex;\n\tflex-direction: row-reverse;\n\tposition: relative;\n\theight: 1em;\n\twidth: 100%;\n\tmargin: 15px 0;\n}\n\n.llms-progress .llms-progress-bar {\n\tbackground-color: #f1f2f1;\n\tposition: relative;\n\theight: .4em;\n\ttop: .3em;\n\twidth: 100%;\n}\n\n.llms-progress .progress-bar-complete {\n\tbackground-color: $color-brand-pink;\n\theight: 100%;\n}\n\n.progress__indicator {\n\tfloat: right;\n\ttext-align: right;\n\theight: 1em;\n\tline-height: 1em;\n\tmargin-left: 5px;\n\twhite-space: nowrap;\n}\n",".llms-author {\n\t.name {\n\t\tmargin-left: 5px;\n\t}\n\t.label {\n\t\tmargin-left: 5px;\n\t}\n\t.avatar {\n\t\tborder-radius: 50%;\n\t}\n\t.bio {\n\t\tmargin-top: 5px;\n\t}\n}\n\n\n.llms-instructor-info {\n\t.llms-instructors {\n\n\t\t.llms-col {\n\t\t\t&:first-child .llms-author {\n\t\t\t\tmargin-left: 0;\n\t\t\t}\n\t\t\t&:last-child .llms-author {\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\n\t\t.llms-author {\n\n\t\t\tbackground: #f5f5f5;\n\t\t\tborder-top: 4px solid $color-brand-blue;\n\t\t\ttext-align: center;\n\t\t\tmargin: 45px 5px 5px;\n\t\t\tpadding: 0 10px 10px;\n\n\t\t\t.avatar {\n\t\t\t\tbackground: $color-brand-blue;\n\t\t\t\tborder: 4px solid $color-brand-blue;\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: -35px auto 10px;\n\t\t\t}\n\n\t\t\t.llms-author-info {\n\t\t\t\tdisplay: block;\n\t\t\t\t// margin: 0 0 5px;\n\t\t\t\t&.name {\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t}\n\t\t\t\t&.label {\n\t\t\t\t\tfont-size: 85%;\n\t\t\t\t}\n\t\t\t\t&.bio {\n\t\t\t\t\tfont-size: 90%;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n",".llms_review {\n\tmargin: 20px 0px;\n\tpadding: 10px;\n\n\th5 {\n\t\tfont-size: 17px;\n\t\tmargin: 3px 0px;\n\t}\n\n\th6 {\n\t\tfont-size: 13px;\n\t}\n\n\tp {\n\t\tfont-size: 15px;\n\t}\n}\n\n.review_box {\n\n\t[type=text] {\n\t\tmargin: 10px 0px\n\t}\n\n\th5 {\n\t\tcolor: red;\n\t\tdisplay: none;\n\t}\n\n\t+ .thank_you_box {\n\t\tdisplay: none;\n\t}\n}\n",".llms-notice {\n\tbackground: rgba( $color-brand-blue, .3 );\n\tborder-color: $color-brand-blue;\n\tborder-style: solid;\n\tborder-width: 3px;\n\tpadding: 10px;\n\tmargin-bottom: 10px;\n\n\tp, ul {\n\t\t&:last-child { margin-bottom: 0; }\n\t}\n\n\tli {\n\t\tlist-style-type: none;\n\t}\n\n\t&.llms-debug {\n\t\tbackground: rgba( #cacaca, .3 );\n\t\tborder-color: #cacaca;\n\t}\n\n\t&.llms-error {\n\t\tbackground: rgba( $color-red, .3 );\n\t\tborder-color: $color-red;\n\t}\n\n\t&.llms-success {\n\t\tbackground: rgba( $color-green, .3 );\n\t\tborder-color: $color-green;\n\t}\n\n}\n\n// this helps genesis and numerous other themes out a bit\n// by being slightly more specific\n.entry-content .llms-notice {\n\tmargin: 0 0 10px;\n\tli {\n\t\tlist-style-type: none;\n\t}\n}\n","ul.llms-achievements-loop,\n.lifterlms ul.llms-achievements-loop,\nul.llms-certificates-loop,\n.lifterlms ul.llms-certificates-loop {\n\n\t@include clearfix();\n\tlist-style-type: none;\n\tmargin: 0 -10px;\n\tpadding: 0;\n\n\tli.llms-achievement-loop-item,\n\tli.llms-certificate-loop-item {\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 10px;\n\t\twidth: 100%;\n\t}\n\n\t@media all and (min-width: 600px) {\n\t\t$cols: 1;\n\t\t@while $cols <= 5 {\n\t\t\t&.loop-cols-#{$cols} li.llms-achievement-loop-item,\n\t\t\t&.loop-cols-#{$cols} li.llms-certificate-loop-item {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n\n}\n\n.llms-achievement,\n.llms-certificate {\n\n\tbackground: #f1f1f1;\n\tborder: none;\n\tcolor: inherit;\n\tdisplay: block;\n\ttext-decoration: none;\n\twidth: 100%;\n\n\t&:hover {\n\t\tbackground: #eaeaea;\n\t}\n\n\t.llms-achievement-img {\n\t\tdisplay: block;\n\t\tmargin: 0;\n\t\twidth: 100%;\n\t}\n\n\t.llms-achievement-title {\n\t\tfont-size: 16px;\n\t\tmargin: 0;\n\t\tpadding: 10px;\n\t\ttext-align: center;\n\t}\n\n\t.llms-certificate-title {\n\t\tfont-size: 16px;\n\t\tmargin: 0;\n\t\tpadding: 0 0 10px;\n\t}\n\n\t.llms-achievement-info,\n\t.llms-achievement-date {\n\t\tdisplay: none;\n\t}\n\n\t.llms-achievement-content {\n\t\tpadding: 20px;\n\t\t&:empty {\n\t\t\tpadding: 0;\n\t\t}\n\t\t*:last-child {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t}\n\n}\n\n.llms-certificate {\n\tborder: 4px double #f1f1f1;\n\tpadding: 20px 10px;\n\tbackground: #fff;\n\ttext-align: center;\n\t&:hover {\n\t\tbackground: #fff;\n\t\tborder-color: #eaeaea;\n\t}\n}\n\n.llms-achievement-modal {\n\t.llms-achievement {\n\t\tbackground: #fff;\n\t}\n\t.llms-achievement-info {\n\t\tdisplay: block;\n\t}\n\t.llms-achievement-title {\n\t\tdisplay: none;\n\t}\n}\n",".llms-notification {\n\n\t@include clearfix();\n\n\tbackground: #fff;\n\tbox-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n\tborder-top: 4px solid $color-blue;\n\topacity: 0;\n\tpadding: 12px;\n\tposition: fixed;\n\tright: -800px;\n\ttop: 24px;\n\ttransition:\n\t\topacity 0.4s ease-in-out,\n\t\tright 0.4s ease-in-out,\n\t;\n\tvisibility: hidden;\n\twidth: auto;\n\tz-index: 9999999;\n\n\t&.visible {\n\t\tleft: 12px;\n\t\topacity: 1;\n\t\tright: 12px;\n\t\ttransition:\n\t\t\topacity 0.4s ease-in-out,\n\t\t\tright 0.4s ease-in-out,\n\t\t\ttop 0.1s ease-in-out,\n\t\t\tbackground 0.2s ease-in-out,\n\t\t\ttransform 0.2s ease-in-out\n\t\t;\n\t\tvisibility: visible;\n\n\t\t&:hover {\n\t\t\t.llms-notification-dismiss {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t.llms-notification-content {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\n\t}\n\n\t\t.llms-notification-main {\n\t\t\talign-self: flex-start;\n\t\t\tflex: 4;\n\t\t\torder: 2;\n\t\t}\n\n\t\t\t.llms-notification-title {\n\t\t\t\tfont-size: 18px;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.llms-notification-body {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tline-height: 1.4;\n\t\t\t\tp, li {\n\t\t\t\t\tfont-size: inherit;\n\t\t\t\t}\n\t\t\t\tp {\n\t\t\t\t\tmargin-bottom: 8px;\n\t\t\t\t}\n\n\t\t\t\t.llms-mini-cert {\n\t\t\t\t\tbackground: #f6f6f6;\n\t\t\t\t\tborder: 1px solid #d0d0d0;\n\t\t\t\t\tbox-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n\t\t\t\t\tpadding: 16px 16px 24px;\n\t\t\t\t\tmargin-top: 12px;\n\t\t\t\t\t.llms-mini-cert-title {\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tfont-weight: 700;\n\t\t\t\t\t\tmargin: 12px auto;\n\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t}\n\t\t\t\t\t.llms-mini-cert--body {\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t> div {\n\t\t\t\t\t\t\t&:nth-child(1) { width:65%; }\n\t\t\t\t\t\t\t&:nth-child(2) { width:35%; }\n\t\t\t\t\t\t\t&:nth-child(3) { width:85%; }\n\t\t\t\t\t\t\t&:nth-child(4) { width:75%; margin-top: 18px; }\n\t\t\t\t\t\t\t&:nth-child(5) { width:70%; }\n\t\t\t\t\t\t\t&:nth-child(6) { margin-left: 12px; margin-bottom:-24px; } // Dot.\n\t\t\t\t\t\t\t&:nth-child(7) { width:65%; margin-right: 12px; }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t.llms-mini-cert--mock-line {\n\t\t\t\t\t\tborder-radius: 2px;\n\t\t\t\t\t\theight: 8px;\n\t\t\t\t\t\tbackground: #b0b0b0;\n\t\t\t\t\t\tbackground-image: linear-gradient( to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100% );\n\t\t\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t\t\tmargin: 4px auto;\n\t\t\t\t\t}\n\t\t\t\t\t.llms-mini-cert--mock-dot {\n\t\t\t\t\t\tbackground: #b0b0b0;\n\t\t\t\t\t\tborder-radius: 50%;\n\t\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t}\n\t\t\t\t\tp { margin-bottom: 0; }\n\t\t\t\t}\n\t\t\t}\n\n\t\t.llms-notification-aside {\n\t\t\talign-self: flex-start;\n\t\t\tflex: 1;\n\t\t\tmargin-right: 12px;\n\t\t\torder: 1;\n\t\t}\n\n\t\t\t.llms-notification-icon {\n\t\t\t\tdisplay: block;\n\t\t\t\tmax-width: 64px;\n\t\t\t}\n\n\t.llms-notification-footer {\n\t\tborder-top: 1px solid #e5e5e5;\n\t\tfont-size: 12px;\n\t\tmargin-top: 12px;\n\t\tpadding: 6px 6px 0;\n\t\ttext-align: right;\n\t}\n\n\t.llms-notification-dismiss {\n\t\tcolor: $color-danger;\n\t\tcursor: pointer;\n\t\tfont-size: 22px;\n\t\tposition: absolute;\n\t\tright: 10px;\n\t\ttop: 8px;\n\t\ttransition: opacity 0.4s ease-in-out;\n\t}\n\n}\n\n.llms-sd-notification-center {\n\n\t.llms-notification-list,\n\t.llms-notification-list-item {\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t.llms-notification-list-item {\n\t\t&:hover .llms-notification {\n\t\t\tbackground: #fcfcfc;\n\t\t}\n\t}\n\n\t.llms-notification {\n\t\topacity: 1;\n\t\tborder-top: 1px solid #e5e5e5;\n\t\tleft: auto;\n\t\tpadding: 24px;\n\t\tposition: relative;\n\t\tright: auto;\n\t\ttop: auto;\n\t\tvisibility: visible;\n\t\twidth: auto;\n\t\t.llms-notification-aside {\n\t\t\tmax-width: 64px;\n\t\t}\n\t\t.llms-notification-footer {\n\t\t\tborder: none;\n\t\t\tpadding: 0;\n\t\t\ttext-align: left;\n\t\t}\n\t\t.llms-progress {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t.llms-notification-date {\n\t\t\tcolor: #515151;\n\t\t\tfloat: left;\n\t\t\tmargin-right: 6px;\n\t\t}\n\t\t.llms-mini-cert {\n\t\t\tmargin: 0 auto;\n\t\t\tmax-width: 380px;\n\t\t}\n\t}\n}\n\n@media all and (min-width: 480px) {\n\t.llms-notification {\n\t\tright: -800px;\n\t\twidth: 360px;\n\t\t&.visible {\n\t\t\tleft: auto;\n\t\t\tright: 24px;\n\t\t}\n\t\t.llms-notification-dismiss {\n\t\t\topacity: 0;\n\t\t}\n\t}\n}\n",".llms-pagination {\n\n\tul {\n\t\tlist-style-type: none;\n\t\t@extend %cf;\n\n\t\tli {\n\n\t\t\tfloat: left;\n\n\t\t\ta {\n\t\t\t\tborder-bottom: 0;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\n\t\t\t.page-numbers {\n\t\t\t\tpadding: 0.5em;\n\t\t\t\ttext-decoration: underline;\n\n\t\t\t\t&.current {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}",".llms-tooltip {\n\n\tbackground: #2a2a2a;\n\tborder-radius: 4px;\n\tcolor: #fff;\n\tfont-size: 14px;\n\tline-height: 1.2;\n\topacity: 0;\n\ttop: -20px;\n\tpadding: 8px 12px;\n\tleft: 50%;\n\tposition: absolute;\n\tpointer-events: none;\n\ttransform: translateX( -50% );\n\ttransition: opacity .2s ease, top .2s ease;\n\tmax-width: 320px;\n\n\t&.show {\n\t\ttop: -28px;\n\t\topacity: 1;\n\t}\n\n\t&:after {\n\n\t\tbottom: -8px;\n\t\tborder-top: 8px solid #2a2a2a;\n\t\tborder-left: 8px solid transparent;\n\t\tborder-right: 8px solid transparent;\n\t\tcontent: '';\n\t\theight: 0;\n\t\tleft: 50%;\n\t\tposition: absolute;\n\t\ttransform: translateX( -50% );\n\t\twidth: 0;\n\n\t}\n\n}\n\n\n\n.webui-popover-title {\n\tfont-size: initial;\n\tfont-weight: initial;\n\tline-height: initial;\n}\n.webui-popover-inverse {\n\t.webui-popover-inner .close {\n\t\tcolor: #fff;\n\t\topacity: 0.6;\n\t\ttext-shadow: none;\n\t\t&:hover {\n\t\t\topacity: 0.8;\n\t\t}\n\t}\n\t.webui-popover-content a {\n\t\tcolor: #fff;\n\t\ttext-decoration: underline;\n\t\t&:hover {\n\t\t\ttext-decoration: none;\n\t\t}\n\t}\n}\n",".llms-quiz-attempt-results {\n\tmargin: 0;\n\tpadding: 0;\n\tlist-style-type: none;\n\n\t.llms-quiz-attempt-question {\n\t\tbackground: #efefef;\n\t\tmargin: 0 0 10px;\n\t\tposition: relative;\n\t\tlist-style-type: none;\n\t\t.toggle-answer {\n\t\t\t@include clearfix();\n\t\t\tcolor: inherit;\n\t\t\tdisplay: block;\n\t\t\tpadding: 10px 35px 10px 10px;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t&.status--waiting.correct,\n\t\t&.status--waiting.incorrect {\n\t\t\tbackground: rgba( $color-orange, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-orange;\n\t\t\t}\n\t\t}\n\n\t\t&.status--graded.correct {\n\t\t\tbackground: rgba( $color-green, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-green;\n\t\t\t}\n\t\t}\n\t\t&.status--graded.incorrect {\n\t\t\tbackground: rgba( $color-red, 0.2 );\n\t\t\t.llms-status-icon {\n\t\t\t\tbackground-color: $color-red;\n\t\t\t}\n\t\t}\n\t\tpre {\n\t\t\toverflow: auto;\n\t\t}\n\t\t.llms-question-title {\n\t\t\tfloat: left;\n\t\t\tmargin: 0;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-points {\n\t\t\tfloat: right;\n\t\t\tline-height: 1;\n\t\t}\n\n\t\t.llms-status-icon-tip {\n\t\t\tposition: absolute;\n\t\t\tright: -12px;\n\t\t\ttop: -2px;\n\t\t}\n\n\t\t.llms-status-icon {\n\t\t\tcolor: rgba( 255, 255, 255, 0.65 );\n\t\t\tborder-radius: 50%;\n\t\t\tfont-size: 30px;\n\t\t\theight: 40px;\n\t\t\tline-height: 40px;\n\t\t\ttext-align: center;\n\t\t\twidth: 40px;\n\t\t}\n\n\t\t.llms-quiz-attempt-question-main {\n\t\t\tdisplay: none;\n\t\t\tpadding: 0 10px 10px;\n\n\t\t\t.llms-quiz-results-label {\n\t\t\t\tfont-weight: 700;\n\t\t\t\tmargin-bottom: 10px;\n\t\t\t}\n\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tpadding: 0;\n\t\t\t\t\tmargin: 0 0 0 30px;\n\t\t\t\t\t&:only-child {\n\t\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tmax-width: 200px;\n\t\t\t}\n\n\t\t\t.llms-quiz-attempt-answer-section {\n\t\t\t\tborder-top: 2px solid rgba( #fff, 0.5 );\n\t\t\t\tmargin-top: 20px;\n\t\t\t\tpadding-top: 20px;\n\t\t\t\t&:first-child {\n\t\t\t\t\tborder-top: none;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tpadding-top: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t&.type--picture_choice,\n\t\t&.type--picture_reorder {\n\t\t\tul.llms-quiz-attempt-answers {\n\t\t\t\tlist-style-type: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli.llms-quiz-attempt-answer {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: 5px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type--removed {\n\t\t\t.llms-question-title {\n\t\t\t\tfont-style: italic;\n\t\t\t\tfont-weight: normal;\n\t\t\t}\n\t\t\topacity: .5;\n\t\t}\n\n\t}\n}\n",".single-llms_quiz {\n\t#llms-quiz-wrapper {\n\t\t@import \"../_includes/quiz-result-question-list\";\n\t}\n\t.llms-return {\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.llms-quiz-results {\n\t\t@include clearfix();\n\n\t\t.llms-donut {\n\t\t\t&.passing {\n\t\t\t\tcolor: $color-success;\n\t\t\t\tsvg path {\n\t\t\t\t\tstroke: $color-success;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&.pending {\n\t\t\t\tcolor: #555;\n\t\t\t\tsvg path {\n\t\t\t\t\tstroke: #555;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&.failing {\n\t\t\t\tcolor: $color-danger;\n\t\t\t\tsvg path {\n\t\t\t\t\tstroke: $color-danger;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.llms-quiz-results-aside,\n\t\t.llms-quiz-results-main,\n\t\t.llms-quiz-results-history {\n\t\t\tmargin-bottom: 20px;\n\t\t}\n\n\n\t\t@media all and (min-width: 600px) {\n\t\t\t.llms-quiz-results-aside {\n\t\t\t\tfloat: left;\n\t\t\t\twidth: 220px;\n\t\t\t}\n\t\t\t.llms-quiz-results-main,\n\t\t\t.llms-quiz-results-history {\n\t\t\t\tfloat: right;\n\t\t\t\twidth: calc( 100% - 300px );\n\t\t\t}\n\t\t\t.llms-quiz-results-history {\n\t\t\t\tclear: right;\n\t\t\t}\n\t\t}\n\n\t}\n\n\tul.llms-quiz-meta-info,\n\tul.llms-quiz-meta-info li {\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0\n\t}\n\n\tul.llms-quiz-meta-info {\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.llms-quiz-buttons {\n\t\tmargin-top: 10px;\n\t\ttext-align: left;\n\n\t\tform { display: inline-block; }\n\t}\n\n}\n\n.llms-quiz-question-wrapper {\n\tmin-height: 140px;\n\tposition: relative;\n\t.llms-quiz-loading {\n\t\tbottom: 20px;\n\t\tleft: 0;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttext-align: center;\n\t\tz-index: 1;\n\t}\n}\n\n.llms-quiz-ui {\n\tbackground: #fcfcfc;\n\tpadding: 20px;\n\tposition: relative;\n\n\t.llms-quiz-header {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\t\tmargin: 0 0 30px;\n\t}\n\n\t.llms-progress {\n\t\tbackground-color: #f1f2f1;\n\t\tflex-direction: row;\n\t\theight: 8px;\n\t\tmargin: 0;\n\t\toverflow: hidden;\n\t\t.progress-bar-complete {\n\t\t\ttransition: width 0.3s ease-in;\n\t\t\twidth: 0;\n\t\t}\n\t}\n\n\t.llms-error {\n\t\t@include clearfix();\n\t\tbackground: $color-danger;\n\t\tborder-radius: 4px;\n\t\tcolor: #fff;\n\t\tmargin: 10px 0;\n\t\tpadding: 10px;\n\n\t\ta {\n\t\t\tcolor: rgba( #fff, 0.6 );\n\t\t\tfloat: right;\n\t\t\tfont-size: 22px;\n\t\t\tline-height: 1;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t}\n\n\t.llms-quiz-counter {\n\t\tdisplay: none;\n\n\t\tcolor: #6a6a6a;\n\t\tfloat: right;\n\t\tfont-size: 18px;\n\n\t\t.llms-sep {\n\t\t\tmargin: 0 5px;\n\t\t}\n\t}\n\n\t.llms-quiz-nav {\n\t\tmargin-top: 20px;\n\t\tbutton {\n\t\t\tmargin: 0 10px 0 0;\n\t\t}\n\t}\n\n}\n\n// single question wrapper\n.llms-question-wrapper {\n\n\t.llms-question-text {\n\t\tfont-size: 30px;\n\t\tfont-weight: 400;\n\t\tmargin-bottom: 15px;\n\t}\n\n\tol.llms-question-choices {\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\n\t\tli.llms-choice {\n\t\t\tborder-bottom: 1px solid #e8e8e8;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tposition: relative;\n\n\t\t\t&:last-child {\n\t\t\t\tborder-bottom: none;\n\t\t\t}\n\n\t\t\t&.type--picture {\n\t\t\t\tborder-bottom: none;\n\t\t\t\tlabel {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tpadding: 0;\n\t\t\t\t}\n\t\t\t\t.llms-marker {\n\t\t\t\t\tbottom: 10px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tright: 10px;\n\t\t\t\t}\n\t\t\t\t.llms-choice-image {\n\t\t\t\t\tmargin: 2px;\n\t\t\t\t\tpadding: 20px;\n\t\t\t\t\ttransition: background 0.4s ease;\n\t\t\t\t\timg {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tinput:checked ~ .llms-choice-image {\n\t\t\t\t\tbackground: #efefef\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tinput {\n\t\t\t\tdisplay: none;\n\t\t\t\tleft: 0;\n\t\t\t\tpointer-events: none;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0;\n\t\t\t\tvisibility: hidden;\n\t\t\t}\n\n\t\t\tlabel {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 10px 20px;\n\t\t\t\tposition: relative;\n\t\t\t\t// &:hover {\n\t\t\t\t&.hovered {\n\t\t\t\t\t.llms-marker:not(.type--lister) {\n\t\t\t\t\t\t.iterator {\n\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.fa {\n\t\t\t\t\t\t\tdisplay: inline;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-marker {\n\n\t\t\t\tbackground: #f0f0f0;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 20px;\n\t\t\t\theight: 40px;\n\t\t\t\tline-height: 40px;\n\t\t\t\tmargin-right: 10px;\n\t\t\t\ttext-align: center;\n\t\t\t\ttransition: all 0.2s ease;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 40px;\n\n\t\t\t\t.fa {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t&.type--lister,\n\t\t\t\t&.type--checkbox { border-radius: 4px; }\n\t\t\t\t&.type--radio { border-radius: 50%; }\n\n\t\t\t}\n\n\t\t\tinput:checked + .llms-marker {\n\t\t\t\tbackground: $color-brand-pink;\n\t\t\t\tcolor: #fff;\n\t\t\t\t.iterator {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t.fa {\n\t\t\t\t\tdisplay: inline;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-choice-text {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tline-height: 1.6;\n\t\t\t\tmargin-bottom: 0;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: calc( 100% - 60px );\n\t\t\t}\n\n\t\t}\n\t}\n\n}\n\n.llms-quiz-timer {\n\tbackground: #fff;\n\tborder: 1px solid $color-green;\n\tborder-radius: 4px;\n\tcolor: $color-green;\n\tfloat: right;\n\tfont-size: 18px;\n\tline-height: 1;\n\tmargin-left: 20px;\n\tpadding: 8px 12px;\n\tposition: relative;\n\twhite-space: nowrap;\n\tz-index: 1;\n\n\t&.color-half {\n\t\tborder-color: $color-orange;\n\t\tcolor: $color-orange\n\t}\n\n\t&.color-empty {\n\t\tborder-color: $color-danger;\n\t\tcolor: $color-danger\n\t}\n\n\t.llms-tiles {\n\t\tdisplay: inline-block;\n\t\tmargin-left: 5px;\n\t}\n}\n\n\n// /* My Quizzes */\n// .llms-quiz-results {\n// @extend %cf;\n// font-family: \"Open Sans\",Verdana,Geneva,sans-serif,sans-serif;\n// position: relative;\n// }\n// .llms-quiz-results > h3 {\n// background-color: #f5f5f5;\n// padding: 4px;\n// }\n\n// .llms-quiz-result-details {\n// float: left;\n// ul {\n// list-style-type: none;\n// float: left;\n// li {\n// list-style-type: none;\n// font-size: 20px;\n// }\n// }\n// }\n// .llms-attempts {\n// font-weight: bold;\n// }\n\n// .llms-pass-perc {\n// font-weight: bold;\n// }\n// .llms-content-block {\n// margin: 6px 0;\n// }\n// .llms-question-wrapper {\n// margin: 40px 0 20px 0;\n// }\n// .llms-question-count {\n// margin-bottom: 20px;\n// }\n\n\n",".voucher-expand {\n\tdisplay: none;\n}",".llms-access-plans {\n\t@extend %clearfix;\n\n\t@media all and (min-width: 600px) {\n\t\t$cols: 1;\n\t\t@while $cols <= 5 {\n\t\t\t&.cols-#{$cols} .llms-access-plan {\n\t\t\t\twidth: calc( 100% / $cols );\n\t\t\t}\n\t\t\t$cols: $cols + 1;\n\t\t}\n\t}\n\n}\n\n.llms-free-enroll-form {\n\tmargin-bottom: 0;\n}\n\n.llms-access-plan {\n\tbox-sizing: border-box;\n\tfloat: left;\n\ttext-align: center;\n\twidth: 100%;\n\n\t.llms-access-plan-footer,\n\t.llms-access-plan-content {\n\t\tbackground: #f1f1f1;\n\t}\n\n\t&.featured {\n\n\t\t.llms-access-plan-featured {\n\t\t\tbackground: lighten( $color-brand-blue, 8 );\n\t\t}\n\n\t\t.llms-access-plan-footer,\n\t\t.llms-access-plan-content {\n\t\t\tborder-left: 3px solid $color-brand-blue;\n\t\t\tborder-right: 3px solid $color-brand-blue;\n\t\t}\n\n\t\t.llms-access-plan-footer {\n\t\t\tborder-bottom-color: $color-brand-blue;\n\t\t}\n\n\t}\n\n\t&.on-sale {\n\t\t.price-regular { text-decoration: line-through; }\n\t}\n\n\t.stamp {\n\t\tbackground: $color-brand-blue;\n\t\tcolor: #fff;\n\t\tfont-size: 11px;\n\t\tfont-style: normal;\n\t\tfont-weight: 300;\n\t\tpadding: 2px 3px;\n\t\tvertical-align: top;\n\t}\n\n\t.llms-access-plan-restrictions ul { margin: 0; }\n\n}\n\t.llms-access-plan-featured {\n\t\tcolor: #fff;\n\t\tfont-size: 14px;\n\t\tfont-weight: 400;\n\t\tmargin: 0 2px 0 2px;\n\t}\n\n\t.llms-access-plan-content {\n\t\tmargin: 0 2px 0;\n\n\t\t.llms-access-plan-pricing {\n\t\t\tpadding: 10px 0 0;\n\t\t}\n\t}\n\n\t\t.llms-access-plan-title {\n\t\t\tbackground: $color-brand-blue;\n\t\t\tcolor: #fff;\n\t\t\tmargin-bottom: 0;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t.llms-access-plan-pricing {\n\n\t\t\t.llms-price-currency-symbol {\n\t\t\t\tfont-size: 14px;\n\t\t\t\tvertical-align: top;\n\t\t\t}\n\n\t\t}\n\n\t\t\t.llms-access-plan-price {\n\t\t\t\tfont-size: 18px;\n\t\t\t\tfont-variant: small-caps;\n\t\t\t\tline-height: 20px;\n\n\t\t\t\t.lifterlms-price {\n\t\t\t\t\tfont-weight: 700;\n\t\t\t\t}\n\n\t\t\t\t&.sale {\n\t\t\t\t\tpadding: 5px 0;\n\t\t\t\t\tborder-top: 1px solid #d0d0d0;\n\t\t\t\t\tborder-bottom: 1px solid #d0d0d0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-access-plan-trial,\n\t\t\t.llms-access-plan-schedule,\n\t\t\t.llms-access-plan-sale-end,\n\t\t\t.llms-access-plan-expiration {\n\t\t\t\tfont-size: 15px;\n\t\t\t\tfont-variant: small-caps;\n\t\t\t\tline-height: 1.2;\n\t\t\t}\n\n\t\t.llms-access-plan-description {\n\t\t\tfont-size: 16px;\n\t\t\tpadding: 10px 10px 0;\n\n\t\t\tul {\n\t\t\t\tmargin: 0;\n\t\t\t\tli {\n\t\t\t\t\tborder-bottom: 1px solid #d0d0d0;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tborder-bottom: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdiv, img, p, ul, li {\n\t\t\t\t&:last-child { margin-bottom: 0; }\n\t\t\t}\n\t\t}\n\n\t\t.llms-access-plan-restrictions {\n\t\t\t.stamp {\n\t\t\t\tvertical-align: baseline;\n\t\t\t}\n\t\t\tul {\n\t\t\t\tmargin: 0;\n\t\t\t\tli {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tline-height: 14px;\n\t\t\t\t\tlist-style-type: none;\n\t\t\t\t}\n\t\t\t}\n\t\t\ta {\n\t\t\t\tcolor: $color-brand-orange;\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $color-brand-orange-dark;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t.llms-access-plan-footer {\n\t\tborder-bottom: 3px solid #f1f1f1;\n\t\tpadding: 10px;\n\t\tmargin: 0 2px 2px 2px;\n\n\t\t.llms-access-plan-pricing {\n\t\t\tpadding: 0 0 10px;\n\t\t}\n\t}\n\n\n.webui-popover-content .llms-members-only-restrictions {\n\ttext-align: center;\n\tul,ol,li,p {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\tul,ol,li {\n\t\tlist-style-type: none;\n\t}\n\tli {\n\t\tpadding: 8px 0;\n\t\tborder-top: 1px solid #3b3b3b;\n\t\t&:first-child {\n\t\t\tborder-top: none;\n\t\t}\n\t\ta {\n\t\t\tdisplay: block;\n\t\t}\n\t}\n}\n",".llms-checkout-wrapper {\n\tform.llms-login {\n\t\tborder: 3px solid $color-brand-blue;\n\t\tdisplay: none;\n\t\tmargin-bottom: 10px;\n\t}\n\t.llms-form-heading {\n\t\tbackground: $color-brand-blue;\n\t\tcolor: #fff;\n\t\tmargin: 0 0 5px;\n\t\tpadding: 10px;\n\t}\n}\n\n.llms-checkout {\n\tbackground: #fff;\n\tposition: relative;\n}\n\n.llms-checkout-cols-2 {\n\t@extend %clearfix;\n\n\t@media all and (min-width: 800px) {\n\n\t\t.llms-checkout-col {\n\t\t\tfloat: left;\n\n\t\t\t&.llms-col-1 {\n\t\t\t\tmargin-right: 5px;\n\t\t\t\twidth: calc( 58% - 5px );\n\t\t\t}\n\t\t\t&.llms-col-2 {\n\t\t\t\tmargin-left: 5px;\n\t\t\t\twidth: calc( 42% - 5px );\n\n\t\t\t\tbutton {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n\n\t.llms-checkout-section {\n\t\tborder: 3px solid $color-brand-blue;\n\t\tmargin-bottom: 10px;\n\t\tposition: relative;\n\t}\n\n\t\t.llms-checkout-section-content {\n\t\t\tmargin: 10px;\n\t\t\t&.llms-form-fields {\n\t\t\t\tmargin: 0px;\n\t\t\t}\n\n\t\t\t.llms-label {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-variant: small-caps;\n\t\t\t\ttext-transform: lowercase;\n\t\t\t}\n\n\t\t\t.llms-order-summary {\n\t\t\t\tlist-style-type: none;\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\n\t\t\t\tli { list-style-type: none; }\n\n\t\t\t\tli.llms-pricing {\n\t\t\t\t\t&.on-sale,\n\t\t\t\t\t&.has-coupon {\n\t\t\t\t\t\t.price-regular { text-decoration: line-through; }\n\t\t\t\t\t}\n\t\t\t\t}\n\n\n\t\t\t}\n\n\t\t\t.llms-coupon-wrapper {\n\t\t\t\tborder-top: 1px solid #dadada;\n\t\t\t\tmargin-top: 10px;\n\t\t\t\tpadding-top: 10px;\n\n\t\t\t\t.llms-coupon-entry {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tmargin-top: 10px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-form-field.llms-payment-gateway-option {\n\n\t\t\tlabel + span.llms-description {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-left: 5px;\n\t\t\t}\n\n\t\t\t.llms-description {\n\t\t\t\ta {\n\t\t\t\t\tborder: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\timg {\n\t\t\t\t\tdisplay: inline;\n\t\t\t\t\tmax-height: 22px;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-checkout-wrapper ul.llms-payment-gateways {\n\t\t\tmargin: 5px 0 0;\n\t\t\tpadding: 0;\n\t\t}\n\t\tul.llms-payment-gateways {\n\t\t\tlist-style-type: none;\n\n\t\t\tli:last-child:after {\n\t\t\t\tborder-bottom: 1px solid #dadada;\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 10px;\n\t\t\t}\n\n\t\t\t.llms-payment-gateway {\n\t\t\t\tmargin-bottom: 5px;\n\t\t\t\tlist-style-type: none;\n\t\t\t\t&:last-child {\n\t\t\t\t\tmargin-bottom: none;\n\t\t\t\t}\n\n\t\t\t\t&.is-selected {\n\t\t\t\t\t.llms-payment-gateway-option label {\n\t\t\t\t\t\tfont-weight: 700;\n\t\t\t\t\t}\n\t\t\t\t\t.llms-gateway-fields {\n\t\t\t\t\t\tdisplay: block;\n\n\t\t\t\t\t\t.llms-notice {\n\t\t\t\t\t\t\tmargin-left: 10px;\n\t\t\t\t\t\t\tmargin-right: 10px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.llms-form-field {\n\t\t\t\t\tpadding-bottom: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t\t.llms-gateway-description {\n\t\t\t\t\tmargin-left: 40px;\n\t\t\t\t}\n\n\t\t\t\t.llms-gateway-fields {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tmargin: 5px 0 20px;\n\t\t\t\t}\n\n\t\t\t.llms-payment-gateway-error {\n\t\t\t\tpadding: 0 10px;\n\t\t\t}\n\t\t}\n\n\t\t.llms-checkout-confirm {\n\t\t\tmargin: 0 10px;\n\t\t}\n\n\t\t.llms-payment-method {\n\t\t\tmargin: 10px 10px 0;\n\t\t}\n\n\t\t.llms-gateway-description {\n\t\t\tp {\n\t\t\t\tfont-size: 85%;\n\t\t\t\tfont-style: italic;\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t}\n",".llms-form-fields {\n\t@extend %clearfix;\n\tbox-sizing: border-box;\n\t& * {\n\t\tbox-sizing: border-box;\n\t}\n\t&.flush {\n\t\t.llms-form-field {\n\t\t\tpadding: 0 0 10px;\n\t\t}\n\t}\n\n\t.wp-block-columns, .wp-block-column {\n\t\tmargin-bottom: 0;\n\t}\n}\n\n\t.llms-form-heading {\n\t\tpadding: 0 10px 10px;\n\t}\n\n\t.llms-form-field {\n\t\tfloat: left;\n\t\tpadding: 0 10px 10px;\n\t\tposition: relative;\n\t\twidth: 100%;\n\n\t\t// Ensure \"empty\" labels don't break the layout.\n\t\t// See the billing_address_2 field which has no label.\n\t\tlabel:empty:after {\n\t\t\tcontent: '\\00a0';\n\t\t}\n\n\t\t&.valid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( #83c373, .3 );\n\t\t\t\tborder-color: #83c373;\n\t\t\t}\n\t\t}\n\n\t\t&.error,\n\t\t&.invalid {\n\t\t\tinput[type=\"date\"], input[type=\"time\"], input[type=\"datetime-local\"], input[type=\"week\"], input[type=\"month\"], input[type=\"text\"], input[type=\"email\"], input[type=\"url\"], input[type=\"password\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"number\"], textarea, select {\n\t\t\t\tbackground: rgba( $color-red, .3 );\n\t\t\t\tborder-color: $color-red;\n\t\t\t}\n\t\t}\n\n\t\t&.llms-visually-hidden-field {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&.align-right {\n\t\t\ttext-align: right;\n\t\t}\n\n\t\t@media screen and ( min-width: 600px ) {\n\t\t\t$i: 1;\n\t\t\t@while $i <= 12 {\n\t\t\t\t&.llms-cols-#{$i} {\n\t\t\t\t\twidth: calc( $i / 12 ) * 100%;\n\t\t\t\t\t$i: $i + 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.type-hidden { padding: 0; }\n\n\t\t&.type-radio,\n\t\t&.type-checkbox {\n\t\t\tinput,\n\t\t\tlabel {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: auto;\n\t\t\t}\n\t\t\tinput {\n\t\t\t\tmargin-right: 5px;\n\t\t\t}\n\t\t\tlabel + .llms-description {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\t\t}\n\n\t\t&.type-radio:not(.is-group) {\n\n\t\t\tinput[type=\"radio\"] {\n\t\t\t\tposition: absolute;\n\t\t\t\topacity: 0;\n\t\t\t\tvisibility: none;\n\t\t\t}\n\n\t\t\tlabel:before {\n\t\t\t\tbackground: #fafafa;\n\t\t\t\tbackground-position: -24px 0;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tbox-shadow: hsla( 0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.35) 0 0 0 1px;\n\t\t\t\tcontent: '';\n\t\t\t\tcursor: pointer;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: 22px;\n\t\t\t\tmargin-right: 5px;\n\t\t\t\tposition: relative;\n\t\t\t\ttransition: background-position .15s cubic-bezier(.8, 0, 1, 1);\n\t\t\t\ttop: -3px;\n\t\t\t\tvertical-align: middle;\n\t\t\t\twidth: 22px;\n\t\t\t\tz-index: 2;\n\t\t\t}\n\n\t\t\tinput[type=\"radio\"]:checked + label:before {\n\t\t\t\ttransition: background-position .2s .15s cubic-bezier(0, 0, .2, 1);\n\t\t\t\tbackground-position: 0 0;\n\t\t\t\tbackground-image: radial-gradient(ellipse at center, $color-brand-blue 0%,$color-brand-blue 40%, #fafafa 45%);\n\t\t\t}\n\n\t\t}\n\n\t\t.llms-input-group {\n\t\t\tmargin-top: 5px;\n\t\t\t.llms-form-field {\n\t\t\t\tpadding: 0 0 5px 5px;\n\t\t\t}\n\t\t}\n\n\t\t&.type-reset,\n\t\t&.type-button,\n\t\t&.type-submit {\n\t\t\tbutton:not(.auto) { width: 100%; }\n\t\t}\n\n\t\t.llms-description {\n\t\t\tfont-size: 14px;\n\t\t\tfont-style: italic;\n\t\t}\n\n\t\t.llms-required {\n\t\t\tcolor: $color-red;\n\t\t\tmargin-left: 4px;\n\t\t}\n\n\t\tinput, textarea, select {\n\t\t\twidth: 100%;\n\t\t\tmargin-bottom: 5px;\n\t\t}\n\n\t\t.select2-container .select2-selection--single {\n\t\t\theight: auto;\n\t\t\tpadding: 4px 6px;\n\t\t}\n\t\t.select2-container--default .select2-selection--single .select2-selection__arrow {\n\t\t\theight: 100%;\n\t\t}\n\n\t}\n\n\n\t.llms-password-strength-meter {\n\t\tborder: 1px solid #dadada;\n\t\tdisplay: none;\n\t\tfont-size: 10px;\n\t\tmargin-top: -10px;\n\t\tpadding: 1px;\n\t\tposition: relative;\n\t\ttext-align: center;\n\n\t\t&:before {\n\t\t\tbottom: 0;\n\t\t\tcontent: '';\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\ttransition: width .4s ease;\n\t\t}\n\n\t\t&.mismatch,\n\t\t&.too-short,\n\t\t&.very-weak {\n\t\t\tborder-color: #e35b5b;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #e35b5b, 0.25 );\n\t\t\t\twidth: 25%;\n\t\t\t}\n\t\t}\n\n\t\t&.too-short:before {\n\t\t\twidth: 0;\n\t\t}\n\n\t\t&.weak {\n\t\t\tborder-color: #f78b53;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #f78b53, 0.25 );\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t}\n\n\t\t&.medium {\n\t\t\tborder-color: #ffc733;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #ffc733, 0.25 );\n\t\t\t\twidth: 75%;\n\t\t\t}\n\t\t}\n\n\t\t&.strong {\n\t\t\tborder-color: #83c373;\n\t\t\t&:before {\n\t\t\t\tbackground: rgba( #83c373, 0.25 );\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n",".llms-widget-syllabus--collapsible {\n\n\t.llms-section {\n\n\t\t.section-header {\n\n\t\t\tcursor: pointer;\n\n\t\t}\n\n\t\t&.llms-section--opened {\n\n\t\t\t.llms-collapse-caret {\n\t\t\t\t.fa-caret-right { display: none; }\n\t\t\t}\n\n\t\t}\n\n\t\t&.llms-section--closed {\n\n\t\t\t.llms-collapse-caret {\n\t\t\t\t.fa-caret-down { display: none; }\n\t\t\t}\n\n\t\t\t.llms-lesson {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t.llms-syllabus-footer {\n\n\t\ttext-align: left;\n\n\t}\n\n}\n",".llms-student-dashboard {\n\n\t.llms-sd-nav {}\n\n\t.llms-sd-title {\n\t\tmargin: 25px 0;\n\t}\n\n\t.llms-sd-items { // ul\n\t\t@extend %clearfix;\n\t\tlist-style-type: none;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\t\t.llms-sd-item { // li\n\t\t\tfloat: left;\n\t\t\tlist-style-type: none;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\n\t\t\t&:last-child {\n\t\t\t\t.llms-sep {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.llms-sep {\n\t\t\t\tcolor: #333;\n\t\t\t\tmargin: 0 5px;\n\t\t\t}\n\t\t}\n\n\t.llms-sd-section {\n\t\tmargin-bottom: 25px;\n\t\t.llms-sd-section-footer {\n\t\t\tmargin-top: 10px;\n\t\t}\n\t}\n\n\t.orders-table {\n\n\t\tborder: 1px solid #f5f5f5;\n\t\twidth: 100%;\n\n\t\tthead {\n\t\t\tdisplay: none;\n\t\t\tth,td {\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t\t@media all and ( min-width: 600px ) {\n\t\t\t\tdisplay: table-header-group;\n\t\t\t}\n\t\t}\n\n\t\ttbody {\n\t\t\ttr:nth-child( even ) {\n\t\t\t\ttd, th {\n\t\t\t\t\tbackground: #f9f9f9;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\ttfoot {\n\t\t\tth, td {\n\t\t\t\tpadding: 10px;\n\t\t\t\ttext-align: right;\n\t\t\t\t&:last-child { border-bottom-width: 0; }\n\t\t\t}\n\t\t}\n\n\t\tth {\n\t\t\tfont-weight: 700;\n\t\t}\n\n\t\tth, td {\n\t\t\tborder-color: #efefef;\n\t\t\tborder-style: solid;\n\t\t\tborder-width: 0;\n\t\t\tdisplay: block;\n\t\t\tpadding: 8px 12px;\n\t\t\ttext-align: center;\n\n\t\t\t.llms-button-primary {\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t&:last-child {\n\t\t\t\tborder-bottom-width: 1px;\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tcontent: attr( data-label );\n\t\t\t}\n\n\t\t\t@media all and ( min-width: 600px ) {\n\t\t\t\tborder-bottom-width: 1px;\n\t\t\t\tdisplay: table-cell;\n\t\t\t\ttext-align: left;\n\t\t\t\t&:first-child { width: 220px; }\n\t\t\t\t&:before { display: none; }\n\t\t\t}\n\n\t\t}\n\n\t\t@media all and ( min-width: 600px ) {\n\t\t\t&.transactions th:first-child {width: auto; }\n\t\t}\n\n\t}\n\n\t@include order_status_badges();\n\n\t.llms-person-form-wrapper {\n\t\t.llms-change-password { display: none; }\n\t}\n\n\t.order-primary {\n\n\t\t@media all and ( min-width: 600px ) {\n\t\t\tfloat: left;\n\t\t\twidth: 68%;\n\t\t}\n\n\t}\n\t.order-secondary {\n\n\t\t@media all and ( min-width: 600px ) {\n\t\t\tfloat: left;\n\t\t\twidth: 32%;\n\t\t}\n\n\t\tform {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n\t// stack columns when alternate layout declared via filter\n\t@media all and ( min-width: 600px ) {\n\t\t.llms-view-order.llms-stack-cols {\n\t\t\t.order-primary,\n\t\t\t.order-secondary {\n\t\t\t\tfloat: none;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n\n\t.llms-switch-payment-source {\n\t\t.llms-notice,\n\t\t.entry-content .llms-notice {\n\t\t\tmargin-left: 10px;\n\t\t\tmargin-right: 10px;\n\t\t}\n\t}\n\n\t.llms-switch-payment-source-main {\n\t\tborder: none;\n\t\tdisplay: none;\n\t\tmargin: 0;\n\t\tul.llms-payment-gateways {\n\t\t\tpadding: 10px 15px 0;\n\t\t\tmargin: 0;\n\t\t}\n\t\t.llms-payment-method,\n\t\tul.llms-order-summary {\n\t\t\tpadding: 0 25px 10px;\n\t\t\tmargin: 0;\n\t\t\tlist-style-type: none;\n\t\t\tli { list-style-type: none; }\n\t\t}\n\t}\n\n\t/**\n\t * Dashboard Home\n\t */\n\t.llms-loop-list {\n\t\tmargin: 0 -10px;\n\t}\n\n}\n\n// My Grades course list\n.llms-sd-grades {\n\t.llms-table {\n\t\t.llms-progress {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0;\n\t\t\t.llms-progress-bar {\n\t\t\t\ttop: 0;\n\t\t\t\theight: 1.4em;\n\t\t\t}\n\t\t\t.progress__indicator {\n\t\t\t\tfont-size: 1em;\n\t\t\t\tposition: relative;\n\t\t\t\tright: 0.4em;\n\t\t\t\ttop: 0.2em;\n\t\t\t\tz-index: 1;\n\t\t\t}\n\t\t}\n\t}\n}\n\n// grades table for a single course\n.llms-table.llms-single-course-grades {\n\n\ttbody {\n\t\ttr:first-child td, tr:first-child th {\n\t\t\tbackground-color: #eaeaea;\n\t\t}\n\t}\n\n\tth {\n\t\tfont-weight: 400;\n\t}\n\n\ttd {\n\t\t.llms-donut {\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t.llms-status {\n\t\t\tmargin-right: 4px;\n\t\t}\n\t\t.llms-donut + .llms-status {\n\t\t\tmargin-left: 4px;\n\t\t}\n\t}\n\n\tth.llms-section_title {\n\t\tfont-size: 110%;\n\t\tfont-weight: 700;\n\t}\n\n\ttd.llms-lesson_title {\n\t\tpadding-left: 36px;\n\t\tmax-width: 40%;\n\t}\n\ttd.llms-associated_quiz {\n\t\t.llms-donut {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-right: 5px;\n\t\t\tvertical-align: middle;\n\t\t}\n\t}\n\ttd.llms-lesson_title {\n\t\ta[href=\"#\"] {\n\t\t\tpointer-events: none;\n\t\t}\n\t\ta[href^=\"#\"] {\n\t\t\tcolor: inherit;\n\t\t\tposition: relative;\n\t\t\t.llms-tooltip {\n\t\t\t\tmax-width: 380px;\n\t\t\t\twidth: 380px;\n\t\t\t\t&.show {\n\t\t\t\t\ttop: -54px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.llms-sd-widgets {\n\tdisplay: flex;\n\n\t.llms-sd-widget {\n\t\tbackground: #f9f9f9;\n\t\tflex: 1;\n\t\tmargin: 10px 10px 20px;\n\t\tpadding: 0 0 20px;\n\t\t&:first-child {\n\t\t\tmargin-left: 0;\n\t\t}\n\t\t&:last-child {\n\t\t\tmargin-right: 0;\n\t\t}\n\n\t\t.llms-sd-widget-title {\n\t\t\tbackground: $color-brand-blue;\n\t\t\tcolor: #fff;\n\t\t\tfont-size: 18px;\n\t\t\tline-height: 1;\n\t\t\tmargin: 0 0 20px;\n\t\t\tpadding: 10px;\n\t\t}\n\n\t\t.llms-sd-widget-empty {\n\t\t\tfont-size: 14px;\n\t\t\tfont-style: italic;\n\t\t\topacity: 0.5;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t.llms-donut {\n\t\t\tmargin: 0 auto;\n\t\t}\n\n\t\t.llms-sd-date {\n\t\t\topacity: 0.8;\n\t\t\ttext-align: center;\n\t\t\tfont-size: 22px;\n\t\t\tline-height: 1.1;\n\t\t\tspan {\n\t\t\t\tdisplay: block;\n\t\t\t\t&.day {\n\t\t\t\t\tfont-size: 52px;\n\t\t\t\t}\n\t\t\t\t&.diff {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tfont-style: italic;\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t\topacity: 0.75;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.llms-achievement {\n\t\t\tbackground: transparent;\n\t\t\tmargin: 0 auto;\n\t\t\tmax-width: 120px;\n\t\t\t.llms-achievement-title {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t}\n\n\n}\n\n\n.llms-sd-pagination {\n\tmargin-top: 24px;\n\t@include clearfix;\n\t.llms-button-secondary {\n\t\tdisplay: inline-block;\n\t\t&.prev { float: left; }\n\t\t&.next { float: right; }\n\t}\n}\n\n\n.llms-sd-notification-center {\n\t.llms-notification {\n\t\tz-index: 1;\n\t}\n}\n",".llms-table {\n\tborder: 1px solid #efefef;\n\twidth: 100%;\n\n\tthead {\n\t\tth,td {\n\t\t\tfont-weight: 700;\n\t\t}\n\t}\n\n\ttbody {\n\t\ttr:nth-child( odd ) {\n\t\t\ttd, th {\n\t\t\t\tbackground: #f9f9f9;\n\t\t\t}\n\t\t}\n\t\ttr:last-child {\n\t\t\tborder-bottom-width: 0;\n\t\t}\n\t}\n\n\ttfoot {\n\t\ttr {\n\t\t\tbackground: #f9f9f9;\n\t\t\t.llms-pagination .page-numbers {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t\t.llms-table-sort {\n\t\t\t\ttext-align: right;\n\t\t\t\tform, select, input, button {\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tth {\n\t\tfont-weight: 700;\n\t}\n\n\tth, td {\n\t\tborder-bottom: 1px solid #efefef;\n\t\tpadding: 8px 12px;\n\n\t\t// launchpad compat...\n\t\t&:first-child { padding-left: 12px; }\n\t\t&:last-child { padding-right: 12px; }\n\n\t}\n\n}\n\n// launchpad compat...\n#page .llms-table tfoot label {\n\tdisplay: inline;\n}\n#page .llms-table tfoot select {\n\theight: auto;\n}\n","/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: 'FontAwesome';\n src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');\n src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.fa-pull-left {\n float: left;\n}\n.fa-pull-right {\n float: right;\n}\n.fa.fa-pull-left {\n margin-right: .3em;\n}\n.fa.fa-pull-right {\n margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n.fa-music:before {\n content: \"\\f001\";\n}\n.fa-search:before {\n content: \"\\f002\";\n}\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n.fa-heart:before {\n content: \"\\f004\";\n}\n.fa-star:before {\n content: \"\\f005\";\n}\n.fa-star-o:before {\n content: \"\\f006\";\n}\n.fa-user:before {\n content: \"\\f007\";\n}\n.fa-film:before {\n content: \"\\f008\";\n}\n.fa-th-large:before {\n content: \"\\f009\";\n}\n.fa-th:before {\n content: \"\\f00a\";\n}\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n.fa-check:before {\n content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n.fa-power-off:before {\n content: \"\\f011\";\n}\n.fa-signal:before {\n content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n.fa-home:before {\n content: \"\\f015\";\n}\n.fa-file-o:before {\n content: \"\\f016\";\n}\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n.fa-road:before {\n content: \"\\f018\";\n}\n.fa-download:before {\n content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n.fa-refresh:before {\n content: \"\\f021\";\n}\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n.fa-lock:before {\n content: \"\\f023\";\n}\n.fa-flag:before {\n content: \"\\f024\";\n}\n.fa-headphones:before {\n content: \"\\f025\";\n}\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n.fa-tag:before {\n content: \"\\f02b\";\n}\n.fa-tags:before {\n content: \"\\f02c\";\n}\n.fa-book:before {\n content: \"\\f02d\";\n}\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n.fa-print:before {\n content: \"\\f02f\";\n}\n.fa-camera:before {\n content: \"\\f030\";\n}\n.fa-font:before {\n content: \"\\f031\";\n}\n.fa-bold:before {\n content: \"\\f032\";\n}\n.fa-italic:before {\n content: \"\\f033\";\n}\n.fa-text-height:before {\n content: \"\\f034\";\n}\n.fa-text-width:before {\n content: \"\\f035\";\n}\n.fa-align-left:before {\n content: \"\\f036\";\n}\n.fa-align-center:before {\n content: \"\\f037\";\n}\n.fa-align-right:before {\n content: \"\\f038\";\n}\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n.fa-list:before {\n content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n.fa-indent:before {\n content: \"\\f03c\";\n}\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n.fa-pencil:before {\n content: \"\\f040\";\n}\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n.fa-adjust:before {\n content: \"\\f042\";\n}\n.fa-tint:before {\n content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n.fa-arrows:before {\n content: \"\\f047\";\n}\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n.fa-backward:before {\n content: \"\\f04a\";\n}\n.fa-play:before {\n content: \"\\f04b\";\n}\n.fa-pause:before {\n content: \"\\f04c\";\n}\n.fa-stop:before {\n content: \"\\f04d\";\n}\n.fa-forward:before {\n content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n.fa-eject:before {\n content: \"\\f052\";\n}\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n.fa-ban:before {\n content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n.fa-expand:before {\n content: \"\\f065\";\n}\n.fa-compress:before {\n content: \"\\f066\";\n}\n.fa-plus:before {\n content: \"\\f067\";\n}\n.fa-minus:before {\n content: \"\\f068\";\n}\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n.fa-gift:before {\n content: \"\\f06b\";\n}\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n.fa-fire:before {\n content: \"\\f06d\";\n}\n.fa-eye:before {\n content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n.fa-plane:before {\n content: \"\\f072\";\n}\n.fa-calendar:before {\n content: \"\\f073\";\n}\n.fa-random:before {\n content: \"\\f074\";\n}\n.fa-comment:before {\n content: \"\\f075\";\n}\n.fa-magnet:before {\n content: \"\\f076\";\n}\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n.fa-retweet:before {\n content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n.fa-folder:before {\n content: \"\\f07b\";\n}\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n.fa-key:before {\n content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n.fa-comments:before {\n content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n.fa-star-half:before {\n content: \"\\f089\";\n}\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n.fa-trophy:before {\n content: \"\\f091\";\n}\n.fa-github-square:before {\n content: \"\\f092\";\n}\n.fa-upload:before {\n content: \"\\f093\";\n}\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n.fa-phone:before {\n content: \"\\f095\";\n}\n.fa-square-o:before {\n content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n.fa-twitter:before {\n content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n.fa-github:before {\n content: \"\\f09b\";\n}\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n.fa-square:before {\n content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n.fa-table:before {\n content: \"\\f0ce\";\n}\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n.fa-money:before {\n content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n.fa-columns:before {\n content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n.fa-desktop:before {\n content: \"\\f108\";\n}\n.fa-laptop:before {\n content: \"\\f109\";\n}\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n.fa-spinner:before {\n content: \"\\f110\";\n}\n.fa-circle:before {\n content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n.fa-terminal:before {\n content: \"\\f120\";\n}\n.fa-code:before {\n content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n.fa-crop:before {\n content: \"\\f125\";\n}\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n.fa-question:before {\n content: \"\\f128\";\n}\n.fa-info:before {\n content: \"\\f129\";\n}\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n.fa-microphone:before {\n content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n.fa-shield:before {\n content: \"\\f132\";\n}\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n.fa-rocket:before {\n content: \"\\f135\";\n}\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n.fa-html5:before {\n content: \"\\f13b\";\n}\n.fa-css3:before {\n content: \"\\f13c\";\n}\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n.fa-ticket:before {\n content: \"\\f145\";\n}\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n.fa-level-up:before {\n content: \"\\f148\";\n}\n.fa-level-down:before {\n content: \"\\f149\";\n}\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n.fa-compass:before {\n content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n.fa-gbp:before {\n content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n.fa-file:before {\n content: \"\\f15b\";\n}\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n.fa-youtube:before {\n content: \"\\f167\";\n}\n.fa-xing:before {\n content: \"\\f168\";\n}\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n.fa-adn:before {\n content: \"\\f170\";\n}\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n.fa-apple:before {\n content: \"\\f179\";\n}\n.fa-windows:before {\n content: \"\\f17a\";\n}\n.fa-android:before {\n content: \"\\f17b\";\n}\n.fa-linux:before {\n content: \"\\f17c\";\n}\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n.fa-skype:before {\n content: \"\\f17e\";\n}\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n.fa-trello:before {\n content: \"\\f181\";\n}\n.fa-female:before {\n content: \"\\f182\";\n}\n.fa-male:before {\n content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n.fa-archive:before {\n content: \"\\f187\";\n}\n.fa-bug:before {\n content: \"\\f188\";\n}\n.fa-vk:before {\n content: \"\\f189\";\n}\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n.fa-renren:before {\n content: \"\\f18b\";\n}\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n.fa-slack:before {\n content: \"\\f198\";\n}\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n.fa-openid:before {\n content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n.fa-google:before {\n content: \"\\f1a0\";\n}\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n.fa-language:before {\n content: \"\\f1ab\";\n}\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n.fa-building:before {\n content: \"\\f1ad\";\n}\n.fa-child:before {\n content: \"\\f1ae\";\n}\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n.fa-database:before {\n content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n.fa-git:before {\n content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n.fa-history:before {\n content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n.fa-header:before {\n content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n.fa-at:before {\n content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n.fa-bus:before {\n content: \"\\f207\";\n}\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n.fa-angellist:before {\n content: \"\\f209\";\n}\n.fa-cc:before {\n content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n.fa-diamond:before {\n content: \"\\f219\";\n}\n.fa-ship:before {\n content: \"\\f21a\";\n}\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n.fa-venus:before {\n content: \"\\f221\";\n}\n.fa-mars:before {\n content: \"\\f222\";\n}\n.fa-mercury:before {\n content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n.fa-server:before {\n content: \"\\f233\";\n}\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n.fa-user-times:before {\n content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n.fa-train:before {\n content: \"\\f238\";\n}\n.fa-subway:before {\n content: \"\\f239\";\n}\n.fa-medium:before {\n content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n.fa-object-group:before {\n content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n.fa-clone:before {\n content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n.fa-registered:before {\n content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n.fa-gg:before {\n content: \"\\f260\";\n}\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n.fa-safari:before {\n content: \"\\f267\";\n}\n.fa-chrome:before {\n content: \"\\f268\";\n}\n.fa-firefox:before {\n content: \"\\f269\";\n}\n.fa-opera:before {\n content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n.fa-contao:before {\n content: \"\\f26d\";\n}\n.fa-500px:before {\n content: \"\\f26e\";\n}\n.fa-amazon:before {\n content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n.fa-industry:before {\n content: \"\\f275\";\n}\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n.fa-map-o:before {\n content: \"\\f278\";\n}\n.fa-map:before {\n content: \"\\f279\";\n}\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n.fa-edge:before {\n content: \"\\f282\";\n}\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n.fa-modx:before {\n content: \"\\f285\";\n}\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n.fa-usb:before {\n content: \"\\f287\";\n}\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n.fa-percent:before {\n content: \"\\f295\";\n}\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n.fa-envira:before {\n content: \"\\f299\";\n}\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n.fa-blind:before {\n content: \"\\f29d\";\n}\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n"],"sourceRoot":"../../scss"} \ No newline at end of file diff --git a/assets/maps/css/lifterlms.min.css.map b/assets/maps/css/lifterlms.min.css.map index 359706c70a..0c08bc7322 100644 --- a/assets/maps/css/lifterlms.min.css.map +++ b/assets/maps/css/lifterlms.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["lifterlms.css"],"names":[],"mappings":"AAAA,0bACA,WAeE,CAAA,aACA,CAAA,yNAEF,UAQE,CAAA,qBAGF,UACE,CAAA,kCAEF,8BACE,UACE,CAAA,CAAA,gBAIJ,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,6BACA,CAAA,4BACA,CAAA,sBACI,CAAA,kBACI,CAAA,kCAEV,kBACE,CAAA,iBACI,CAAA,aACI,CAAA,UACR,CAAA,kCAGF,mDACE,UACE,CAAA,mDAEF,SACE,CAAA,mDAEF,oBACE,CAAA,mDAEF,SACE,CAAA,mDAEF,SACE,CAAA,mDAEF,oBACE,CAAA,mDAEF,oBACE,CAAA,mDAEF,WACE,CAAA,mDAEF,oBACE,CAAA,qDAEF,SACE,CAAA,qDAEF,mBACE,CAAA,qDAEF,mBACE,CAAA,CAAA,oFAGJ,WAIE,CAAA,iBACA,CAAA,aACA,CAAA,cACA,CAAA,cACA,CAAA,eACA,CAAA,oBACA,CAAA,gBACA,CAAA,aACA,CAAA,QACA,CAAA,cACA,CAAA,iBACA,CAAA,iBACA,CAAA,+BACA,CAAA,uBACA,CAAA,wHAEF,UAIE,CAAA,4NAEF,aAOE,CAAA,4GAEF,aAIE,CAAA,wGAEF,UAIE,CAAA,wGAEF,aAIE,CAAA,iBACA,CAAA,UACA,CAAA,gHAEF,YAIE,CAAA,4GAEF,cAIE,CAAA,gBACA,CAAA,wIAEF,WAIE,CAAA,4GAEF,cAIE,CAAA,eACA,CAAA,iBACA,CAAA,wIAEF,YAIE,CAAA,4HAEF,SAIE,CAAA,iBACA,CAAA,qBAGF,kBACE,CAAA,wDAEF,kBACE,CAAA,uDAEF,kBACE,CAAA,uBAGF,kBACE,CAAA,aACA,CAAA,6BAEF,aACE,CAAA,kBACA,CAAA,2DAEF,aACE,CAAA,kBACA,CAAA,oBAGF,kBACE,CAAA,sDAEF,kBACE,CAAA,qDAEF,kBACE,CAAA,oBAGF,kBACE,CAAA,0BAEF,kBACE,CAAA,qDAEF,kBACE,CAAA,qBAGF,wBACE,CAAA,wBACA,CAAA,iBACA,CAAA,aACA,CAAA,cACA,CAAA,cACA,CAAA,eACA,CAAA,oBACA,CAAA,gBACA,CAAA,aACA,CAAA,QACA,CAAA,cACA,CAAA,iBACA,CAAA,iBACA,CAAA,+BACA,CAAA,uBACA,CAAA,8BAEF,UACE,CAAA,uDAEF,aACE,CAAA,2BAEF,aACE,CAAA,0BAEF,UACE,CAAA,0BAEF,aACE,CAAA,iBACA,CAAA,UACA,CAAA,4BAEF,YACE,CAAA,YAGF,wBACE,CAAA,qBACA,CAAA,iBACA,CAAA,aACA,CAAA,YACA,CAAA,eACA,CAAA,iBACA,CAAA,WACA,CAAA,qCAEF,WACE,CAAA,aACA,CAAA,kBAEF,UACE,CAAA,gBAEF,2BACE,CAAA,mBACA,CAAA,UACA,CAAA,qBAEF,SACE,CAAA,iBACA,CAAA,cACA,CAAA,iBAEF,WACE,CAAA,UACA,CAAA,6BAEF,cACE,CAAA,kBAEF,YACE,CAAA,WACA,CAAA,8BAEF,cACE,CAAA,mBAEF,YACE,CAAA,WACA,CAAA,+BAEF,cACE,CAAA,kBAEF,YACE,CAAA,WACA,CAAA,8BAEF,cACE,CAAA,oBAEF,wBACE,CAAA,qBACI,CAAA,kBACI,CAAA,eACR,CAAA,iBACA,CAAA,6BACA,CAAA,qBACQ,CAAA,mBACR,CAAA,mBACA,CAAA,YACA,CAAA,kBACA,CAAA,cACI,CAAA,UACJ,CAAA,uBACA,CAAA,oBACI,CAAA,sBACI,CAAA,QACR,CAAA,iBACA,CAAA,iBACA,CAAA,uCACA,CAAA,+BACQ,CAAA,SACR,CAAA,OACA,CAAA,SACA,CAAA,wBAEF,eACE,CAAA,cACA,CAAA,qBAEF,aACE,CAAA,6YAGF,iBAYE,CAAA,qpBAEF,WAYE,CAAA,UACA,CAAA,6tBAEF,uBAYE,CAAA,yoBAEF,qBAYE,CAAA,QACA,CAAA,KACA,CAAA,itBAEF,QAYE,CAAA,yoBAEF,WAYE,CAAA,WACA,CAAA,itBAEF,uBAYE,CAAA,6nBAEF,qBAYE,CAAA,SACA,CAAA,KACA,CAAA,qsBAEF,QAYE,CAAA,6qBAEF,QAYE,CAAA,WACA,CAAA,qvBAEF,oBAYE,CAAA,iqBAEF,wBAYE,CAAA,SACA,CAAA,QACA,CAAA,yuBAEF,WAYE,CAAA,yrBAEF,QAYE,CAAA,UACA,CAAA,iwBAEF,oBAYE,CAAA,6qBAEF,wBAYE,CAAA,QACA,CAAA,QACA,CAAA,qvBAEF,WAYE,CAAA,ieAEF,eAYE,CAAA,iBACA,CAAA,UACA,CAAA,cACA,CAAA,eACA,CAAA,WACA,CAAA,eACA,CAAA,yBACA,CAAA,sBACA,CAAA,iBACA,CAAA,qdAEF,UAYE,CAAA,8BACA,CAAA,QACA,CAAA,OACA,CAAA,s7BAEF,SAuBE,CAAA,mCACA,CAAA,2BACA,CAAA,iBACA,CAAA,mBACA,CAAA,iBACA,CAAA,skCAEF,SAuBE,CAAA,mCACA,CAAA,2BACA,CAAA,kBACA,CAAA,gBACA,CAAA,uIAEF,sBAIE,CAAA,mKAEF,6BAIE,CAAA,uBAGF,aACE,CAAA,aACA,CAAA,mBAGF,aACE,CAAA,aACA,CAAA,cACA,CAAA,qBAGF,aACE,CAAA,aACA,CAAA,kBAGF,WACE,CAAA,kCAGF,WACE,CAAA,cACA,CAAA,eACA,CAAA,iBACA,CAAA,kBACA,CAAA,iBACA,CAAA,mOAEF,WAGE,CAAA,MACA,CAAA,iBACA,CAAA,KACA,CAAA,UACA,CAAA,4CAEF,qBACE,CAAA,6DAEF,wBACE,CAAA,OAGF,UACE,CAAA,UACA,CAAA,qBAGF,iBACE,CAAA,sCAGF,QACE,CAAA,cACA,CAAA,aAGF,aACE,CAAA,iBACA,CAAA,aACA,CAAA,iBACA,CAAA,cACA,CAAA,mBAEF,cACE,CAAA,eACA,CAAA,yBAGF,YACE,CAAA,wBAGF,eACE,CAAA,sCAGF,eACE,CAAA,+BAGF,aACE,CAAA,iBACA,CAAA,OACA,CAAA,MACA,CAAA,SACA,CAAA,+BAGF,oBACE,CAAA,qDAGF,YACE,CAAA,qDAGF,uBACE,CAAA,oBACG,CAAA,eACK,CAAA,UACR,CAAA,iBACA,CAAA,KACA,CAAA,SACA,CAAA,oBACA,CAAA,UACA,CAAA,WACA,CAAA,iBACA,CAAA,cACA,CAAA,qBACA,CAAA,iFACA,CAAA,yEACQ,CAAA,kBACR,CAAA,yFACA,CAAA,2BACA,CAAA,sEACA,CAAA,8DACA,CAAA,6DAGF,0EACE,CAAA,kEACA,CAAA,qDAGF,2BACE,CAAA,6DAGF,uBACE,CAAA,gCAGF,WACE,CAAA,kBACA,CAAA,UACA,CAAA,cACA,CAAA,cACA,CAAA,iBACA,CAAA,cACA,CAAA,UACA,CAAA,kBAGF,cACE,CAAA,iBAGF,iBACE,CAAA,UACA,CAAA,aACA,CAAA,iBACA,CAAA,qBACA,CAAA,oBACA,CAAA,UACA,CAAA,aACA,CAAA,kCAEF,WACE,CAAA,0BAEF,UACE,CAAA,2CAEF,UACE,CAAA,0BAEF,SACE,CAAA,UACA,CAAA,qCAEF,0BACE,UACE,CAAA,CAAA,0BAGJ,SACE,CAAA,UACA,CAAA,iBACA,CAAA,0BAEF,SACE,CAAA,UACA,CAAA,iBACA,CAAA,qCAEF,0BACE,UACE,CAAA,CAAA,0BAGJ,WACE,CAAA,UACA,CAAA,iBACA,CAAA,0BAEF,SACE,CAAA,WACA,CAAA,iCAEF,kBACE,CAAA,qCAEF,iCACE,eACE,CAAA,CAAA,gCAIJ,cAEE,CAAA,SACA,CAAA,WACA,CAAA,gBAGF,iBACE,CAAA,UACA,CAAA,aACA,CAAA,iBACA,CAAA,oBACA,CAAA,UACA,CAAA,aACA,CAAA,kBAGF,kBACE,CAAA,kBAGF,gBACE,CAAA,WACA,CAAA,qBAGF,iBACE,CAAA,iBAGF,qBACE,CAAA,qBACA,CAAA,UACA,CAAA,cACA,CAAA,eACA,CAAA,YACA,CAAA,UACA,CAAA,YAGF,eACE,CAAA,gBACA,CAAA,iBAGF,eACE,CAAA,gBACA,CAAA,gBAGF,SACE,CAAA,0GAGF,YACE,CAAA,aACA,CAAA,cAGF,UACE,CAAA,4BAGF,UACE,CAAA,aACA,CAAA,UACA,CAAA,iBACA,CAAA,uBAGF,UACE,CAAA,aACA,CAAA,UACA,CAAA,qBAGF,UACE,CAAA,aACA,CAAA,UACA,CAAA,iBACA,CAAA,oBAGF,qBACE,CAAA,6BACA,CAAA,qBACQ,CAAA,iBACR,CAAA,eACA,CAAA,iBACA,CAAA,+CAGF,UACE,CAAA,aAGF,YACE,CAAA,2BAGF,WACE,CAAA,qBACA,CAAA,wBACA,CAAA,WACA,CAAA,uBACA,CAAA,cACA,CAAA,UACA,CAAA,4BAGF,2BACE,UACE,CAAA,CAAA,kCAGJ,iBACE,CAAA,KACA,CAAA,UACA,CAAA,cACA,CAAA,UACA,CAAA,mBAGF,YACE,CAAA,gEAGF,eACE,CAAA,wBAGF,iBACE,CAAA,sBAIF,iBACE,CAAA,WACA,CAAA,YACA,CAAA,UACA,CAAA,4BAGF,OACE,CAAA,iBACA,CAAA,SACA,CAAA,iBACA,CAAA,UACA,CAAA,cACA,CAAA,0BAGF,iBACE,CAAA,WACA,CAAA,YACA,CAAA,6BAGF,kBACE,CAAA,4BAGF,kBACE,CAAA,iBACA,CAAA,cACA,CAAA,oBACA,CAAA,0BAGF,kBACE,CAAA,iBACA,CAAA,cACA,CAAA,oBACA,CAAA,qBACA,CAAA,gEAGF,eACE,CAAA,+FAEF,eACE,CAAA,gBACA,CAAA,UACA,CAAA,yGAEF,aACE,CAAA,qCAEF,gBACE,CAAA,sCAEF,oBACE,CAAA,4CAEF,+BACE,CAAA,2CAEF,UACE,CAAA,4BACA,CAAA,yBAEF,oBACE,CAAA,4BAEF,oBACE,CAAA,kCAEF,gBACE,CAAA,SACA,CAAA,oBAGF,WACE,CAAA,wDAGF,kBACE,CAAA,6CACA,CAAA,qCACQ,CAAA,aACR,CAAA,aACA,CAAA,eACA,CAAA,YACA,CAAA,oBACA,CAAA,iBACA,CAAA,0DAGF,iBACE,CAAA,qBAGF,YACE,CAAA,iBACA,CAAA,UACA,CAAA,uBACA,CAAA,aACA,CAAA,iBACA,CAAA,WACA,CAAA,KACA,CAAA,QACA,CAAA,iBACA,CAAA,oDACA,CAAA,4CACA,CAAA,2BAIF,UACE,CAAA,OACA,CAAA,QACA,CAAA,2BACA,CAAA,mCACA,CAAA,oCACA,CAAA,iBACA,CAAA,WACA,CAAA,QACA,CAAA,kCACA,CAAA,0BACQ,CAAA,4BAGV,oBACE,CAAA,gBAGF,eACE,CAAA,cACA,CAAA,SACA,CAAA,kCAEF,uCACE,UACE,CAAA,uCAEF,SACE,CAAA,uCAEF,oBACE,CAAA,uCAEF,SACE,CAAA,uCAEF,SACE,CAAA,uCAEF,oBACE,CAAA,CAAA,gBAIJ,UACE,CAAA,eACA,CAAA,QACA,CAAA,SACA,CAAA,UACA,CAAA,wBAGF,kBACE,CAAA,mBACA,CAAA,WACA,CAAA,8BAEF,kBACE,CAAA,wCAEF,aACE,CAAA,aACA,CAAA,gDAEF,aACE,CAAA,6CAEF,aACE,CAAA,cACA,CAAA,yCAEF,cACE,CAAA,+CAEF,aACE,CAAA,iHAEF,cAGE,CAAA,wEAEF,UAEE,CAAA,aACA,CAAA,cACA,CAAA,iBACA,CAAA,8FAEF,eAEE,CAAA,gDAEF,eACE,CAAA,0BAEF,eACE,CAAA,uCAEF,QACE,CAAA,WACA,CAAA,4DAEF,YACE,CAAA,0DAEF,wBACE,CAAA,OACA,CAAA,KACA,CAAA,wBAGF,aACE,CAAA,yCAEF,iBACE,CAAA,qCAEF,eACE,CAAA,wCAEF,eACE,CAAA,8BAEF,gBACE,CAAA,eACA,CAAA,iBACA,CAAA,uBAGF,WACE,CAAA,iBACA,CAAA,2CAEF,eACE,CAAA,iIAGF,SAGE,CAAA,uFAEF,UAEE,CAAA,gBACA,CAAA,yGAEF,WAEE,CAAA,eACA,CAAA,qBAGF,oBACE,CAAA,eACA,CAAA,cACA,CAAA,iBACA,CAAA,WACA,CAAA,uCAEF,kBACE,CAAA,aACA,CAAA,aACA,CAAA,YACA,CAAA,oBACA,CAAA,2FAEF,WACE,CAAA,aACA,CAAA,6CAEF,UACE,CAAA,6CAEF,kBACE,CAAA,+CAEF,aACE,CAAA,4CAEF,kBACE,CAAA,gDAEF,aACE,CAAA,UACA,CAAA,oCAEF,eACE,CAAA,wCAEF,eACE,CAAA,kBACA,CAAA,eACA,CAAA,mDAEF,eACE,CAAA,0CAEF,eACE,CAAA,gCAEF,UACE,CAAA,UACA,CAAA,iCAEF,WACE,CAAA,SACA,CAAA,4CAEF,SACE,CAAA,uLAEF,aAIE,CAAA,cACA,CAAA,kBACA,CAAA,0GAEF,aACE,CAAA,qCAEF,kBACE,CAAA,iBACA,CAAA,aACA,CAAA,oBACA,CAAA,mBACA,CAAA,aACA,CAAA,cACA,CAAA,yDAEF,aACE,CAAA,0CAEF,cACE,CAAA,aACA,CAAA,2CAEF,iBACE,CAAA,WACA,CAAA,UACA,CAAA,uBAEF,eACE,CAAA,eAIF,UACE,CAAA,mBACA,CAAA,mBACA,CAAA,YACA,CAAA,6BACA,CAAA,6BACA,CAAA,8BACI,CAAA,0BACI,CAAA,iBACR,CAAA,UACA,CAAA,UACA,CAAA,aACA,CAAA,kCAGF,wBACE,CAAA,iBACA,CAAA,WACA,CAAA,QACA,CAAA,UACA,CAAA,sCAGF,wBACE,CAAA,WACA,CAAA,qBAGF,WACE,CAAA,gBACA,CAAA,UACA,CAAA,eACA,CAAA,eACA,CAAA,kBACA,CAAA,mBAGF,eACE,CAAA,oBAEF,eACE,CAAA,qBAEF,iBACE,CAAA,kBAEF,cACE,CAAA,2EAGF,aACE,CAAA,0EAEF,cACE,CAAA,qDAEF,kBACE,CAAA,4BACA,CAAA,iBACA,CAAA,mBACA,CAAA,mBACA,CAAA,6DAEF,kBACE,CAAA,wBACA,CAAA,aACA,CAAA,sBACA,CAAA,uEAEF,aACE,CAAA,4EAEF,eACE,CAAA,6EAEF,aACE,CAAA,2EAEF,aACE,CAAA,eACA,CAAA,aAGF,eACE,CAAA,YACA,CAAA,gBAEF,cACE,CAAA,cACA,CAAA,gBAEF,cACE,CAAA,eAEF,cACE,CAAA,wBAGF,eACE,CAAA,eAEF,SACE,CAAA,YACA,CAAA,2BAEF,YACE,CAAA,aAGF,8BACE,CAAA,oBACA,CAAA,kBACA,CAAA,gBACA,CAAA,YACA,CAAA,kBACA,CAAA,qDAEF,eACE,CAAA,gBAEF,oBACE,CAAA,wBAEF,+BACE,CAAA,oBACA,CAAA,wBAEF,6BACE,CAAA,oBACA,CAAA,0BAEF,+BACE,CAAA,oBACA,CAAA,4BAGF,eACE,CAAA,+BAEF,oBACE,CAAA,8HAGF,oBAIE,CAAA,cACA,CAAA,SACA,CAAA,gTAEF,WAOE,CAAA,aACA,CAAA,sJAEF,UAIE,CAAA,4eAEF,6BAQE,CAAA,qBACQ,CAAA,aACR,CAAA,UACA,CAAA,oBACA,CAAA,QACA,CAAA,YACA,CAAA,UACA,CAAA,kCAEF,4kBACE,UAOE,CAAA,4kBAEF,SAOE,CAAA,4kBAEF,oBAOE,CAAA,4kBAEF,SAOE,CAAA,4kBAEF,SAOE,CAAA,CAAA,oCAIJ,kBAEE,CAAA,WACA,CAAA,aACA,CAAA,aACA,CAAA,oBACA,CAAA,UACA,CAAA,gDAEF,kBAEE,CAAA,gFAEF,aAEE,CAAA,QACA,CAAA,UACA,CAAA,oFAEF,cAEE,CAAA,QACA,CAAA,YACA,CAAA,iBACA,CAAA,oFAEF,cAEE,CAAA,QACA,CAAA,gBACA,CAAA,oKAEF,YAIE,CAAA,wFAEF,YAEE,CAAA,oGAEF,SAEE,CAAA,kHAEF,eAEE,CAAA,kBAGF,yBACE,CAAA,iBACA,CAAA,eACA,CAAA,iBACA,CAAA,wBAEF,eACE,CAAA,oBACA,CAAA,0CAGF,eACE,CAAA,+CAEF,aACE,CAAA,gDAEF,YACE,CAAA,mBAGF,eACE,CAAA,0DACA,CAAA,kDACQ,CAAA,4BACR,CAAA,SACA,CAAA,YACA,CAAA,cACA,CAAA,YACA,CAAA,QACA,CAAA,gEACA,CAAA,wDACA,CAAA,iBACA,CAAA,UACA,CAAA,eACA,CAAA,mDAEF,WACE,CAAA,aACA,CAAA,yBAEF,UACE,CAAA,2BAEF,SACE,CAAA,SACA,CAAA,UACA,CAAA,iJACA,CAAA,yIACA,CAAA,iIACA,CAAA,mKACA,CAAA,kBACA,CAAA,4DAEF,SACE,CAAA,8CAEF,wBACE,CAAA,qBACI,CAAA,kBACI,CAAA,mBACR,CAAA,mBACA,CAAA,YACA,CAAA,2CAEF,yBACE,CAAA,qBACI,CAAA,kBACJ,CAAA,UACI,CAAA,MACI,CAAA,2BACR,CAAA,gBACI,CAAA,OACI,CAAA,4CAEV,cACE,CAAA,QACA,CAAA,2CAEF,cACE,CAAA,eACA,CAAA,2FAEF,iBACE,CAAA,6CAEF,iBACE,CAAA,2DAEF,kBACE,CAAA,wBACA,CAAA,kEACA,CAAA,0DACQ,CAAA,sBACR,CAAA,eACA,CAAA,iFAEF,cACE,CAAA,eACA,CAAA,gBACA,CAAA,iBACA,CAAA,iFAEF,UACE,CAAA,kGAEF,SACE,CAAA,kGAEF,SACE,CAAA,kGAEF,SACE,CAAA,kGAEF,SACE,CAAA,eACA,CAAA,kGAEF,SACE,CAAA,kGAEF,gBACE,CAAA,mBACA,CAAA,kGAEF,SACE,CAAA,iBACA,CAAA,sFAEF,iBACE,CAAA,UACA,CAAA,kBACA,CACA,8IACA,CADA,8FACA,CAAA,2BACA,CAAA,eACA,CAAA,qFAEF,kBACE,CAAA,iBACA,CAAA,oBACA,CAAA,UACA,CAAA,WACA,CAAA,UACA,CAAA,6DAEF,eACE,CAAA,4CAEF,yBACE,CAAA,qBACI,CAAA,kBACJ,CAAA,UACI,CAAA,MACI,CAAA,iBACR,CAAA,2BACA,CAAA,gBACI,CAAA,OACI,CAAA,2CAEV,aACE,CAAA,cACA,CAAA,6CAEF,4BACE,CAAA,cACA,CAAA,eACA,CAAA,iBACA,CAAA,gBACA,CAAA,8CAEF,aACE,CAAA,cACA,CAAA,cACA,CAAA,iBACA,CAAA,UACA,CAAA,OACA,CAAA,0CACA,CAAA,kCACA,CAAA,+GAGF,oBAEE,CAAA,QACA,CAAA,SACA,CAAA,mFAEF,kBACE,CAAA,gDAEF,SACE,CAAA,4BACA,CAAA,SACA,CAAA,YACA,CAAA,iBACA,CAAA,UACA,CAAA,QACA,CAAA,kBACA,CAAA,UACA,CAAA,yEAEF,cACE,CAAA,0EAEF,WACE,CAAA,SACA,CAAA,eACA,CAAA,+DAEF,uBACE,CAAA,wEAEF,aACE,CAAA,UACA,CAAA,gBACA,CAAA,gEAEF,aACE,CAAA,eACA,CAAA,kCAGF,mBACE,YACE,CAAA,WACA,CAAA,2BAEF,SACE,CAAA,UACA,CAAA,8CAEF,SACE,CAAA,CAAA,oBAGJ,oBACE,CAAA,uBAEF,UACE,CAAA,yBAEF,eACE,CAAA,oBACA,CAAA,qCAEF,YACE,CAAA,yBACA,CAAA,6CAEF,oBACE,CAAA,cAGF,kBACE,CAAA,iBACA,CAAA,UACA,CAAA,cACA,CAAA,eACA,CAAA,SACA,CAAA,SACA,CAAA,gBACA,CAAA,QACA,CAAA,iBACA,CAAA,mBACA,CAAA,kCACA,CAAA,0BACQ,CAAA,gDACR,CAAA,wCACA,CAAA,eACA,CAAA,mBAEF,SACE,CAAA,SACA,CAAA,oBAEF,WACE,CAAA,4BACA,CAAA,mCACA,CAAA,oCACA,CAAA,UACA,CAAA,QACA,CAAA,QACA,CAAA,iBACA,CAAA,kCACA,CAAA,0BACQ,CAAA,OACR,CAAA,qBAGF,iBACE,CAAA,mBACA,CAAA,mBACA,CAAA,mDAGF,UACE,CAAA,UACA,CAAA,gBACA,CAAA,yDAEF,UACE,CAAA,gDAEF,UACE,CAAA,yBACA,CAAA,sDAEF,oBACE,CAAA,6CAGF,QACE,CAAA,SACA,CAAA,oBACA,CAAA,yEAEF,kBACE,CAAA,eACA,CAAA,iBACA,CAAA,wFAEF,aACE,CAAA,aACA,CAAA,2BACA,CAAA,oBACA,CAAA,6LAEF,WACE,CAAA,aACA,CAAA,8FAEF,UACE,CAAA,oMAEF,8BACE,CAAA,wOAEF,wBACE,CAAA,gGAEF,+BACE,CAAA,kHAEF,wBACE,CAAA,kGAEF,6BACE,CAAA,oHAEF,wBACE,CAAA,6EAEF,aACE,CAAA,8FAEF,UACE,CAAA,QACA,CAAA,aACA,CAAA,sFAEF,WACE,CAAA,aACA,CAAA,+FAEF,iBACE,CAAA,WACA,CAAA,QACA,CAAA,2FAEF,2BACE,CAAA,iBACA,CAAA,cACA,CAAA,WACA,CAAA,gBACA,CAAA,iBACA,CAAA,UACA,CAAA,0GAEF,YACE,CAAA,mBACA,CAAA,mIAEF,eACE,CAAA,kBACA,CAAA,uIAEF,QACE,CAAA,SACA,CAAA,mKAEF,SACE,CAAA,iBACA,CAAA,8KAEF,oBACE,CAAA,aACA,CAAA,8GAEF,WACE,CAAA,eACA,CAAA,4IAEF,yCACE,CAAA,eACA,CAAA,gBACA,CAAA,wJAEF,eACE,CAAA,YACA,CAAA,aACA,CAAA,uPAEF,oBACE,CAAA,QACA,CAAA,SACA,CAAA,+SAEF,oBACE,CAAA,oBACA,CAAA,QACA,CAAA,WACA,CAAA,uFAEF,UACE,CAAA,4GAEF,iBACE,CAAA,kBACA,CAAA,+BAEF,kBACE,CAAA,uFAEF,WACE,CAAA,aACA,CAAA,2CAEF,UACE,CAAA,yDAEF,aACE,CAAA,kEAEF,cACE,CAAA,yDAEF,UACE,CAAA,kEAEF,WACE,CAAA,yDAEF,aACE,CAAA,kEAEF,cACE,CAAA,2LAEF,kBAGE,CAAA,kCAEF,8DACE,UACE,CAAA,WACA,CAAA,6HAEF,UAEE,CAAA,wBACA,CAAA,CAAA,qFAGJ,oBAEE,CAAA,QACA,CAAA,SACA,CAAA,yCAEF,kBACE,CAAA,qCAEF,eACE,CAAA,eACA,CAAA,0CAEF,oBACE,CAAA,4BAGF,gBACE,CAAA,iBACA,CAAA,+CAEF,WACE,CAAA,MACA,CAAA,iBACA,CAAA,OACA,CAAA,iBACA,CAAA,SACA,CAAA,cAGF,kBACE,CAAA,YACA,CAAA,iBACA,CAAA,gCAEF,wBACE,CAAA,qBACI,CAAA,kBACI,CAAA,mBACR,CAAA,mBACA,CAAA,YACA,CAAA,eACA,CAAA,6BAEF,wBACE,CAAA,6BACA,CAAA,4BACA,CAAA,sBACI,CAAA,kBACI,CAAA,UACR,CAAA,QACA,CAAA,eACA,CAAA,oDAEF,oCACE,CAAA,4BACA,CAAA,OACA,CAAA,0BAEF,kBACE,CAAA,iBACA,CAAA,UACA,CAAA,aACA,CAAA,YACA,CAAA,iEAEF,WACE,CAAA,aACA,CAAA,gCAEF,UACE,CAAA,4BAEF,0BACE,CAAA,WACA,CAAA,cACA,CAAA,aACA,CAAA,oBACA,CAAA,iCAEF,YACE,CAAA,aACA,CAAA,WACA,CAAA,cACA,CAAA,2CAEF,YACE,CAAA,6BAEF,eACE,CAAA,oCAEF,iBACE,CAAA,2CAGF,cACE,CAAA,eACA,CAAA,kBACA,CAAA,gDAEF,oBACE,CAAA,QACA,CAAA,SACA,CAAA,+DAEF,+BACE,CAAA,QACA,CAAA,SACA,CAAA,iBACA,CAAA,0EAEF,kBACE,CAAA,6EAEF,kBACE,CAAA,mFAEF,oBACE,CAAA,SACA,CAAA,0FAEF,WACE,CAAA,QACA,CAAA,iBACA,CAAA,UACA,CAAA,gGAEF,UACE,CAAA,YACA,CAAA,sCACA,CAAA,8BACA,CAAA,oGAEF,aACE,CAAA,UACA,CAAA,8GAEF,kBACE,CAAA,qEAEF,YACE,CAAA,MACA,CAAA,mBACA,CAAA,iBACA,CAAA,KACA,CAAA,iBACA,CAAA,qEAEF,aACE,CAAA,QACA,CAAA,iBACA,CAAA,iBACA,CAAA,uHAEF,YACE,CAAA,iHAEF,cACE,CAAA,4EAEF,kBACE,CAAA,oBACA,CAAA,cACA,CAAA,WACA,CAAA,gBACA,CAAA,iBACA,CAAA,iBACA,CAAA,+BACA,CAAA,uBACA,CAAA,qBACA,CAAA,UACA,CAAA,gFAEF,YACE,CAAA,oLAEF,iBACE,CAAA,wFAEF,iBACE,CAAA,0FAEF,kBACE,CAAA,UACA,CAAA,oGAEF,YACE,CAAA,8FAEF,cACE,CAAA,iFAEF,oBACE,CAAA,cACA,CAAA,eACA,CAAA,eACA,CAAA,eACA,CAAA,qBACA,CAAA,uBACA,CAAA,iBAGF,eACE,CAAA,wBACA,CAAA,iBACA,CAAA,aACA,CAAA,WACA,CAAA,cACA,CAAA,aACA,CAAA,gBACA,CAAA,gBACA,CAAA,iBACA,CAAA,kBACA,CAAA,SACA,CAAA,4BAEF,oBACE,CAAA,aACA,CAAA,6BAEF,oBACE,CAAA,aACA,CAAA,6BAEF,oBACE,CAAA,eACA,CAAA,gBAGF,YACE,CAAA,kCAGF,4CACE,UACE,CAAA,4CAEF,SACE,CAAA,4CAEF,oBACE,CAAA,4CAEF,SACE,CAAA,4CAEF,SACE,CAAA,CAAA,uBAIJ,eACE,CAAA,kBAGF,6BACE,CAAA,qBACQ,CAAA,UACR,CAAA,iBACA,CAAA,UACA,CAAA,uFAEF,kBAEE,CAAA,sDAEF,kBACE,CAAA,yGAEF,6BAEE,CAAA,8BACA,CAAA,oDAEF,2BACE,CAAA,yCAEF,4BACE,CAAA,yBAEF,kBACE,CAAA,UACA,CAAA,cACA,CAAA,iBACA,CAAA,eACA,CAAA,eACA,CAAA,kBACA,CAAA,oDAEF,QACE,CAAA,2BAGF,UACE,CAAA,cACA,CAAA,eACA,CAAA,kBACA,CAAA,0BAGF,cACE,CAAA,oDAEF,gBACE,CAAA,wBAGF,kBACE,CAAA,UACA,CAAA,eACA,CAAA,YACA,CAAA,sDAGF,cACE,CAAA,kBACA,CAAA,wBAGF,cACE,CAAA,uBACA,CAAA,gBACA,CAAA,yCAEF,eACE,CAAA,6BAEF,aACE,CAAA,4BACA,CAAA,+BACA,CAAA,2GAGF,cAIE,CAAA,uBACA,CAAA,eACA,CAAA,8BAGF,cACE,CAAA,mBACA,CAAA,iCAEF,QACE,CAAA,oCAEF,+BACE,CAAA,oBACA,CAAA,+CAEF,kBACE,CAAA,6NAEF,eACE,CAAA,sCAGF,uBACE,CAAA,kCAEF,QACE,CAAA,qCAEF,cACE,CAAA,gBACA,CAAA,oBACA,CAAA,iCAEF,aACE,CAAA,uCAEF,aACE,CAAA,yBAGF,+BACE,CAAA,YACA,CAAA,oBACA,CAAA,mDAEF,gBACE,CAAA,uDAGF,iBACE,CAAA,uOAEF,QACE,CAAA,SACA,CAAA,8KAEF,oBACE,CAAA,0DAEF,aACE,CAAA,4BACA,CAAA,sEAEF,eACE,CAAA,4DAEF,aACE,CAAA,uCAGF,wBACE,CAAA,YACA,CAAA,kBACA,CAAA,0CAEF,kBACE,CAAA,UACA,CAAA,cACA,CAAA,YACA,CAAA,eAGF,eACE,CAAA,iBACA,CAAA,kCAGF,yCACE,UACE,CAAA,oDAEF,gBACE,CAAA,qBACA,CAAA,oDAEF,eACE,CAAA,qBACA,CAAA,2DAEF,UACE,CAAA,CAAA,uBAIJ,wBACE,CAAA,kBACA,CAAA,iBACA,CAAA,+BAGF,WACE,CAAA,gDAEF,UACE,CAAA,2CAEF,eACE,CAAA,uBACA,CAAA,wBACA,CAAA,mDAEF,oBACE,CAAA,QACA,CAAA,SACA,CAAA,sDAEF,oBACE,CAAA,uLAEF,4BACE,CAAA,oDAEF,4BACE,CAAA,eACA,CAAA,gBACA,CAAA,uEAEF,YACE,CAAA,eACA,CAAA,yEAGF,oBACE,CAAA,eACA,CAAA,iEAEF,WACE,CAAA,uBACA,CAAA,eACQ,CAAA,oBACR,CAAA,mEAEF,cACE,CAAA,eACA,CAAA,qBACA,CAAA,gDAGF,cACE,CAAA,SACA,CAAA,yBAGF,oBACE,CAAA,6CAEF,+BACE,CAAA,UACA,CAAA,aACA,CAAA,WACA,CAAA,+CAEF,iBACE,CAAA,oBACA,CAAA,0DAEF,kBACE,CAAA,8FAEF,eACE,CAAA,gFAEF,aACE,CAAA,6FAEF,gBACE,CAAA,iBACA,CAAA,gEAEF,gBACE,CAAA,mDAEF,gBACE,CAAA,8CAEF,YACE,CAAA,iBACA,CAAA,qDAEF,cACE,CAAA,uBAGF,aACE,CAAA,qBAGF,kBACE,CAAA,4BAGF,aACE,CAAA,iBACA,CAAA,eACA,CAAA,kBAGF,6BACE,CAAA,qBACQ,CAAA,oBAEV,6BACE,CAAA,qBACQ,CAAA,yCAEV,gBACE,CAAA,uEAEF,eACE,CAAA,mBAGF,mBACE,CAAA,iBAGF,UACE,CAAA,mBACA,CAAA,iBACA,CAAA,UACA,CAAA,mCAEF,WACE,CAAA,gjBAEF,+BACE,CAAA,oBACA,CAAA,4nCAEF,6BACE,CAAA,oBACA,CAAA,4CAEF,YACE,CAAA,6BAEF,gBACE,CAAA,qCAEF,6BACE,mBACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,SACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,SACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,oBACE,CAAA,6BAEF,SACE,CAAA,8BAEF,oBACE,CAAA,8BAEF,oBACE,CAAA,8BAEF,UACE,CAAA,CAAA,6BAGJ,SACE,CAAA,8IAEF,oBAGE,CAAA,UACA,CAAA,uEAEF,gBACE,CAAA,2GAEF,aACE,CAAA,6DAEF,iBACE,CAAA,SACA,CAAA,eACA,CAAA,wDAEF,kBACE,CAAA,2BACA,CAAA,2BACA,CAAA,iBACA,CAAA,kFACA,CAAA,0EACQ,CAAA,UACR,CAAA,cACA,CAAA,oBACA,CAAA,WACA,CAAA,gBACA,CAAA,iBACA,CAAA,sEACA,CAAA,8DACA,CAAA,QACA,CAAA,qBACA,CAAA,UACA,CAAA,SACA,CAAA,kFAEF,0EACE,CAAA,kEACA,CAAA,uBACA,CAAA,yFACA,CAAA,mCAEF,cACE,CAAA,oDAEF,mBACE,CAAA,4IAEF,UACE,CAAA,mCAEF,cACE,CAAA,iBACA,CAAA,gCAEF,aACE,CAAA,eACA,CAAA,yEAEF,UACE,CAAA,iBACA,CAAA,+DAEF,WACE,CAAA,eACA,CAAA,kGAEF,WACE,CAAA,8BAGF,wBACE,CAAA,YACA,CAAA,cACA,CAAA,gBACA,CAAA,WACA,CAAA,iBACA,CAAA,iBACA,CAAA,qCAEF,QACE,CAAA,UACA,CAAA,MACA,CAAA,iBACA,CAAA,KACA,CAAA,iCACA,CAAA,yBACA,CAAA,uHAEF,oBACE,CAAA,4IAEF,8BACE,CAAA,SACA,CAAA,+CAEF,OACE,CAAA,mCAEF,oBACE,CAAA,0CAEF,+BACE,CAAA,SACA,CAAA,qCAEF,oBACE,CAAA,4CAEF,+BACE,CAAA,SACA,CAAA,qCAEF,oBACE,CAAA,4CAEF,gCACE,CAAA,UACA,CAAA,iEAGF,cACE,CAAA,2GAEF,YACE,CAAA,0GAEF,YACE,CAAA,mFAEF,YACE,CAAA,yDAEF,eACE,CAAA,uCAQF,aACE,CAAA,uCAEF,oBACE,CAAA,QACA,CAAA,SACA,CAAA,sCAEF,UACE,CAAA,oBACA,CAAA,QACA,CAAA,SACA,CAAA,2DAEF,YACE,CAAA,gDAEF,UACE,CAAA,YACA,CAAA,yCAEF,kBACE,CAAA,iEAEF,eACE,CAAA,sCAEF,wBACE,CAAA,UACA,CAAA,4CAEF,YACE,CAAA,8FAEF,eACE,CAAA,kCAEF,4CACE,0BACE,CAAA,CAAA,oIAGJ,kBACE,CAAA,8FAEF,YACE,CAAA,gBACA,CAAA,oHAEF,qBACE,CAAA,yCAEF,eACE,CAAA,kFAEF,oBACE,CAAA,kBACA,CAAA,cACA,CAAA,aACA,CAAA,gBACA,CAAA,iBACA,CAAA,4HAEF,oBACE,CAAA,wGAEF,uBACE,CAAA,gGAEF,wBACE,CAAA,kCAEF,kFACE,uBACE,CAAA,kBACA,CAAA,eACA,CAAA,0GAEF,WACE,CAAA,gGAEF,YACE,CAAA,CAAA,kCAGJ,kEACE,UACE,CAAA,CAAA,qCAGJ,iBACE,CAAA,4BACA,CAAA,oBACA,CAAA,aACA,CAAA,eACA,CAAA,qBACA,CAAA,sDAEF,cACE,CAAA,gBACA,CAAA,4MAEF,aACE,CAAA,wBACA,CAAA,2PAEF,aACE,CAAA,wBACA,CAAA,kXAEF,aACE,CAAA,uBACA,CAAA,wEAEF,YACE,CAAA,kCAEF,uCACE,UACE,CAAA,SACA,CAAA,CAAA,kCAGJ,yCACE,UACE,CAAA,SACA,CAAA,CAAA,8CAGJ,eACE,CAAA,kCAEF,kJACE,UAEE,CAAA,UACA,CAAA,CAAA,iJAGJ,gBAEE,CAAA,iBACA,CAAA,yDAEF,WACE,CAAA,YACA,CAAA,QACA,CAAA,kFAEF,mBACE,CAAA,QACA,CAAA,6JAEF,mBAEE,CAAA,QACA,CAAA,oBACA,CAAA,mKAEF,oBAEE,CAAA,wCAEF,cACE,CAAA,2CAGF,aACE,CAAA,QACA,CAAA,8DAEF,KACE,CAAA,YACA,CAAA,gEAEF,aACE,CAAA,iBACA,CAAA,UACA,CAAA,QACA,CAAA,SACA,CAAA,4HAGF,wBACE,CAAA,yCAEF,eACE,CAAA,qDAEF,oBACE,CAAA,qBACA,CAAA,sDAEF,gBACE,CAAA,kEAEF,eACE,CAAA,4DAEF,cACE,CAAA,eACA,CAAA,2DAEF,iBACE,CAAA,aACA,CAAA,0EAEF,oBACE,CAAA,gBACA,CAAA,qBACA,CAAA,uEAEF,mBACE,CAAA,wEAEF,aACE,CAAA,iBACA,CAAA,sFAEF,eACE,CAAA,WACA,CAAA,2FAEF,SACE,CAAA,iBAGF,mBACE,CAAA,mBACA,CAAA,YACA,CAAA,iCAEF,kBACE,CAAA,kBACA,CAAA,UACI,CAAA,MACI,CAAA,qBACR,CAAA,gBACA,CAAA,6CAEF,aACE,CAAA,4CAEF,cACE,CAAA,uDAEF,kBACE,CAAA,UACA,CAAA,cACA,CAAA,aACA,CAAA,eACA,CAAA,YACA,CAAA,uDAEF,cACE,CAAA,iBACA,CAAA,UACA,CAAA,iBACA,CAAA,6CAEF,aACE,CAAA,+CAEF,UACE,CAAA,iBACA,CAAA,cACA,CAAA,eACA,CAAA,oDAEF,aACE,CAAA,wDAEF,cACE,CAAA,yDAEF,cACE,CAAA,iBACA,CAAA,cACA,CAAA,WACA,CAAA,mDAEF,wBACE,CAAA,aACA,CAAA,eACA,CAAA,2EAEF,YACE,CAAA,oBAGF,eACE,CAAA,qDAEF,WACE,CAAA,aACA,CAAA,0BAEF,UACE,CAAA,2CAEF,oBACE,CAAA,gDAEF,UACE,CAAA,gDAEF,WACE,CAAA,gDAGF,SACE,CAAA,YAGF,wBACE,CAAA,UACA,CAAA,0CAEF,eACE,CAAA,8EAEF,kBACE,CAAA,gCAEF,qBACE,CAAA,qBAEF,kBACE,CAAA,oDAEF,QACE,CAAA,sCAEF,gBACE,CAAA,iLAEF,QACE,CAAA,eAEF,eACE,CAAA,8BAEF,+BACE,CAAA,gBACA,CAAA,sDAEF,iBACE,CAAA,oDAEF,kBACE,CAAA,8BAGF,cACE,CAAA,+BAGF,WACE,CAAA;;;EAGF,CAMA,WACE,yBAAA,CACA,mDAAA,CACA,4WAAA,CACA,kBAAA,CACA,iBAAA,CAEF,IACE,oBAAA,CACA,4CAAA,CACA,iBAAA,CACA,mBAAA,CACA,kCAAA,CACA,iCAAA,CAIF,OACE,sBAAA,CACA,iBAAA,CACA,mBAAA,CAGF,OACE,aAAA,CAGF,OACE,aAAA,CAGF,OACE,aAAA,CAGF,OACE,aAAA,CAGF,OACE,kBAAA,CACA,iBAAA,CAGF,OACE,cAAA,CACA,wBAAA,CACA,oBAAA,CAGF,UACE,iBAAA,CAGF,OACE,iBAAA,CACA,kBAAA,CACA,kBAAA,CACA,eAAA,CACA,iBAAA,CAGF,aACE,kBAAA,CAGF,WACE,wBAAA,CACA,uBAAA,CACA,kBAAA,CAGF,cACE,UAAA,CAGF,eACE,WAAA,CAGF,iBACE,iBAAA,CAGF,kBACE,gBAAA,CAIF,YACE,WAAA,CAGF,WACE,UAAA,CAGF,cACE,iBAAA,CAGF,eACE,gBAAA,CAGF,SACE,4CAAA,CACA,oCAAA,CAGF,UACE,8CAAA,CACA,sCAAA,CAGF,2BACE,GACE,8BAAA,CACA,sBAAA,CAEF,KACE,gCAAA,CACA,wBAAA,CAAA,CAGJ,mBACE,GACE,8BAAA,CACA,sBAAA,CAEF,KACE,gCAAA,CACA,wBAAA,CAAA,CAGJ,cACE,qEAAA,CACA,+BAAA,CACA,uBAAA,CAGF,eACE,qEAAA,CACA,gCAAA,CACA,wBAAA,CAGF,eACE,qEAAA,CACA,gCAAA,CACA,wBAAA,CAGF,oBACE,+EAAA,CACA,8BAAA,CACA,sBAAA,CAGF,kBACE,+EAAA,CACA,8BAAA,CACA,sBAAA,CAGF,gHAKE,mBAAA,CACQ,WAAA,CAGV,UACE,iBAAA,CACA,oBAAA,CACA,SAAA,CACA,UAAA,CACA,eAAA,CACA,qBAAA,CAGF,0BAEE,iBAAA,CACA,MAAA,CACA,UAAA,CACA,iBAAA,CAGF,aACE,mBAAA,CAGF,aACE,aAAA,CAGF,YACE,UAAA,CAKF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,cACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oDAGE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,+BAEE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,+BACE,WAAA,CAGF,6BACE,WAAA,CAGF,iBACE,WAAA,CAGF,yBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,eACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,gBACE,WAAA,CAGF,qCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uDAGE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,2CAEE,WAAA,CAGF,0BACE,WAAA,CAGF,0BACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,wBACE,WAAA,CAGF,wBACE,WAAA,CAGF,iBACE,WAAA,CAGF,wBACE,WAAA,CAGF,yBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,wBACE,WAAA,CAGF,wBACE,WAAA,CAGF,2BACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,0BACE,WAAA,CAGF,0BACE,WAAA,CAGF,eACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,yCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,8BACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,eACE,WAAA,CAGF,qBACE,WAAA,CAGF,mDAEE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,oBACE,WAAA,CAGF,4CAEE,WAAA,CAGF,0BACE,WAAA,CAGF,2BACE,WAAA,CAGF,wBACE,WAAA,CAGF,eACE,WAAA,CAGF,iCAEE,WAAA,CAGF,oBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,qBACE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,2BACE,WAAA,CAGF,sBACE,WAAA,CAGF,yBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,+BAEE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,6BACE,WAAA,CAGF,8BACE,WAAA,CAGF,2BACE,WAAA,CAGF,6BACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kCAEE,WAAA,CAGF,iCAEE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,mCAEE,WAAA,CAGF,mCAEE,WAAA,CAGF,qBACE,WAAA,CAGF,oCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,sDAGE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,yBACE,WAAA,CAGF,qBACE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,4BACE,WAAA,CAGF,8BACE,WAAA,CAGF,uBACE,WAAA,CAGF,iBACE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,oCAEE,WAAA,CAGF,0CAEE,WAAA,CAGF,uCAEE,WAAA,CAGF,oBACE,WAAA,CAGF,oBACE,WAAA,CAGF,uCAEE,WAAA,CAGF,kCAEE,WAAA,CAGF,2CAEE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,iCAEE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sCAEE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,0BACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uBACE,WAAA,CAGF,gBACE,WAAA,CAGF,oBACE,WAAA,CAGF,uBACE,WAAA,CAGF,6BACE,WAAA,CAGF,8BACE,WAAA,CAGF,2BACE,WAAA,CAGF,6BACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,uCAEE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,yBACE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,+CAEE,WAAA,CAGF,4EAGE,WAAA,CAGF,0BACE,WAAA,CAGF,gBACE,WAAA,CAGF,qBACE,WAAA,CAGF,0CAEE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,sBACE,WAAA,CAGF,4BACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,6BACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,+BACE,WAAA,CAGF,gCACE,WAAA,CAGF,6BACE,WAAA,CAGF,+BACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,yBACE,WAAA,CAGF,gCACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,sDAEE,WAAA,CAGF,kDAEE,WAAA,CAGF,wDAEE,WAAA,CAGF,+BAEE,WAAA,CAGF,eACE,WAAA,CAGF,iCAEE,WAAA,CAGF,gCAEE,WAAA,CAGF,4DAIE,WAAA,CAGF,kDAGE,WAAA,CAGF,8BAEE,WAAA,CAGF,kCAEE,WAAA,CAGF,gBACE,WAAA,CAGF,qBACE,WAAA,CAGF,0BACE,WAAA,CAGF,2BACE,WAAA,CAGF,2BACE,WAAA,CAGF,4BACE,WAAA,CAGF,4BACE,WAAA,CAGF,6BACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,0BACE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,0BACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,eACE,WAAA,CAGF,qBACE,WAAA,CAGF,4BACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,2BACE,WAAA,CAGF,yBACE,WAAA,CAGF,2BACE,WAAA,CAGF,4BACE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,oBACE,WAAA,CAGF,iBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sCAEE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,eACE,WAAA,CAGF,cACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,0BACE,WAAA,CAGF,gCACE,WAAA,CAGF,+BACE,WAAA,CAGF,sDAEE,WAAA,CAGF,wBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uCAEE,WAAA,CAGF,yBACE,WAAA,CAGF,yBACE,WAAA,CAGF,iBACE,WAAA,CAGF,2BACE,WAAA,CAGF,qBACE,WAAA,CAGF,kBACE,WAAA,CAGF,6DAGE,WAAA,CAGF,kDAEE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,8BACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,gBACE,WAAA,CAGF,yBACE,WAAA,CAGF,0BACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,oBACE,WAAA,CAGF,eACE,WAAA,CAGF,oBACE,WAAA,CAGF,iBACE,WAAA,CAGF,eACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,0BACE,WAAA,CAGF,iBACE,WAAA,CAGF,wBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qCAEE,WAAA,CAGF,+BAEE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,sBACE,WAAA,CAGF,sBACE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,wBACE,WAAA,CAGF,6BACE,WAAA,CAGF,0EAGE,WAAA,CAGF,gDAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,uBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,oBACE,WAAA,CAGF,wGAKE,WAAA,CAGF,0BACE,WAAA,CAGF,qDAGE,WAAA,CAGF,gCAEE,WAAA,CAGF,sBACE,WAAA,CAGF,eACE,WAAA,CAGF,2EAGE,WAAA,CAGF,yBACE,WAAA,CAGF,cACE,WAAA,CAGF,oCAEE,WAAA,CAGF,uCAEE,WAAA,CAGF,2CAEE,WAAA,CAGF,mBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,4BACE,WAAA,CAGF,gBACE,WAAA,CAGF,6CAEE,WAAA,CAGF,eACE,WAAA,CAGF,sBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,gBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,mBACE,WAAA,CAGF,yBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,cACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,sBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,sBACE,WAAA,CAGF,qBACE,WAAA,CAGF,mBACE,WAAA,CAGF,eACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,cACE,WAAA,CAGF,mDAGE,WAAA,CAGF,oBACE,WAAA,CAGF,sBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,oBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,qBACE,WAAA,CAGF,2BACE,WAAA,CAGF,mBACE,WAAA,CAGF,gBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,qBACE,WAAA,CAGF,iBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,2CAEE,WAAA,CAGF,2BACE,WAAA,CAGF,wBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,6BACE,WAAA,CAGF,uBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,gCAEE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sCAEE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,wBACE,WAAA,CAGF,gEAGE,WAAA,CAGF,uDAEE,WAAA,CAGF,6CAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,8CAEE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,0BACE,WAAA,CAGF,iBACE,WAAA,CAGF,yBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kDAEE,WAAA,CAGF,iDAEE,WAAA,CAGF,gDAEE,WAAA,CAGF,qBACE,WAAA,CAGF,8CAEE,WAAA,CAGF,+CAEE,WAAA,CAGF,2BACE,WAAA,CAGF,yBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,wBACE,WAAA,CAGF,qBACE,WAAA,CAGF,sBACE,WAAA,CAGF,4BACE,WAAA,CAGF,cACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,gCACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,kBACE,WAAA,CAGF,kBACE,WAAA,CAGF,mBACE,WAAA,CAGF,iBACE,WAAA,CAGF,6BACE,WAAA,CAGF,oCAEE,WAAA,CAGF,kBACE,WAAA,CAGF,iBACE,WAAA,CAGF,kBACE,WAAA,CAGF,2BACE,WAAA,CAGF,4BACE,WAAA,CAGF,4BACE,WAAA,CAGF,4BACE,WAAA,CAGF,oBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,iBACE,WAAA,CAGF,eACE,WAAA,CAGF,sBACE,WAAA,CAGF,wBACE,WAAA,CAGF,iBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,qBACE,WAAA,CAGF,wBACE,WAAA,CAGF,gBACE,WAAA,CAGF,2BACE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,wBACE,WAAA,CAGF,eACE,WAAA,CAGF,wBACE,WAAA,CAGF,oBACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,wBACE,WAAA,CAGF,2BACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,sBACE,WAAA,CAGF,mBACE,WAAA,CAGF,kBACE,WAAA,CAGF,4BACE,WAAA,CAGF,0BACE,WAAA,CAGF,6BACE,WAAA,CAGF,iBACE,WAAA,CAGF,6BACE,WAAA,CAGF,gCACE,WAAA,CAGF,mBACE,WAAA,CAGF,uCACE,WAAA,CAGF,2EAEE,WAAA,CAGF,+DAGE,WAAA,CAGF,iBACE,WAAA,CAGF,mBACE,WAAA,CAGF,4CAEE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,yBACE,WAAA,CAGF,oBACE,WAAA,CAGF,0BACE,WAAA,CAGF,2BACE,WAAA,CAGF,sBACE,WAAA,CAGF,uBACE,WAAA,CAGF,iBACE,WAAA,CAGF,qBACE,WAAA,CAGF,8DAEE,WAAA,CAGF,sCAEE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,2BACE,WAAA,CAGF,kBACE,WAAA,CAGF,wBACE,WAAA,CAGF,0BACE,WAAA,CAGF,yCAEE,WAAA,CAGF,6CAEE,WAAA,CAGF,uBACE,WAAA,CAGF,yBACE,WAAA,CAGF,kBACE,WAAA,CAGF,oBACE,WAAA,CAGF,8CAEE,WAAA,CAGF,kDAEE,WAAA,CAGF,iBACE,WAAA,CAGF,0BACE,WAAA,CAGF,oBACE,WAAA,CAGF,4EAGE,WAAA,CAGF,+DAEE,WAAA,CAGF,qDAEE,WAAA,CAGF,wDAEE,WAAA,CAGF,sDAEE,WAAA,CAGF,kBACE,WAAA,CAGF,kDAGE,WAAA,CAGF,mBACE,WAAA,CAGF,2BACE,WAAA,CAGF,2BACE,WAAA,CAGF,0BACE,WAAA,CAGF,mDAEE,WAAA,CAGF,uDAEE,WAAA,CAGF,oBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,gBACE,WAAA,CAGF,mBACE,WAAA,CAGF,mBACE,WAAA,CAGF,qBACE,WAAA,CAGF,uBACE,WAAA,CAGF,uBACE,WAAA,CAGF,sBACE,WAAA,CAGF,kBACE,WAAA,CAGF,SACE,iBAAA,CACA,SAAA,CACA,UAAA,CACA,SAAA,CACA,WAAA,CACA,eAAA,CACA,qBAAA,CACA,QAAA,CAGF,mDAEE,eAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,gBAAA,CACA,SAAA","file":"../../css/lifterlms.min.css","sourcesContent":["@charset \"UTF-8\";\n.llms-pagination ul:before, .llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:before,\n.llms-form-fields:before,\n.llms-checkout-cols-2:before,\n.llms-access-plans:before,\n.llms-course-navigation:before,\n.llms-loop-list:before,\n.llms-cols:before,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n content: \" \";\n display: table;\n}\n.llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n clear: both;\n}\n\n.llms-cols .llms-col {\n width: 100%;\n}\n@media all and (min-width: 600px) {\n .llms-cols [class*=llms-col-] {\n float: left;\n }\n}\n\n.llms-flex-cols {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n}\n.llms-flex-cols [class*=llms-col] {\n -webkit-box-flex: 0;\n -ms-flex: 0 1 auto;\n flex: 0 1 auto;\n width: 100%;\n}\n\n@media all and (min-width: 600px) {\n .llms-cols .llms-col-1, .llms-flex-cols .llms-col-1 {\n width: 100%;\n }\n .llms-cols .llms-col-2, .llms-flex-cols .llms-col-2 {\n width: 50%;\n }\n .llms-cols .llms-col-3, .llms-flex-cols .llms-col-3 {\n width: 33.3333333333%;\n }\n .llms-cols .llms-col-4, .llms-flex-cols .llms-col-4 {\n width: 25%;\n }\n .llms-cols .llms-col-5, .llms-flex-cols .llms-col-5 {\n width: 20%;\n }\n .llms-cols .llms-col-6, .llms-flex-cols .llms-col-6 {\n width: 16.6666666667%;\n }\n .llms-cols .llms-col-7, .llms-flex-cols .llms-col-7 {\n width: 14.2857142857%;\n }\n .llms-cols .llms-col-8, .llms-flex-cols .llms-col-8 {\n width: 12.5%;\n }\n .llms-cols .llms-col-9, .llms-flex-cols .llms-col-9 {\n width: 11.1111111111%;\n }\n .llms-cols .llms-col-10, .llms-flex-cols .llms-col-10 {\n width: 10%;\n }\n .llms-cols .llms-col-11, .llms-flex-cols .llms-col-11 {\n width: 9.0909090909%;\n }\n .llms-cols .llms-col-12, .llms-flex-cols .llms-col-12 {\n width: 8.3333333333%;\n }\n}\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #2295ff;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #0077e4;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #4ba9ff;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.llms-donut {\n background-color: #f1f1f1;\n background-image: none;\n border-radius: 50%;\n color: #ef476f;\n height: 200px;\n overflow: hidden;\n position: relative;\n width: 200px;\n}\n.llms-donut:before, .llms-donut:after {\n content: \" \";\n display: table;\n}\n.llms-donut:after {\n clear: both;\n}\n.llms-donut svg {\n overflow: visible !important;\n pointer-events: none;\n width: 100%;\n}\n.llms-donut svg path {\n fill: none;\n stroke-width: 35px;\n stroke: #ef476f;\n}\n.llms-donut.mini {\n height: 36px;\n width: 36px;\n}\n.llms-donut.mini .percentage {\n font-size: 10px;\n}\n.llms-donut.small {\n height: 100px;\n width: 100px;\n}\n.llms-donut.small .percentage {\n font-size: 18px;\n}\n.llms-donut.medium {\n height: 130px;\n width: 130px;\n}\n.llms-donut.medium .percentage {\n font-size: 26px;\n}\n.llms-donut.large {\n height: 260px;\n width: 260px;\n}\n.llms-donut.large .percentage {\n font-size: 48px;\n}\n.llms-donut .inside {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n background: #fff;\n border-radius: 50%;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n height: 80%;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n left: 50%;\n position: absolute;\n text-align: center;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n width: 80%;\n top: 50%;\n z-index: 3;\n}\n.llms-donut .percentage {\n line-height: 1.2;\n font-size: 34px;\n}\n.llms-donut .caption {\n font-size: 50%;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n -webkit-transition: all 0.2s 0.1s ease;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n -webkit-transition: all 0.2s 0.6s ease;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n.llms-membership-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-course-image {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n}\n\n.llms-featured-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-image-thumb {\n width: 150px;\n}\n\n.llms-video-wrapper .center-video {\n height: auto;\n max-width: 100%;\n overflow: hidden;\n position: relative;\n padding-top: 56.25%;\n text-align: center;\n}\n.llms-video-wrapper .center-video > .wp-video,\n.llms-video-wrapper .center-video .fluid-width-video-wrapper,\n.llms-video-wrapper .center-video iframe, .llms-video-wrapper .center-video object, .llms-video-wrapper .center-video embed {\n height: 100%;\n left: 0;\n position: absolute;\n top: 0;\n width: 100%;\n}\n.llms-video-wrapper .center-video > .wp-video {\n width: 100% !important;\n}\n.llms-video-wrapper .center-video .fluid-width-video-wrapper {\n padding-top: 0 !important;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\n.llms-featured-image {\n text-align: center;\n}\n\n#main-content .llms-payment-options p {\n margin: 0;\n font-size: 16px;\n}\n\n.llms-option {\n display: block;\n position: relative;\n margin: 20px 0;\n padding-left: 40px;\n font-size: 16px;\n}\n.llms-option label {\n cursor: pointer;\n position: static;\n}\n\n.llms-option:first-child {\n margin-top: 0;\n}\n\n.llms-option:last-child {\n margin-bottom: 0;\n}\n\n#main-content .llms-option:last-child {\n margin-bottom: 0;\n}\n\n.llms-option input[type=radio] {\n display: block;\n position: absolute;\n top: 3px;\n left: 0;\n z-index: 0;\n}\n\n.llms-option input[type=radio] {\n display: inline-block;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n display: none;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n z-index: 20;\n position: absolute;\n top: 0;\n left: -2px;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n vertical-align: middle;\n -webkit-box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.5) 0 0 0 1px;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.5) 0 0 0 1px;\n background: #efefef;\n background-image: radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);\n background-repeat: no-repeat;\n -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n background-position: -24px 0;\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n background-position: 0 0;\n}\n\n.llms-option input[type=submit] {\n border: none;\n background: #e5554e;\n color: #fff;\n font-size: 20px;\n padding: 10px 0;\n border-radius: 3px;\n cursor: pointer;\n width: 100%;\n}\n\n.llms-styled-text {\n padding: 14px 0;\n}\n\n.llms-notice-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n border: 1px solid #ccc;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n.llms-notice-box input[type=text] {\n height: auto;\n}\n.llms-notice-box .col-1-1 {\n width: 100%;\n}\n.llms-notice-box .col-1-1 input[type=text] {\n width: 100%;\n}\n.llms-notice-box .col-1-2 {\n width: 50%;\n float: left;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-2 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-3 {\n width: 33%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-4 {\n width: 25%;\n float: left;\n margin-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-4 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-6 {\n width: 16.6%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-8 {\n width: 11%;\n float: right;\n}\n.llms-notice-box .llms-pad-right {\n padding-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .llms-pad-right {\n padding-right: 0;\n }\n}\n\ninput[type=text].cc_cvv,\n#cc_cvv {\n margin-right: 0;\n width: 23%;\n float: right;\n}\n\n.llms-clear-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n\n.llms-price-label {\n font-weight: normal;\n}\n\n.llms-final-price {\n font-weight: bold;\n float: right;\n}\n\n.llms-center-content {\n text-align: center;\n}\n\n.llms-input-text {\n background-color: #fff;\n border: 1px solid #ddd;\n color: #333;\n font-size: 18px;\n font-weight: 300;\n padding: 16px;\n width: 100%;\n}\n\n.llms-price {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.llms-price-loop {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.courses .entry {\n padding: 0;\n}\n\n.list-view .site-content .llms-course-list .hentry, .list-view .site-content .llms-membership-list .hentry {\n border-top: 0;\n padding-top: 0;\n}\n\n.llms-content {\n width: 100%;\n}\n\n.llms-lesson-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-template-wrapper {\n width: 100%;\n display: block;\n clear: both;\n}\n\n.llms-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-styled-select {\n border: 1px solid #ccc;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n border-radius: 3px;\n overflow: hidden;\n position: relative;\n}\n\n.llms-styled-select, .llms-styled-select select {\n width: 100%;\n}\n\nselect:focus {\n outline: none;\n}\n\n.llms-styled-select select {\n height: 34px;\n padding: 5px 0 5px 5px;\n background: transparent;\n border: none;\n -webkit-appearance: none;\n font-size: 16px;\n color: #444444;\n}\n\n@-moz-document url-prefix() {\n .--ms-styled-select select {\n width: 110%;\n }\n}\n.llms-styled-select .fa-sort-desc {\n position: absolute;\n top: 0;\n right: 12px;\n font-size: 24px;\n color: #ccc;\n}\n\nselect::-ms-expand {\n display: none;\n}\n\n_:-o-prefocus .llms-styled-select, .selector .llms-styled-select {\n background: none;\n}\n\n.llms-form-item-wrapper {\n margin-bottom: 1em;\n}\n\n/* Circle Graph */\n.llms-progress-circle {\n position: relative;\n width: 200px;\n height: 200px;\n float: left;\n}\n\n.llms-progress-circle-count {\n top: 27%;\n position: absolute;\n width: 94%;\n text-align: center;\n color: #666;\n font-size: 44px;\n}\n\n.llms-progress-circle svg {\n position: absolute;\n width: 200px;\n height: 200px;\n}\n\n.llms-progress-circle circle {\n fill: transparent;\n}\n\nsvg .llms-background-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #f1f2f1;\n stroke-dasharray: 430;\n}\n\nsvg .llms-animated-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #e5554e;\n stroke-dasharray: 430;\n stroke-dashoffset: 410;\n}\n\n.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title {\n font-weight: 700;\n}\n.llms-widget-syllabus .llms-lesson-complete, .llms-widget-syllabus .lesson-complete-placeholder {\n font-size: 1.2em;\n margin-right: 6px;\n color: #ccc;\n}\n.llms-widget-syllabus .llms-lesson-complete.done, .llms-widget-syllabus .lesson-complete-placeholder.done {\n color: #e5554e;\n}\n.llms-widget-syllabus .section-title {\n font-weight: bold;\n}\n.llms-widget-syllabus .lesson-title a {\n text-decoration: none;\n}\n.llms-widget-syllabus .lesson-title a:hover {\n text-decoration: none !important;\n}\n.llms-widget-syllabus .lesson-title.done a {\n color: #999;\n text-decoration: line-through;\n}\n.llms-widget-syllabus ul {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li ul li {\n margin: 0 0 2px 0;\n padding: 0;\n}\n\n.llms-remove-coupon {\n float: right;\n}\n\n.llms-lesson-link-locked, .llms-lesson-link-locked:hover {\n background: #f1f1f1;\n -webkit-box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n display: block;\n color: #a6a6a6;\n min-height: 85px;\n padding: 15px;\n text-decoration: none;\n position: relative;\n}\n\n.llms-lesson-preview.is-complete .llms-lesson-link-locked {\n padding-left: 75px;\n}\n\n.llms-lesson-tooltip {\n display: none;\n position: absolute;\n color: #000000;\n background-color: #c0c0c0;\n padding: 0.25em;\n border-radius: 2px;\n z-index: 100;\n top: 0;\n left: 50%;\n text-align: center;\n -webkit-transform: translateX(-50%) translateY(-100%);\n transform: translateX(-50%) translateY(-100%);\n}\n\n/* arrows - :after */\n.llms-lesson-tooltip:after {\n content: \"\";\n width: 0;\n height: 0;\n border-top: 8px solid #c0c0c0;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n position: absolute;\n bottom: -8px;\n left: 50%;\n -webkit-transform: translateX(-50%);\n transform: translateX(-50%);\n}\n\n.llms-lesson-tooltip.active {\n display: inline-block;\n}\n\n.llms-loop-list {\n list-style: none;\n margin: 0 -10px;\n padding: 0;\n}\n@media all and (min-width: 600px) {\n .llms-loop-list.cols-1 .llms-loop-item {\n width: 100%;\n }\n .llms-loop-list.cols-2 .llms-loop-item {\n width: 50%;\n }\n .llms-loop-list.cols-3 .llms-loop-item {\n width: 33.3333333333%;\n }\n .llms-loop-list.cols-4 .llms-loop-item {\n width: 25%;\n }\n .llms-loop-list.cols-5 .llms-loop-item {\n width: 20%;\n }\n .llms-loop-list.cols-6 .llms-loop-item {\n width: 16.6666666667%;\n }\n}\n\n.llms-loop-item {\n float: left;\n list-style: none;\n margin: 0;\n padding: 0;\n width: 100%;\n}\n\n.llms-loop-item-content {\n background: #f1f1f1;\n padding-bottom: 10px;\n margin: 10px;\n}\n.llms-loop-item-content:hover {\n background: #eaeaea;\n}\n.llms-loop-item-content .llms-loop-link {\n color: #212121;\n display: block;\n}\n.llms-loop-item-content .llms-loop-link:visited {\n color: #212121;\n}\n.llms-loop-item-content .llms-featured-image {\n display: block;\n max-width: 100%;\n}\n.llms-loop-item-content .llms-loop-title {\n margin-top: 5px;\n}\n.llms-loop-item-content .llms-loop-title:hover {\n color: #2295ff;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author,\n.llms-loop-item-content .llms-loop-title {\n padding: 0 10px;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author {\n color: #444;\n display: block;\n font-size: 13px;\n margin-bottom: 3px;\n}\n.llms-loop-item-content .llms-meta:last-child,\n.llms-loop-item-content .llms-author:last-child {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-featured-img-wrap {\n overflow: hidden;\n}\n.llms-loop-item-content p {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-progress {\n margin: 0;\n height: 0.4em;\n}\n.llms-loop-item-content .llms-progress .progress__indicator {\n display: none;\n}\n.llms-loop-item-content .llms-progress .llms-progress-bar {\n background-color: #f6f6f6;\n right: 0;\n top: 0;\n}\n\n.course .llms-meta-info {\n margin: 20px 0;\n}\n.course .llms-meta-info .llms-meta-title {\n margin-bottom: 5px;\n}\n.course .llms-meta-info .llms-meta p {\n margin-bottom: 0;\n}\n.course .llms-meta-info .llms-meta span {\n font-weight: 700;\n}\n.course .llms-course-progress {\n margin: 40px auto;\n max-width: 480px;\n text-align: center;\n}\n\n.llms-syllabus-wrapper {\n margin: 15px;\n text-align: center;\n}\n.llms-syllabus-wrapper .llms-section-title {\n margin: 25px 0 0;\n}\n\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-back-to-course {\n width: 49%;\n}\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-back-to-course {\n float: left;\n margin-right: 0.5%;\n}\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-prev-lesson + .llms-back-to-course {\n float: right;\n margin-left: 0.5%;\n}\n\n.llms-lesson-preview {\n display: inline-block;\n margin-top: 15px;\n max-width: 100%;\n position: relative;\n width: 480px;\n}\n.llms-lesson-preview .llms-lesson-link {\n background: #f1f1f1;\n color: #212121;\n display: block;\n padding: 15px;\n text-decoration: none;\n}\n.llms-lesson-preview .llms-lesson-link:before, .llms-lesson-preview .llms-lesson-link:after {\n content: \" \";\n display: table;\n}\n.llms-lesson-preview .llms-lesson-link:after {\n clear: both;\n}\n.llms-lesson-preview .llms-lesson-link:hover {\n background: #eaeaea;\n}\n.llms-lesson-preview .llms-lesson-link:visited {\n color: #212121;\n}\n.llms-lesson-preview .llms-lesson-thumbnail {\n margin-bottom: 10px;\n}\n.llms-lesson-preview .llms-lesson-thumbnail img {\n display: block;\n width: 100%;\n}\n.llms-lesson-preview .llms-pre-text {\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title {\n font-weight: 700;\n margin: 0 auto 10px;\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title:last-child {\n margin-bottom: 0;\n}\n.llms-lesson-preview .llms-lesson-excerpt {\n text-align: left;\n}\n.llms-lesson-preview .llms-main {\n float: left;\n width: 100%;\n}\n.llms-lesson-preview .llms-extra {\n float: right;\n width: 15%;\n}\n.llms-lesson-preview .llms-extra + .llms-main {\n width: 85%;\n}\n.llms-lesson-preview .llms-lesson-counter,\n.llms-lesson-preview .llms-free-lesson-svg,\n.llms-lesson-preview .llms-lesson-complete,\n.llms-lesson-preview .llms-lesson-complete-placeholder {\n display: block;\n font-size: 32px;\n margin-bottom: 15px;\n}\n.llms-lesson-preview.is-free .llms-lesson-complete, .llms-lesson-preview.is-complete .llms-lesson-complete {\n color: #2295ff;\n}\n.llms-lesson-preview .llms-icon-free {\n background: #2295ff;\n border-radius: 4px;\n color: #f1f1f1;\n display: inline-block;\n padding: 5px 6px 4px;\n line-height: 1;\n font-size: 14px;\n}\n.llms-lesson-preview.is-incomplete .llms-lesson-complete {\n color: #cacaca;\n}\n.llms-lesson-preview .llms-lesson-counter {\n font-size: 16px;\n line-height: 1;\n}\n.llms-lesson-preview .llms-free-lesson-svg {\n fill: currentColor;\n height: 23px;\n width: 50px;\n}\n.llms-lesson-preview p {\n margin-bottom: 0;\n}\n\n/* progress bar */\n.llms-progress {\n clear: both;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: reverse;\n -ms-flex-direction: row-reverse;\n flex-direction: row-reverse;\n position: relative;\n height: 1em;\n width: 100%;\n margin: 15px 0;\n}\n\n.llms-progress .llms-progress-bar {\n background-color: #f1f2f1;\n position: relative;\n height: 0.4em;\n top: 0.3em;\n width: 100%;\n}\n\n.llms-progress .progress-bar-complete {\n background-color: #ef476f;\n height: 100%;\n}\n\n.progress__indicator {\n float: right;\n text-align: right;\n height: 1em;\n line-height: 1em;\n margin-left: 5px;\n white-space: nowrap;\n}\n\n.llms-author .name {\n margin-left: 5px;\n}\n.llms-author .label {\n margin-left: 5px;\n}\n.llms-author .avatar {\n border-radius: 50%;\n}\n.llms-author .bio {\n margin-top: 5px;\n}\n\n.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author {\n margin-left: 0;\n}\n.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author {\n margin-right: 0;\n}\n.llms-instructor-info .llms-instructors .llms-author {\n background: #f5f5f5;\n border-top: 4px solid #2295ff;\n text-align: center;\n margin: 45px 5px 5px;\n padding: 0 10px 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .avatar {\n background: #2295ff;\n border: 4px solid #2295ff;\n display: block;\n margin: -35px auto 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info {\n display: block;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name {\n font-weight: 700;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label {\n font-size: 85%;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio {\n font-size: 90%;\n margin-bottom: 0;\n}\n\n.llms_review {\n margin: 20px 0px;\n padding: 10px;\n}\n.llms_review h5 {\n font-size: 17px;\n margin: 3px 0px;\n}\n.llms_review h6 {\n font-size: 13px;\n}\n.llms_review p {\n font-size: 15px;\n}\n\n.review_box [type=text] {\n margin: 10px 0px;\n}\n.review_box h5 {\n color: red;\n display: none;\n}\n.review_box + .thank_you_box {\n display: none;\n}\n\n.llms-notice {\n background: rgba(34, 149, 255, 0.3);\n border-color: #2295ff;\n border-style: solid;\n border-width: 3px;\n padding: 10px;\n margin-bottom: 10px;\n}\n.llms-notice p:last-child, .llms-notice ul:last-child {\n margin-bottom: 0;\n}\n.llms-notice li {\n list-style-type: none;\n}\n.llms-notice.llms-debug {\n background: rgba(202, 202, 202, 0.3);\n border-color: #cacaca;\n}\n.llms-notice.llms-error {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-notice.llms-success {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n\n.entry-content .llms-notice {\n margin: 0 0 10px;\n}\n.entry-content .llms-notice li {\n list-style-type: none;\n}\n\nul.llms-achievements-loop,\n.lifterlms ul.llms-achievements-loop,\nul.llms-certificates-loop,\n.lifterlms ul.llms-certificates-loop {\n list-style-type: none;\n margin: 0 -10px;\n padding: 0;\n}\nul.llms-achievements-loop:before, ul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:before,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:before,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:before,\n.lifterlms ul.llms-certificates-loop:after {\n content: \" \";\n display: table;\n}\nul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:after {\n clear: both;\n}\nul.llms-achievements-loop li.llms-achievement-loop-item,\nul.llms-achievements-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,\nul.llms-certificates-loop li.llms-achievement-loop-item,\nul.llms-certificates-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: block;\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 10px;\n width: 100%;\n}\n@media all and (min-width: 600px) {\n ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item {\n width: 100%;\n }\n ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item {\n width: 50%;\n }\n ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item {\n width: 33.3333333333%;\n }\n ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item {\n width: 25%;\n }\n ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item {\n width: 20%;\n }\n}\n\n.llms-achievement,\n.llms-certificate {\n background: #f1f1f1;\n border: none;\n color: inherit;\n display: block;\n text-decoration: none;\n width: 100%;\n}\n.llms-achievement:hover,\n.llms-certificate:hover {\n background: #eaeaea;\n}\n.llms-achievement .llms-achievement-img,\n.llms-certificate .llms-achievement-img {\n display: block;\n margin: 0;\n width: 100%;\n}\n.llms-achievement .llms-achievement-title,\n.llms-certificate .llms-achievement-title {\n font-size: 16px;\n margin: 0;\n padding: 10px;\n text-align: center;\n}\n.llms-achievement .llms-certificate-title,\n.llms-certificate .llms-certificate-title {\n font-size: 16px;\n margin: 0;\n padding: 0 0 10px;\n}\n.llms-achievement .llms-achievement-info,\n.llms-achievement .llms-achievement-date,\n.llms-certificate .llms-achievement-info,\n.llms-certificate .llms-achievement-date {\n display: none;\n}\n.llms-achievement .llms-achievement-content,\n.llms-certificate .llms-achievement-content {\n padding: 20px;\n}\n.llms-achievement .llms-achievement-content:empty,\n.llms-certificate .llms-achievement-content:empty {\n padding: 0;\n}\n.llms-achievement .llms-achievement-content *:last-child,\n.llms-certificate .llms-achievement-content *:last-child {\n margin-bottom: 0;\n}\n\n.llms-certificate {\n border: 4px double #f1f1f1;\n padding: 20px 10px;\n background: #fff;\n text-align: center;\n}\n.llms-certificate:hover {\n background: #fff;\n border-color: #eaeaea;\n}\n\n.llms-achievement-modal .llms-achievement {\n background: #fff;\n}\n.llms-achievement-modal .llms-achievement-info {\n display: block;\n}\n.llms-achievement-modal .llms-achievement-title {\n display: none;\n}\n\n.llms-notification {\n background: #fff;\n -webkit-box-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n box-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n border-top: 4px solid #2295ff;\n opacity: 0;\n padding: 12px;\n position: fixed;\n right: -800px;\n top: 24px;\n -webkit-transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out;\n visibility: hidden;\n width: auto;\n z-index: 9999999;\n}\n.llms-notification:before, .llms-notification:after {\n content: \" \";\n display: table;\n}\n.llms-notification:after {\n clear: both;\n}\n.llms-notification.visible {\n left: 12px;\n opacity: 1;\n right: 12px;\n -webkit-transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, transform 0.2s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;\n visibility: visible;\n}\n.llms-notification.visible:hover .llms-notification-dismiss {\n opacity: 1;\n}\n.llms-notification .llms-notification-content {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n.llms-notification .llms-notification-main {\n -ms-flex-item-align: start;\n align-self: flex-start;\n -webkit-box-flex: 4;\n -ms-flex: 4;\n flex: 4;\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n}\n.llms-notification .llms-notification-title {\n font-size: 18px;\n margin: 0;\n}\n.llms-notification .llms-notification-body {\n font-size: 14px;\n line-height: 1.4;\n}\n.llms-notification .llms-notification-body p, .llms-notification .llms-notification-body li {\n font-size: inherit;\n}\n.llms-notification .llms-notification-body p {\n margin-bottom: 8px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert {\n background: #f6f6f6;\n border: 1px solid #d0d0d0;\n -webkit-box-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n box-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n padding: 16px 16px 24px;\n margin-top: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title {\n font-size: 16px;\n font-weight: 700;\n margin: 12px auto;\n text-align: center;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body {\n width: 100%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(1) {\n width: 65%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(2) {\n width: 35%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(3) {\n width: 85%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(4) {\n width: 75%;\n margin-top: 18px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(5) {\n width: 70%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(6) {\n margin-left: 12px;\n margin-bottom: -24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(7) {\n width: 65%;\n margin-right: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line {\n border-radius: 2px;\n height: 8px;\n background: #b0b0b0;\n background-image: -webkit-gradient(linear, left top, right top, from(#b0b0b0), color-stop(20%, #a0a0a0), color-stop(40%, #b0b0b0), to(#b0b0b0));\n background-image: linear-gradient(to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);\n background-repeat: no-repeat;\n margin: 4px auto;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot {\n background: #b0b0b0;\n border-radius: 50%;\n display: inline-block;\n content: \"\";\n height: 24px;\n width: 24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert p {\n margin-bottom: 0;\n}\n.llms-notification .llms-notification-aside {\n -ms-flex-item-align: start;\n align-self: flex-start;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin-right: 12px;\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n}\n.llms-notification .llms-notification-icon {\n display: block;\n max-width: 64px;\n}\n.llms-notification .llms-notification-footer {\n border-top: 1px solid #e5e5e5;\n font-size: 12px;\n margin-top: 12px;\n padding: 6px 6px 0;\n text-align: right;\n}\n.llms-notification .llms-notification-dismiss {\n color: #e5554e;\n cursor: pointer;\n font-size: 22px;\n position: absolute;\n right: 10px;\n top: 8px;\n -webkit-transition: opacity 0.4s ease-in-out;\n transition: opacity 0.4s ease-in-out;\n}\n\n.llms-sd-notification-center .llms-notification-list,\n.llms-sd-notification-center .llms-notification-list-item {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification {\n background: #fcfcfc;\n}\n.llms-sd-notification-center .llms-notification {\n opacity: 1;\n border-top: 1px solid #e5e5e5;\n left: auto;\n padding: 24px;\n position: relative;\n right: auto;\n top: auto;\n visibility: visible;\n width: auto;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-aside {\n max-width: 64px;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-footer {\n border: none;\n padding: 0;\n text-align: left;\n}\n.llms-sd-notification-center .llms-notification .llms-progress {\n display: none !important;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-date {\n color: #515151;\n float: left;\n margin-right: 6px;\n}\n.llms-sd-notification-center .llms-notification .llms-mini-cert {\n margin: 0 auto;\n max-width: 380px;\n}\n\n@media all and (min-width: 480px) {\n .llms-notification {\n right: -800px;\n width: 360px;\n }\n .llms-notification.visible {\n left: auto;\n right: 24px;\n }\n .llms-notification .llms-notification-dismiss {\n opacity: 0;\n }\n}\n.llms-pagination ul {\n list-style-type: none;\n}\n.llms-pagination ul li {\n float: left;\n}\n.llms-pagination ul li a {\n border-bottom: 0;\n text-decoration: none;\n}\n.llms-pagination ul li .page-numbers {\n padding: 0.5em;\n text-decoration: underline;\n}\n.llms-pagination ul li .page-numbers.current {\n text-decoration: none;\n}\n\n.llms-tooltip {\n background: #2a2a2a;\n border-radius: 4px;\n color: #fff;\n font-size: 14px;\n line-height: 1.2;\n opacity: 0;\n top: -20px;\n padding: 8px 12px;\n left: 50%;\n position: absolute;\n pointer-events: none;\n -webkit-transform: translateX(-50%);\n transform: translateX(-50%);\n -webkit-transition: opacity 0.2s ease, top 0.2s ease;\n transition: opacity 0.2s ease, top 0.2s ease;\n max-width: 320px;\n}\n.llms-tooltip.show {\n top: -28px;\n opacity: 1;\n}\n.llms-tooltip:after {\n bottom: -8px;\n border-top: 8px solid #2a2a2a;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n content: \"\";\n height: 0;\n left: 50%;\n position: absolute;\n -webkit-transform: translateX(-50%);\n transform: translateX(-50%);\n width: 0;\n}\n\n.webui-popover-title {\n font-size: initial;\n font-weight: initial;\n line-height: initial;\n}\n\n.webui-popover-inverse .webui-popover-inner .close {\n color: #fff;\n opacity: 0.6;\n text-shadow: none;\n}\n.webui-popover-inverse .webui-popover-inner .close:hover {\n opacity: 0.8;\n}\n.webui-popover-inverse .webui-popover-content a {\n color: #fff;\n text-decoration: underline;\n}\n.webui-popover-inverse .webui-popover-content a:hover {\n text-decoration: none;\n}\n\n.single-llms_quiz .llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.single-llms_quiz .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n.single-llms_quiz .llms-return {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-results:before, .single-llms_quiz .llms-quiz-results:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz .llms-quiz-results:after {\n clear: both;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing {\n color: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path {\n stroke: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending {\n color: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path {\n stroke: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing {\n color: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path {\n stroke: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n margin-bottom: 20px;\n}\n@media all and (min-width: 600px) {\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-aside {\n float: left;\n width: 220px;\n }\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n float: left;\n width: calc(100% - 300px);\n }\n}\n.single-llms_quiz ul.llms-quiz-meta-info,\n.single-llms_quiz ul.llms-quiz-meta-info li {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz ul.llms-quiz-meta-info {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-buttons {\n margin-top: 10px;\n text-align: left;\n}\n.single-llms_quiz .llms-quiz-buttons form {\n display: inline-block;\n}\n\n.llms-quiz-question-wrapper {\n min-height: 140px;\n position: relative;\n}\n.llms-quiz-question-wrapper .llms-quiz-loading {\n bottom: 20px;\n left: 0;\n position: absolute;\n right: 0;\n text-align: center;\n z-index: 1;\n}\n\n.llms-quiz-ui {\n background: #fcfcfc;\n padding: 20px;\n position: relative;\n}\n.llms-quiz-ui .llms-quiz-header {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n margin: 0 0 30px;\n}\n.llms-quiz-ui .llms-progress {\n background-color: #f1f2f1;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n height: 8px;\n margin: 0;\n overflow: hidden;\n}\n.llms-quiz-ui .llms-progress .progress-bar-complete {\n -webkit-transition: width 0.3s ease-in;\n transition: width 0.3s ease-in;\n width: 0;\n}\n.llms-quiz-ui .llms-error {\n background: #e5554e;\n border-radius: 4px;\n color: #fff;\n margin: 10px 0;\n padding: 10px;\n}\n.llms-quiz-ui .llms-error:before, .llms-quiz-ui .llms-error:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-ui .llms-error:after {\n clear: both;\n}\n.llms-quiz-ui .llms-error a {\n color: rgba(255, 255, 255, 0.6);\n float: right;\n font-size: 22px;\n line-height: 1;\n text-decoration: none;\n}\n.llms-quiz-ui .llms-quiz-counter {\n display: none;\n color: #6a6a6a;\n float: right;\n font-size: 18px;\n}\n.llms-quiz-ui .llms-quiz-counter .llms-sep {\n margin: 0 5px;\n}\n.llms-quiz-ui .llms-quiz-nav {\n margin-top: 20px;\n}\n.llms-quiz-ui .llms-quiz-nav button {\n margin: 0 10px 0 0;\n}\n\n.llms-question-wrapper .llms-question-text {\n font-size: 30px;\n font-weight: 400;\n margin-bottom: 15px;\n}\n.llms-question-wrapper ol.llms-question-choices {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice {\n border-bottom: 1px solid #e8e8e8;\n margin: 0;\n padding: 0;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label {\n display: inline-block;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker {\n bottom: 10px;\n margin: 0;\n position: absolute;\n right: 10px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image {\n margin: 2px;\n padding: 20px;\n -webkit-transition: background 0.4s ease;\n transition: background 0.4s ease;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img {\n display: block;\n width: 100%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked ~ .llms-choice-image {\n background: #efefef;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input {\n display: none;\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n visibility: hidden;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label {\n display: block;\n margin: 0;\n padding: 10px 20px;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker {\n background: #f0f0f0;\n display: inline-block;\n font-size: 20px;\n height: 40px;\n line-height: 40px;\n margin-right: 10px;\n text-align: center;\n -webkit-transition: all 0.2s ease;\n transition: all 0.2s ease;\n vertical-align: middle;\n width: 40px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister, .llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox {\n border-radius: 4px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio {\n border-radius: 50%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker {\n background: #ef476f;\n color: #fff;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text {\n display: inline-block;\n font-size: 18px;\n font-weight: 400;\n line-height: 1.6;\n margin-bottom: 0;\n vertical-align: middle;\n width: calc(100% - 60px);\n}\n\n.llms-quiz-timer {\n background: #fff;\n border: 1px solid #83c373;\n border-radius: 4px;\n color: #83c373;\n float: right;\n font-size: 18px;\n line-height: 1;\n margin-left: 20px;\n padding: 8px 12px;\n position: relative;\n white-space: nowrap;\n z-index: 1;\n}\n.llms-quiz-timer.color-half {\n border-color: #ff922b;\n color: #ff922b;\n}\n.llms-quiz-timer.color-empty {\n border-color: #e5554e;\n color: #e5554e;\n}\n.llms-quiz-timer .llms-tiles {\n display: inline-block;\n margin-left: 5px;\n}\n\n.voucher-expand {\n display: none;\n}\n\n@media all and (min-width: 600px) {\n .llms-access-plans.cols-1 .llms-access-plan {\n width: 100%;\n }\n .llms-access-plans.cols-2 .llms-access-plan {\n width: 50%;\n }\n .llms-access-plans.cols-3 .llms-access-plan {\n width: 33.3333333333%;\n }\n .llms-access-plans.cols-4 .llms-access-plan {\n width: 25%;\n }\n .llms-access-plans.cols-5 .llms-access-plan {\n width: 20%;\n }\n}\n\n.llms-free-enroll-form {\n margin-bottom: 0;\n}\n\n.llms-access-plan {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n float: left;\n text-align: center;\n width: 100%;\n}\n.llms-access-plan .llms-access-plan-footer,\n.llms-access-plan .llms-access-plan-content {\n background: #f1f1f1;\n}\n.llms-access-plan.featured .llms-access-plan-featured {\n background: #4ba9ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer,\n.llms-access-plan.featured .llms-access-plan-content {\n border-left: 3px solid #2295ff;\n border-right: 3px solid #2295ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer {\n border-bottom-color: #2295ff;\n}\n.llms-access-plan.on-sale .price-regular {\n text-decoration: line-through;\n}\n.llms-access-plan .stamp {\n background: #2295ff;\n color: #fff;\n font-size: 11px;\n font-style: normal;\n font-weight: 300;\n padding: 2px 3px;\n vertical-align: top;\n}\n.llms-access-plan .llms-access-plan-restrictions ul {\n margin: 0;\n}\n\n.llms-access-plan-featured {\n color: #fff;\n font-size: 14px;\n font-weight: 400;\n margin: 0 2px 0 2px;\n}\n\n.llms-access-plan-content {\n margin: 0 2px 0;\n}\n.llms-access-plan-content .llms-access-plan-pricing {\n padding: 10px 0 0;\n}\n\n.llms-access-plan-title {\n background: #2295ff;\n color: #fff;\n margin-bottom: 0;\n padding: 10px;\n}\n\n.llms-access-plan-pricing .llms-price-currency-symbol {\n font-size: 14px;\n vertical-align: top;\n}\n\n.llms-access-plan-price {\n font-size: 18px;\n font-variant: small-caps;\n line-height: 20px;\n}\n.llms-access-plan-price .lifterlms-price {\n font-weight: 700;\n}\n.llms-access-plan-price.sale {\n padding: 5px 0;\n border-top: 1px solid #d0d0d0;\n border-bottom: 1px solid #d0d0d0;\n}\n\n.llms-access-plan-trial,\n.llms-access-plan-schedule,\n.llms-access-plan-sale-end,\n.llms-access-plan-expiration {\n font-size: 15px;\n font-variant: small-caps;\n line-height: 1.2;\n}\n\n.llms-access-plan-description {\n font-size: 16px;\n padding: 10px 10px 0;\n}\n.llms-access-plan-description ul {\n margin: 0;\n}\n.llms-access-plan-description ul li {\n border-bottom: 1px solid #d0d0d0;\n list-style-type: none;\n}\n.llms-access-plan-description ul li:last-child {\n border-bottom: none;\n}\n.llms-access-plan-description div:last-child, .llms-access-plan-description img:last-child, .llms-access-plan-description p:last-child, .llms-access-plan-description ul:last-child, .llms-access-plan-description li:last-child {\n margin-bottom: 0;\n}\n\n.llms-access-plan-restrictions .stamp {\n vertical-align: baseline;\n}\n.llms-access-plan-restrictions ul {\n margin: 0;\n}\n.llms-access-plan-restrictions ul li {\n font-size: 12px;\n line-height: 14px;\n list-style-type: none;\n}\n.llms-access-plan-restrictions a {\n color: #f8954f;\n}\n.llms-access-plan-restrictions a:hover {\n color: #f67d28;\n}\n\n.llms-access-plan-footer {\n border-bottom: 3px solid #f1f1f1;\n padding: 10px;\n margin: 0 2px 2px 2px;\n}\n.llms-access-plan-footer .llms-access-plan-pricing {\n padding: 0 0 10px;\n}\n\n.webui-popover-content .llms-members-only-restrictions {\n text-align: center;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li, .webui-popover-content .llms-members-only-restrictions p {\n margin: 0;\n padding: 0;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li {\n list-style-type: none;\n}\n.webui-popover-content .llms-members-only-restrictions li {\n padding: 8px 0;\n border-top: 1px solid #3b3b3b;\n}\n.webui-popover-content .llms-members-only-restrictions li:first-child {\n border-top: none;\n}\n.webui-popover-content .llms-members-only-restrictions li a {\n display: block;\n}\n\n.llms-checkout-wrapper form.llms-login {\n border: 3px solid #2295ff;\n display: none;\n margin-bottom: 10px;\n}\n.llms-checkout-wrapper .llms-form-heading {\n background: #2295ff;\n color: #fff;\n margin: 0 0 5px;\n padding: 10px;\n}\n\n.llms-checkout {\n background: #fff;\n position: relative;\n}\n\n@media all and (min-width: 800px) {\n .llms-checkout-cols-2 .llms-checkout-col {\n float: left;\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-1 {\n margin-right: 5px;\n width: calc(58% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 {\n margin-left: 5px;\n width: calc(42% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button {\n width: 100%;\n }\n}\n\n.llms-checkout-section {\n border: 3px solid #2295ff;\n margin-bottom: 10px;\n position: relative;\n}\n\n.llms-checkout-section-content {\n margin: 10px;\n}\n.llms-checkout-section-content.llms-form-fields {\n margin: 0px;\n}\n.llms-checkout-section-content .llms-label {\n font-weight: 400;\n font-variant: small-caps;\n text-transform: lowercase;\n}\n.llms-checkout-section-content .llms-order-summary {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-checkout-section-content .llms-order-summary li {\n list-style-type: none;\n}\n.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular, .llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular {\n text-decoration: line-through;\n}\n.llms-checkout-section-content .llms-coupon-wrapper {\n border-top: 1px solid #dadada;\n margin-top: 10px;\n padding-top: 10px;\n}\n.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry {\n display: none;\n margin-top: 10px;\n}\n\n.llms-form-field.llms-payment-gateway-option label + span.llms-description {\n display: inline-block;\n margin-left: 5px;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description a {\n border: none;\n -webkit-box-shadow: none;\n box-shadow: none;\n text-decoration: none;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description img {\n display: inline;\n max-height: 22px;\n vertical-align: middle;\n}\n\n.llms-checkout-wrapper ul.llms-payment-gateways {\n margin: 5px 0 0;\n padding: 0;\n}\n\nul.llms-payment-gateways {\n list-style-type: none;\n}\nul.llms-payment-gateways li:last-child:after {\n border-bottom: 1px solid #dadada;\n content: \"\";\n display: block;\n margin: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway {\n margin-bottom: 5px;\n list-style-type: none;\n}\nul.llms-payment-gateways .llms-payment-gateway:last-child {\n margin-bottom: none;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label {\n font-weight: 700;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields {\n display: block;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway .llms-form-field {\n padding-bottom: 0;\n}\nul.llms-payment-gateways .llms-gateway-description {\n margin-left: 40px;\n}\nul.llms-payment-gateways .llms-gateway-fields {\n display: none;\n margin: 5px 0 20px;\n}\nul.llms-payment-gateways .llms-payment-gateway-error {\n padding: 0 10px;\n}\n\n.llms-checkout-confirm {\n margin: 0 10px;\n}\n\n.llms-payment-method {\n margin: 10px 10px 0;\n}\n\n.llms-gateway-description p {\n font-size: 85%;\n font-style: italic;\n margin-bottom: 0;\n}\n\n.llms-form-fields {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n -webkit-box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n -webkit-transition: width 0.4s ease;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n.llms-widget-syllabus--collapsible .llms-section .section-header {\n cursor: pointer;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-syllabus-footer {\n text-align: left;\n}\n\n.llms-student-dashboard {\n /**\n * Dashboard Home\n */\n}\n.llms-student-dashboard .llms-sd-title {\n margin: 25px 0;\n}\n.llms-student-dashboard .llms-sd-items {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item {\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item:last-child .llms-sep {\n display: none;\n}\n.llms-student-dashboard .llms-sd-item .llms-sep {\n color: #333;\n margin: 0 5px;\n}\n.llms-student-dashboard .llms-sd-section {\n margin-bottom: 25px;\n}\n.llms-student-dashboard .llms-sd-section .llms-sd-section-footer {\n margin-top: 10px;\n}\n.llms-student-dashboard .orders-table {\n border: 1px solid #f5f5f5;\n width: 100%;\n}\n.llms-student-dashboard .orders-table thead {\n display: none;\n}\n.llms-student-dashboard .orders-table thead th, .llms-student-dashboard .orders-table thead td {\n font-weight: 700;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table thead {\n display: table-header-group;\n }\n}\n.llms-student-dashboard .orders-table tbody tr:nth-child(even) td, .llms-student-dashboard .orders-table tbody tr:nth-child(even) th {\n background: #f9f9f9;\n}\n.llms-student-dashboard .orders-table tfoot th, .llms-student-dashboard .orders-table tfoot td {\n padding: 10px;\n text-align: right;\n}\n.llms-student-dashboard .orders-table tfoot th:last-child, .llms-student-dashboard .orders-table tfoot td:last-child {\n border-bottom-width: 0;\n}\n.llms-student-dashboard .orders-table th {\n font-weight: 700;\n}\n.llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-color: #efefef;\n border-style: solid;\n border-width: 0;\n display: block;\n padding: 8px 12px;\n text-align: center;\n}\n.llms-student-dashboard .orders-table th .llms-button-primary, .llms-student-dashboard .orders-table td .llms-button-primary {\n display: inline-block;\n}\n.llms-student-dashboard .orders-table th:last-child, .llms-student-dashboard .orders-table td:last-child {\n border-bottom-width: 1px;\n}\n.llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n content: attr(data-label);\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-bottom-width: 1px;\n display: table-cell;\n text-align: left;\n }\n .llms-student-dashboard .orders-table th:first-child, .llms-student-dashboard .orders-table td:first-child {\n width: 220px;\n }\n .llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n display: none;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table.transactions th:first-child {\n width: auto;\n }\n}\n.llms-student-dashboard .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.llms-student-dashboard .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.llms-student-dashboard .llms-status.llms-active, .llms-student-dashboard .llms-status.llms-completed, .llms-student-dashboard .llms-status.llms-pass, .llms-student-dashboard .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.llms-student-dashboard .llms-status.llms-fail, .llms-student-dashboard .llms-status.llms-failed, .llms-student-dashboard .llms-status.llms-expired, .llms-student-dashboard .llms-status.llms-cancelled, .llms-student-dashboard .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.llms-student-dashboard .llms-status.llms-incomplete, .llms-student-dashboard .llms-status.llms-on-hold, .llms-student-dashboard .llms-status.llms-pending, .llms-student-dashboard .llms-status.llms-pending-cancel, .llms-student-dashboard .llms-status.llms-refunded, .llms-student-dashboard .llms-status.llms-txn-pending, .llms-student-dashboard .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n.llms-student-dashboard .llms-person-form-wrapper .llms-change-password {\n display: none;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-primary {\n float: left;\n width: 68%;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-secondary {\n float: left;\n width: 32%;\n }\n}\n.llms-student-dashboard .order-secondary form {\n margin-bottom: 0;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,\n.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary {\n float: none;\n width: 100%;\n }\n}\n.llms-student-dashboard .llms-switch-payment-source .llms-notice,\n.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\n.llms-student-dashboard .llms-switch-payment-source-main {\n border: none;\n display: none;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways {\n padding: 10px 15px 0;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary {\n padding: 0 25px 10px;\n margin: 0;\n list-style-type: none;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li {\n list-style-type: none;\n}\n.llms-student-dashboard .llms-loop-list {\n margin: 0 -10px;\n}\n\n.llms-sd-grades .llms-table .llms-progress {\n display: block;\n margin: 0;\n}\n.llms-sd-grades .llms-table .llms-progress .llms-progress-bar {\n top: 0;\n height: 1.4em;\n}\n.llms-sd-grades .llms-table .llms-progress .progress__indicator {\n font-size: 1em;\n position: relative;\n right: 0.4em;\n top: 0.2em;\n z-index: 1;\n}\n\n.llms-table.llms-single-course-grades tbody tr:first-child td, .llms-table.llms-single-course-grades tbody tr:first-child th {\n background-color: #eaeaea;\n}\n.llms-table.llms-single-course-grades th {\n font-weight: 400;\n}\n.llms-table.llms-single-course-grades td .llms-donut {\n display: inline-block;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td .llms-status {\n margin-right: 4px;\n}\n.llms-table.llms-single-course-grades td .llms-donut + .llms-status {\n margin-left: 4px;\n}\n.llms-table.llms-single-course-grades th.llms-section_title {\n font-size: 110%;\n font-weight: 700;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title {\n padding-left: 36px;\n max-width: 40%;\n}\n.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut {\n display: inline-block;\n margin-right: 5px;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href=\"#\"] {\n pointer-events: none;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] {\n color: inherit;\n position: relative;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip {\n max-width: 380px;\n width: 380px;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip.show {\n top: -54px;\n}\n\n.llms-sd-widgets {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n.llms-sd-widgets .llms-sd-widget {\n background: #f9f9f9;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin: 10px 10px 20px;\n padding: 0 0 20px;\n}\n.llms-sd-widgets .llms-sd-widget:first-child {\n margin-left: 0;\n}\n.llms-sd-widgets .llms-sd-widget:last-child {\n margin-right: 0;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title {\n background: #2295ff;\n color: #fff;\n font-size: 18px;\n line-height: 1;\n margin: 0 0 20px;\n padding: 10px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty {\n font-size: 14px;\n font-style: italic;\n opacity: 0.5;\n text-align: center;\n}\n.llms-sd-widgets .llms-sd-widget .llms-donut {\n margin: 0 auto;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date {\n opacity: 0.8;\n text-align: center;\n font-size: 22px;\n line-height: 1.1;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span {\n display: block;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day {\n font-size: 52px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff {\n font-size: 12px;\n font-style: italic;\n margin-top: 8px;\n opacity: 0.75;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement {\n background: transparent;\n margin: 0 auto;\n max-width: 120px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title {\n display: none;\n}\n\n.llms-sd-pagination {\n margin-top: 24px;\n}\n.llms-sd-pagination:before, .llms-sd-pagination:after {\n content: \" \";\n display: table;\n}\n.llms-sd-pagination:after {\n clear: both;\n}\n.llms-sd-pagination .llms-button-secondary {\n display: inline-block;\n}\n.llms-sd-pagination .llms-button-secondary.prev {\n float: left;\n}\n.llms-sd-pagination .llms-button-secondary.next {\n float: right;\n}\n\n.llms-sd-notification-center .llms-notification {\n z-index: 1;\n}\n\n.llms-table {\n border: 1px solid #efefef;\n width: 100%;\n}\n.llms-table thead th, .llms-table thead td {\n font-weight: 700;\n}\n.llms-table tbody tr:nth-child(odd) td, .llms-table tbody tr:nth-child(odd) th {\n background: #f9f9f9;\n}\n.llms-table tbody tr:last-child {\n border-bottom-width: 0;\n}\n.llms-table tfoot tr {\n background: #f9f9f9;\n}\n.llms-table tfoot tr .llms-pagination .page-numbers {\n margin: 0;\n}\n.llms-table tfoot tr .llms-table-sort {\n text-align: right;\n}\n.llms-table tfoot tr .llms-table-sort form, .llms-table tfoot tr .llms-table-sort select, .llms-table tfoot tr .llms-table-sort input, .llms-table tfoot tr .llms-table-sort button {\n margin: 0;\n}\n.llms-table th {\n font-weight: 700;\n}\n.llms-table th, .llms-table td {\n border-bottom: 1px solid #efefef;\n padding: 8px 12px;\n}\n.llms-table th:first-child, .llms-table td:first-child {\n padding-left: 12px;\n}\n.llms-table th:last-child, .llms-table td:last-child {\n padding-right: 12px;\n}\n\n#page .llms-table tfoot label {\n display: inline;\n}\n\n#page .llms-table tfoot select {\n height: auto;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n/*# sourceMappingURL=../maps/css/lifterlms.css.map */\n"],"sourceRoot":"../../css"} \ No newline at end of file +{"version":3,"sources":["lifterlms.css"],"names":[],"mappings":"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","file":"../../css/lifterlms.min.css","sourcesContent":["@charset \"UTF-8\";\n.llms-pagination ul:before, .llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:before,\n.llms-form-fields:before,\n.llms-checkout-cols-2:before,\n.llms-access-plans:before,\n.llms-course-navigation:before,\n.llms-loop-list:before,\n.llms-cols:before,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n content: \" \";\n display: table;\n}\n.llms-pagination ul:after,\n.llms-student-dashboard .llms-sd-items:after,\n.llms-form-fields:after,\n.llms-checkout-cols-2:after,\n.llms-access-plans:after,\n.llms-course-navigation:after,\n.llms-loop-list:after,\n.llms-cols:after {\n clear: both;\n}\n\n.llms-cols .llms-col {\n width: 100%;\n}\n@media all and (min-width: 600px) {\n .llms-cols [class*=llms-col-] {\n float: left;\n }\n}\n\n.llms-flex-cols {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-flow: row wrap;\n flex-flow: row wrap;\n}\n.llms-flex-cols [class*=llms-col] {\n -webkit-box-flex: 0;\n -ms-flex: 0 1 auto;\n flex: 0 1 auto;\n width: 100%;\n}\n\n@media all and (min-width: 600px) {\n .llms-cols .llms-col-1, .llms-flex-cols .llms-col-1 {\n width: 100%;\n }\n .llms-cols .llms-col-2, .llms-flex-cols .llms-col-2 {\n width: 50%;\n }\n .llms-cols .llms-col-3, .llms-flex-cols .llms-col-3 {\n width: 33.3333333333%;\n }\n .llms-cols .llms-col-4, .llms-flex-cols .llms-col-4 {\n width: 25%;\n }\n .llms-cols .llms-col-5, .llms-flex-cols .llms-col-5 {\n width: 20%;\n }\n .llms-cols .llms-col-6, .llms-flex-cols .llms-col-6 {\n width: 16.6666666667%;\n }\n .llms-cols .llms-col-7, .llms-flex-cols .llms-col-7 {\n width: 14.2857142857%;\n }\n .llms-cols .llms-col-8, .llms-flex-cols .llms-col-8 {\n width: 12.5%;\n }\n .llms-cols .llms-col-9, .llms-flex-cols .llms-col-9 {\n width: 11.1111111111%;\n }\n .llms-cols .llms-col-10, .llms-flex-cols .llms-col-10 {\n width: 10%;\n }\n .llms-cols .llms-col-11, .llms-flex-cols .llms-col-11 {\n width: 9.0909090909%;\n }\n .llms-cols .llms-col-12, .llms-flex-cols .llms-col-12 {\n width: 8.3333333333%;\n }\n}\n.llms-button-action,\n.llms-button-danger,\n.llms-button-primary,\n.llms-button-secondary {\n border: none;\n border-radius: 8px;\n color: #fefefe;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-action:disabled,\n.llms-button-danger:disabled,\n.llms-button-primary:disabled,\n.llms-button-secondary:disabled {\n opacity: 0.5;\n}\n.llms-button-action:hover, .llms-button-action:active,\n.llms-button-danger:hover,\n.llms-button-danger:active,\n.llms-button-primary:hover,\n.llms-button-primary:active,\n.llms-button-secondary:hover,\n.llms-button-secondary:active {\n color: #fefefe;\n}\n.llms-button-action:focus,\n.llms-button-danger:focus,\n.llms-button-primary:focus,\n.llms-button-secondary:focus {\n color: #fefefe;\n}\n.llms-button-action.auto,\n.llms-button-danger.auto,\n.llms-button-primary.auto,\n.llms-button-secondary.auto {\n width: auto;\n}\n.llms-button-action.full,\n.llms-button-danger.full,\n.llms-button-primary.full,\n.llms-button-secondary.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-action.square,\n.llms-button-danger.square,\n.llms-button-primary.square,\n.llms-button-secondary.square {\n padding: 12px;\n}\n.llms-button-action.small,\n.llms-button-danger.small,\n.llms-button-primary.small,\n.llms-button-secondary.small {\n font-size: 13px;\n padding: 8px 14px;\n}\n.llms-button-action.small.square,\n.llms-button-danger.small.square,\n.llms-button-primary.small.square,\n.llms-button-secondary.small.square {\n padding: 8px;\n}\n.llms-button-action.large,\n.llms-button-danger.large,\n.llms-button-primary.large,\n.llms-button-secondary.large {\n font-size: 18px;\n line-height: 1.2;\n padding: 16px 32px;\n}\n.llms-button-action.large.square,\n.llms-button-danger.large.square,\n.llms-button-primary.large.square,\n.llms-button-secondary.large.square {\n padding: 16px;\n}\n.llms-button-action.large .fa,\n.llms-button-danger.large .fa,\n.llms-button-primary.large .fa,\n.llms-button-secondary.large .fa {\n left: -7px;\n position: relative;\n}\n\n.llms-button-primary {\n background: #2295ff;\n}\n.llms-button-primary:hover, .llms-button-primary.clicked {\n background: #0077e4;\n}\n.llms-button-primary:focus, .llms-button-primary:active {\n background: #4ba9ff;\n}\n\n.llms-button-secondary {\n background: #e1e1e1;\n color: #414141;\n}\n.llms-button-secondary:hover {\n color: #414141;\n background: #cdcdcd;\n}\n.llms-button-secondary:focus, .llms-button-secondary:active {\n color: #414141;\n background: #ebebeb;\n}\n\n.llms-button-action {\n background: #f8954f;\n}\n.llms-button-action:hover, .llms-button-action.clicked {\n background: #f67d28;\n}\n.llms-button-action:focus, .llms-button-action:active {\n background: #faad76;\n}\n\n.llms-button-danger {\n background: #e5554e;\n}\n.llms-button-danger:hover {\n background: #e0332a;\n}\n.llms-button-danger:focus, .llms-button-danger:active {\n background: #e86660;\n}\n\n.llms-button-outline {\n background: transparent;\n border: 3px solid #1D2327;\n border-radius: 8px;\n color: #1D2327;\n cursor: pointer;\n font-size: 16px;\n font-weight: 700;\n text-decoration: none;\n text-shadow: none;\n line-height: 1;\n margin: 0;\n max-width: 100%;\n padding: 12px 24px;\n position: relative;\n -webkit-transition: all 0.5s ease;\n transition: all 0.5s ease;\n}\n.llms-button-outline:disabled {\n opacity: 0.5;\n}\n.llms-button-outline:hover, .llms-button-outline:active {\n color: #1D2327;\n}\n.llms-button-outline:focus {\n color: #1D2327;\n}\n.llms-button-outline.auto {\n width: auto;\n}\n.llms-button-outline.full {\n display: block;\n text-align: center;\n width: 100%;\n}\n.llms-button-outline.square {\n padding: 12px;\n}\n\n.llms-donut {\n background-color: #f1f1f1;\n background-image: none;\n border-radius: 50%;\n color: #ef476f;\n height: 200px;\n overflow: hidden;\n position: relative;\n width: 200px;\n}\n.llms-donut:before, .llms-donut:after {\n content: \" \";\n display: table;\n}\n.llms-donut:after {\n clear: both;\n}\n.llms-donut svg {\n overflow: visible !important;\n pointer-events: none;\n width: 100%;\n}\n.llms-donut svg path {\n fill: none;\n stroke-width: 35px;\n stroke: #ef476f;\n}\n.llms-donut.mini {\n height: 36px;\n width: 36px;\n}\n.llms-donut.mini .percentage {\n font-size: 10px;\n}\n.llms-donut.small {\n height: 100px;\n width: 100px;\n}\n.llms-donut.small .percentage {\n font-size: 18px;\n}\n.llms-donut.medium {\n height: 130px;\n width: 130px;\n}\n.llms-donut.medium .percentage {\n font-size: 26px;\n}\n.llms-donut.large {\n height: 260px;\n width: 260px;\n}\n.llms-donut.large .percentage {\n font-size: 48px;\n}\n.llms-donut .inside {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n background: #fff;\n border-radius: 50%;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n height: 80%;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n left: 50%;\n position: absolute;\n text-align: center;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n width: 80%;\n top: 50%;\n z-index: 3;\n}\n.llms-donut .percentage {\n line-height: 1.2;\n font-size: 34px;\n}\n.llms-donut .caption {\n font-size: 50%;\n}\n\n.lifterlms [data-tip],\n.lifterlms [data-title-default],\n.lifterlms [data-title-active],\n.llms-metabox [data-tip],\n.llms-metabox [data-title-default],\n.llms-metabox [data-title-active],\n.llms-mb-container [data-tip],\n.llms-mb-container [data-title-default],\n.llms-mb-container [data-title-active],\n.llms-quiz-wrapper [data-tip],\n.llms-quiz-wrapper [data-title-default],\n.llms-quiz-wrapper [data-title-active] {\n position: relative;\n}\n.lifterlms [data-tip].tip--top-right:before,\n.lifterlms [data-title-default].tip--top-right:before,\n.lifterlms [data-title-active].tip--top-right:before,\n.llms-metabox [data-tip].tip--top-right:before,\n.llms-metabox [data-title-default].tip--top-right:before,\n.llms-metabox [data-title-active].tip--top-right:before,\n.llms-mb-container [data-tip].tip--top-right:before,\n.llms-mb-container [data-title-default].tip--top-right:before,\n.llms-mb-container [data-title-active].tip--top-right:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:before {\n bottom: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--top-right:hover:before,\n.lifterlms [data-title-default].tip--top-right:hover:before,\n.lifterlms [data-title-active].tip--top-right:hover:before,\n.llms-metabox [data-tip].tip--top-right:hover:before,\n.llms-metabox [data-title-default].tip--top-right:hover:before,\n.llms-metabox [data-title-active].tip--top-right:hover:before,\n.llms-mb-container [data-tip].tip--top-right:hover:before,\n.llms-mb-container [data-title-default].tip--top-right:hover:before,\n.llms-mb-container [data-title-active].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-right:after,\n.lifterlms [data-title-default].tip--top-right:after,\n.lifterlms [data-title-active].tip--top-right:after,\n.llms-metabox [data-tip].tip--top-right:after,\n.llms-metabox [data-title-default].tip--top-right:after,\n.llms-metabox [data-title-active].tip--top-right:after,\n.llms-mb-container [data-tip].tip--top-right:after,\n.llms-mb-container [data-title-default].tip--top-right:after,\n.llms-mb-container [data-title-active].tip--top-right:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:after {\n border-top-color: #444;\n left: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-right:hover:after,\n.lifterlms [data-title-default].tip--top-right:hover:after,\n.lifterlms [data-title-active].tip--top-right:hover:after,\n.llms-metabox [data-tip].tip--top-right:hover:after,\n.llms-metabox [data-title-default].tip--top-right:hover:after,\n.llms-metabox [data-title-active].tip--top-right:hover:after,\n.llms-mb-container [data-tip].tip--top-right:hover:after,\n.llms-mb-container [data-title-default].tip--top-right:hover:after,\n.llms-mb-container [data-title-active].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-right:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--top-left:before,\n.lifterlms [data-title-default].tip--top-left:before,\n.lifterlms [data-title-active].tip--top-left:before,\n.llms-metabox [data-tip].tip--top-left:before,\n.llms-metabox [data-title-default].tip--top-left:before,\n.llms-metabox [data-title-active].tip--top-left:before,\n.llms-mb-container [data-tip].tip--top-left:before,\n.llms-mb-container [data-title-default].tip--top-left:before,\n.llms-mb-container [data-title-active].tip--top-left:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:before {\n bottom: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--top-left:hover:before,\n.lifterlms [data-title-default].tip--top-left:hover:before,\n.lifterlms [data-title-active].tip--top-left:hover:before,\n.llms-metabox [data-tip].tip--top-left:hover:before,\n.llms-metabox [data-title-default].tip--top-left:hover:before,\n.llms-metabox [data-title-active].tip--top-left:hover:before,\n.llms-mb-container [data-tip].tip--top-left:hover:before,\n.llms-mb-container [data-title-default].tip--top-left:hover:before,\n.llms-mb-container [data-title-active].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:before {\n bottom: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--top-left:after,\n.lifterlms [data-title-default].tip--top-left:after,\n.lifterlms [data-title-active].tip--top-left:after,\n.llms-metabox [data-tip].tip--top-left:after,\n.llms-metabox [data-title-default].tip--top-left:after,\n.llms-metabox [data-title-active].tip--top-left:after,\n.llms-mb-container [data-tip].tip--top-left:after,\n.llms-mb-container [data-title-default].tip--top-left:after,\n.llms-mb-container [data-title-active].tip--top-left:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:after {\n border-top-color: #444;\n right: 6px;\n top: 0;\n}\n.lifterlms [data-tip].tip--top-left:hover:after,\n.lifterlms [data-title-default].tip--top-left:hover:after,\n.lifterlms [data-title-active].tip--top-left:hover:after,\n.llms-metabox [data-tip].tip--top-left:hover:after,\n.llms-metabox [data-title-default].tip--top-left:hover:after,\n.llms-metabox [data-title-active].tip--top-left:hover:after,\n.llms-mb-container [data-tip].tip--top-left:hover:after,\n.llms-mb-container [data-title-default].tip--top-left:hover:after,\n.llms-mb-container [data-title-active].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--top-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--top-left:hover:after {\n top: -6px;\n}\n.lifterlms [data-tip].tip--bottom-left:before,\n.lifterlms [data-title-default].tip--bottom-left:before,\n.lifterlms [data-title-active].tip--bottom-left:before,\n.llms-metabox [data-tip].tip--bottom-left:before,\n.llms-metabox [data-title-default].tip--bottom-left:before,\n.llms-metabox [data-title-active].tip--bottom-left:before,\n.llms-mb-container [data-tip].tip--bottom-left:before,\n.llms-mb-container [data-title-default].tip--bottom-left:before,\n.llms-mb-container [data-title-active].tip--bottom-left:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:before {\n top: 100%;\n right: -10px;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:before,\n.lifterlms [data-title-default].tip--bottom-left:hover:before,\n.lifterlms [data-title-active].tip--bottom-left:hover:before,\n.llms-metabox [data-tip].tip--bottom-left:hover:before,\n.llms-metabox [data-title-default].tip--bottom-left:hover:before,\n.llms-metabox [data-title-active].tip--bottom-left:hover:before,\n.llms-mb-container [data-tip].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-left:after,\n.lifterlms [data-title-default].tip--bottom-left:after,\n.lifterlms [data-title-active].tip--bottom-left:after,\n.llms-metabox [data-tip].tip--bottom-left:after,\n.llms-metabox [data-title-default].tip--bottom-left:after,\n.llms-metabox [data-title-active].tip--bottom-left:after,\n.llms-mb-container [data-tip].tip--bottom-left:after,\n.llms-mb-container [data-title-default].tip--bottom-left:after,\n.llms-mb-container [data-title-active].tip--bottom-left:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:after {\n border-bottom-color: #444;\n right: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-left:hover:after,\n.lifterlms [data-title-default].tip--bottom-left:hover:after,\n.lifterlms [data-title-active].tip--bottom-left:hover:after,\n.llms-metabox [data-tip].tip--bottom-left:hover:after,\n.llms-metabox [data-title-default].tip--bottom-left:hover:after,\n.llms-metabox [data-title-active].tip--bottom-left:hover:after,\n.llms-mb-container [data-tip].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-left:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-left:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-left:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip].tip--bottom-right:before,\n.lifterlms [data-title-default].tip--bottom-right:before,\n.lifterlms [data-title-active].tip--bottom-right:before,\n.llms-metabox [data-tip].tip--bottom-right:before,\n.llms-metabox [data-title-default].tip--bottom-right:before,\n.llms-metabox [data-title-active].tip--bottom-right:before,\n.llms-mb-container [data-tip].tip--bottom-right:before,\n.llms-mb-container [data-title-default].tip--bottom-right:before,\n.llms-mb-container [data-title-active].tip--bottom-right:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:before {\n top: 100%;\n left: -10px;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:before,\n.lifterlms [data-title-default].tip--bottom-right:hover:before,\n.lifterlms [data-title-active].tip--bottom-right:hover:before,\n.llms-metabox [data-tip].tip--bottom-right:hover:before,\n.llms-metabox [data-title-default].tip--bottom-right:hover:before,\n.llms-metabox [data-title-active].tip--bottom-right:hover:before,\n.llms-mb-container [data-tip].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:before,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:before,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:before {\n top: calc(100% + 6px);\n}\n.lifterlms [data-tip].tip--bottom-right:after,\n.lifterlms [data-title-default].tip--bottom-right:after,\n.lifterlms [data-title-active].tip--bottom-right:after,\n.llms-metabox [data-tip].tip--bottom-right:after,\n.llms-metabox [data-title-default].tip--bottom-right:after,\n.llms-metabox [data-title-active].tip--bottom-right:after,\n.llms-mb-container [data-tip].tip--bottom-right:after,\n.llms-mb-container [data-title-default].tip--bottom-right:after,\n.llms-mb-container [data-title-active].tip--bottom-right:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:after {\n border-bottom-color: #444;\n left: 6px;\n bottom: 0;\n}\n.lifterlms [data-tip].tip--bottom-right:hover:after,\n.lifterlms [data-title-default].tip--bottom-right:hover:after,\n.lifterlms [data-title-active].tip--bottom-right:hover:after,\n.llms-metabox [data-tip].tip--bottom-right:hover:after,\n.llms-metabox [data-title-default].tip--bottom-right:hover:after,\n.llms-metabox [data-title-active].tip--bottom-right:hover:after,\n.llms-mb-container [data-tip].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-default].tip--bottom-right:hover:after,\n.llms-mb-container [data-title-active].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-tip].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-default].tip--bottom-right:hover:after,\n.llms-quiz-wrapper [data-title-active].tip--bottom-right:hover:after {\n bottom: -6px;\n}\n.lifterlms [data-tip]:before,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-active]:before,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-active]:before,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-active]:before,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-active]:before {\n background: #444;\n border-radius: 4px;\n color: #fff;\n font-size: 13px;\n line-height: 1.2;\n padding: 8px;\n max-width: 300px;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n}\n.lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:after {\n content: \"\";\n border: 6px solid transparent;\n height: 0;\n width: 0;\n}\n.lifterlms [data-tip]:before, .lifterlms [data-tip]:after,\n.lifterlms [data-title-default]:before,\n.lifterlms [data-title-default]:after,\n.lifterlms [data-title-active]:before,\n.lifterlms [data-title-active]:after,\n.llms-metabox [data-tip]:before,\n.llms-metabox [data-tip]:after,\n.llms-metabox [data-title-default]:before,\n.llms-metabox [data-title-default]:after,\n.llms-metabox [data-title-active]:before,\n.llms-metabox [data-title-active]:after,\n.llms-mb-container [data-tip]:before,\n.llms-mb-container [data-tip]:after,\n.llms-mb-container [data-title-default]:before,\n.llms-mb-container [data-title-default]:after,\n.llms-mb-container [data-title-active]:before,\n.llms-mb-container [data-title-active]:after,\n.llms-quiz-wrapper [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:after,\n.llms-quiz-wrapper [data-title-default]:before,\n.llms-quiz-wrapper [data-title-default]:after,\n.llms-quiz-wrapper [data-title-active]:before,\n.llms-quiz-wrapper [data-title-active]:after {\n opacity: 0;\n -webkit-transition: all 0.2s 0.1s ease;\n transition: all 0.2s 0.1s ease;\n position: absolute;\n pointer-events: none;\n visibility: hidden;\n}\n.lifterlms [data-tip]:hover:before, .lifterlms [data-tip]:hover:after,\n.lifterlms [data-title-default]:hover:before,\n.lifterlms [data-title-default]:hover:after,\n.lifterlms [data-title-active]:hover:before,\n.lifterlms [data-title-active]:hover:after,\n.llms-metabox [data-tip]:hover:before,\n.llms-metabox [data-tip]:hover:after,\n.llms-metabox [data-title-default]:hover:before,\n.llms-metabox [data-title-default]:hover:after,\n.llms-metabox [data-title-active]:hover:before,\n.llms-metabox [data-title-active]:hover:after,\n.llms-mb-container [data-tip]:hover:before,\n.llms-mb-container [data-tip]:hover:after,\n.llms-mb-container [data-title-default]:hover:before,\n.llms-mb-container [data-title-default]:hover:after,\n.llms-mb-container [data-title-active]:hover:before,\n.llms-mb-container [data-title-active]:hover:after,\n.llms-quiz-wrapper [data-tip]:hover:before,\n.llms-quiz-wrapper [data-tip]:hover:after,\n.llms-quiz-wrapper [data-title-default]:hover:before,\n.llms-quiz-wrapper [data-title-default]:hover:after,\n.llms-quiz-wrapper [data-title-active]:hover:before,\n.llms-quiz-wrapper [data-title-active]:hover:after {\n opacity: 1;\n -webkit-transition: all 0.2s 0.6s ease;\n transition: all 0.2s 0.6s ease;\n visibility: visible;\n z-index: 99999999;\n}\n.lifterlms [data-tip]:before,\n.llms-metabox [data-tip]:before,\n.llms-mb-container [data-tip]:before,\n.llms-quiz-wrapper [data-tip]:before {\n content: attr(data-tip);\n}\n.lifterlms [data-tip].active:before,\n.llms-metabox [data-tip].active:before,\n.llms-mb-container [data-tip].active:before,\n.llms-quiz-wrapper [data-tip].active:before {\n content: attr(data-tip-active);\n}\n\n.llms-membership-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-course-image {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n}\n\n.llms-featured-image {\n display: block;\n margin: 0 auto;\n}\n\n.llms-image-thumb {\n width: 150px;\n}\n\n.llms-video-wrapper .center-video {\n height: auto;\n max-width: 100%;\n overflow: hidden;\n position: relative;\n padding-top: 56.25%;\n text-align: center;\n}\n.llms-video-wrapper .center-video > .wp-video,\n.llms-video-wrapper .center-video .fluid-width-video-wrapper,\n.llms-video-wrapper .center-video iframe, .llms-video-wrapper .center-video object, .llms-video-wrapper .center-video embed {\n height: 100%;\n left: 0;\n position: absolute;\n top: 0;\n width: 100%;\n}\n.llms-video-wrapper .center-video > .wp-video {\n width: 100% !important;\n}\n.llms-video-wrapper .center-video .fluid-width-video-wrapper {\n padding-top: 0 !important;\n}\n\n.clear {\n clear: both;\n width: 100%;\n}\n\n.llms-featured-image {\n text-align: center;\n}\n\n#main-content .llms-payment-options p {\n margin: 0;\n font-size: 16px;\n}\n\n.llms-option {\n display: block;\n position: relative;\n margin: 20px 0;\n padding-left: 40px;\n font-size: 16px;\n}\n.llms-option label {\n cursor: pointer;\n position: static;\n}\n\n.llms-option:first-child {\n margin-top: 0;\n}\n\n.llms-option:last-child {\n margin-bottom: 0;\n}\n\n#main-content .llms-option:last-child {\n margin-bottom: 0;\n}\n\n.llms-option input[type=radio] {\n display: block;\n position: absolute;\n top: 3px;\n left: 0;\n z-index: 0;\n}\n\n.llms-option input[type=radio] {\n display: inline-block;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n display: none;\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n z-index: 20;\n position: absolute;\n top: 0;\n left: -2px;\n display: inline-block;\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n vertical-align: middle;\n -webkit-box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.5) 0 0 0 1px;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.5) 0 0 0 1px;\n background: #efefef;\n background-image: radial-gradient(ellipse at center, #e5554e 0%, #e5554e 40%, #efefef 45%);\n background-repeat: no-repeat;\n -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n}\n\n.llms-option input[type=radio] + label span.llms-radio {\n background-position: -24px 0;\n}\n\n.llms-option input[type=radio]:checked + label span.llms-radio {\n background-position: 0 0;\n}\n\n.llms-option input[type=submit] {\n border: none;\n background: #e5554e;\n color: #fff;\n font-size: 20px;\n padding: 10px 0;\n border-radius: 3px;\n cursor: pointer;\n width: 100%;\n}\n\n.llms-styled-text {\n padding: 14px 0;\n}\n\n.llms-notice-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n border: 1px solid #ccc;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n.llms-notice-box input[type=text] {\n height: auto;\n}\n.llms-notice-box .col-1-1 {\n width: 100%;\n}\n.llms-notice-box .col-1-1 input[type=text] {\n width: 100%;\n}\n.llms-notice-box .col-1-2 {\n width: 50%;\n float: left;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-2 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-3 {\n width: 33%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-4 {\n width: 25%;\n float: left;\n margin-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .col-1-4 {\n width: 100%;\n }\n}\n.llms-notice-box .col-1-6 {\n width: 16.6%;\n float: left;\n margin-right: 10px;\n}\n.llms-notice-box .col-1-8 {\n width: 11%;\n float: right;\n}\n.llms-notice-box .llms-pad-right {\n padding-right: 10px;\n}\n@media screen and (max-width: 768px) {\n .llms-notice-box .llms-pad-right {\n padding-right: 0;\n }\n}\n\ninput[type=text].cc_cvv,\n#cc_cvv {\n margin-right: 0;\n width: 23%;\n float: right;\n}\n\n.llms-clear-box {\n border-radius: 3px;\n z-index: 10;\n margin: 10px 0;\n padding: 15px 20px;\n list-style-type: none;\n width: 100%;\n overflow: auto;\n}\n\n.llms-price-label {\n font-weight: normal;\n}\n\n.llms-final-price {\n font-weight: bold;\n float: right;\n}\n\n.llms-center-content {\n text-align: center;\n}\n\n.llms-input-text {\n background-color: #fff;\n border: 1px solid #ddd;\n color: #333;\n font-size: 18px;\n font-weight: 300;\n padding: 16px;\n width: 100%;\n}\n\n.llms-price {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.llms-price-loop {\n margin-bottom: 0;\n font-weight: bold;\n}\n\n.courses .entry {\n padding: 0;\n}\n\n.list-view .site-content .llms-course-list .hentry, .list-view .site-content .llms-membership-list .hentry {\n border-top: 0;\n padding-top: 0;\n}\n\n.llms-content {\n width: 100%;\n}\n\n.llms-lesson-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-template-wrapper {\n width: 100%;\n display: block;\n clear: both;\n}\n\n.llms-button-wrapper {\n width: 100%;\n display: block;\n clear: both;\n text-align: center;\n}\n\n.llms-styled-select {\n border: 1px solid #ccc;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n border-radius: 3px;\n overflow: hidden;\n position: relative;\n}\n\n.llms-styled-select, .llms-styled-select select {\n width: 100%;\n}\n\nselect:focus {\n outline: none;\n}\n\n.llms-styled-select select {\n height: 34px;\n padding: 5px 0 5px 5px;\n background: transparent;\n border: none;\n -webkit-appearance: none;\n font-size: 16px;\n color: #444444;\n}\n\n@-moz-document url-prefix() {\n .--ms-styled-select select {\n width: 110%;\n }\n}\n.llms-styled-select .fa-sort-desc {\n position: absolute;\n top: 0;\n right: 12px;\n font-size: 24px;\n color: #ccc;\n}\n\nselect::-ms-expand {\n display: none;\n}\n\n_:-o-prefocus .llms-styled-select, .selector .llms-styled-select {\n background: none;\n}\n\n.llms-form-item-wrapper {\n margin-bottom: 1em;\n}\n\n/* Circle Graph */\n.llms-progress-circle {\n position: relative;\n width: 200px;\n height: 200px;\n float: left;\n}\n\n.llms-progress-circle-count {\n top: 27%;\n position: absolute;\n width: 94%;\n text-align: center;\n color: #666;\n font-size: 44px;\n}\n\n.llms-progress-circle svg {\n position: absolute;\n width: 200px;\n height: 200px;\n}\n\n.llms-progress-circle circle {\n fill: transparent;\n}\n\nsvg .llms-background-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #f1f2f1;\n stroke-dasharray: 430;\n}\n\nsvg .llms-animated-circle {\n fill: transparent;\n stroke-width: 10px;\n stroke: #e5554e;\n stroke-dasharray: 430;\n stroke-dashoffset: 410;\n}\n\n.llms-widget-syllabus .llms-lesson.current-lesson .lesson-title {\n font-weight: 700;\n}\n.llms-widget-syllabus .llms-lesson-complete, .llms-widget-syllabus .lesson-complete-placeholder {\n font-size: 1.2em;\n margin-right: 6px;\n color: #ccc;\n}\n.llms-widget-syllabus .llms-lesson-complete.done, .llms-widget-syllabus .lesson-complete-placeholder.done {\n color: #e5554e;\n}\n.llms-widget-syllabus .section-title {\n font-weight: bold;\n}\n.llms-widget-syllabus .lesson-title a {\n text-decoration: none;\n}\n.llms-widget-syllabus .lesson-title a:hover {\n text-decoration: none !important;\n}\n.llms-widget-syllabus .lesson-title.done a {\n color: #999;\n text-decoration: line-through;\n}\n.llms-widget-syllabus ul {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li {\n list-style-type: none;\n}\n.llms-widget-syllabus ul li ul li {\n margin: 0 0 2px 0;\n padding: 0;\n}\n\n.llms-remove-coupon {\n float: right;\n}\n\n.llms-lesson-link-locked, .llms-lesson-link-locked:hover {\n background: #f1f1f1;\n -webkit-box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n box-shadow: 0 1px 2px 0 rgba(1, 1, 1, 0.4);\n display: block;\n color: #a6a6a6;\n min-height: 85px;\n padding: 15px;\n text-decoration: none;\n position: relative;\n}\n\n.llms-lesson-preview.is-complete .llms-lesson-link-locked {\n padding-left: 75px;\n}\n\n.llms-lesson-tooltip {\n display: none;\n position: absolute;\n color: #000000;\n background-color: #c0c0c0;\n padding: 0.25em;\n border-radius: 2px;\n z-index: 100;\n top: 0;\n left: 50%;\n text-align: center;\n -webkit-transform: translateX(-50%) translateY(-100%);\n transform: translateX(-50%) translateY(-100%);\n}\n\n/* arrows - :after */\n.llms-lesson-tooltip:after {\n content: \"\";\n width: 0;\n height: 0;\n border-top: 8px solid #c0c0c0;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n position: absolute;\n bottom: -8px;\n left: 50%;\n -webkit-transform: translateX(-50%);\n transform: translateX(-50%);\n}\n\n.llms-lesson-tooltip.active {\n display: inline-block;\n}\n\n.llms-loop-list {\n list-style: none;\n margin: 0 -10px;\n padding: 0;\n}\n@media all and (min-width: 600px) {\n .llms-loop-list.cols-1 .llms-loop-item {\n width: 100%;\n }\n .llms-loop-list.cols-2 .llms-loop-item {\n width: 50%;\n }\n .llms-loop-list.cols-3 .llms-loop-item {\n width: 33.3333333333%;\n }\n .llms-loop-list.cols-4 .llms-loop-item {\n width: 25%;\n }\n .llms-loop-list.cols-5 .llms-loop-item {\n width: 20%;\n }\n .llms-loop-list.cols-6 .llms-loop-item {\n width: 16.6666666667%;\n }\n}\n\n.llms-loop-item {\n float: left;\n list-style: none;\n margin: 0;\n padding: 0;\n width: 100%;\n}\n\n.llms-loop-item-content {\n background: #f1f1f1;\n padding-bottom: 10px;\n margin: 10px;\n}\n.llms-loop-item-content:hover {\n background: #eaeaea;\n}\n.llms-loop-item-content .llms-loop-link {\n color: #212121;\n display: block;\n}\n.llms-loop-item-content .llms-loop-link:visited {\n color: #212121;\n}\n.llms-loop-item-content .llms-featured-image {\n display: block;\n max-width: 100%;\n}\n.llms-loop-item-content .llms-loop-title {\n margin-top: 5px;\n}\n.llms-loop-item-content .llms-loop-title:hover {\n color: #2295ff;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author,\n.llms-loop-item-content .llms-loop-title {\n padding: 0 10px;\n}\n.llms-loop-item-content .llms-meta,\n.llms-loop-item-content .llms-author {\n color: #444;\n display: block;\n font-size: 13px;\n margin-bottom: 3px;\n}\n.llms-loop-item-content .llms-meta:last-child,\n.llms-loop-item-content .llms-author:last-child {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-featured-img-wrap {\n overflow: hidden;\n}\n.llms-loop-item-content p {\n margin-bottom: 0;\n}\n.llms-loop-item-content .llms-progress {\n margin: 0;\n height: 0.4em;\n}\n.llms-loop-item-content .llms-progress .progress__indicator {\n display: none;\n}\n.llms-loop-item-content .llms-progress .llms-progress-bar {\n background-color: #f6f6f6;\n right: 0;\n top: 0;\n}\n\n.course .llms-meta-info {\n margin: 20px 0;\n}\n.course .llms-meta-info .llms-meta-title {\n margin-bottom: 5px;\n}\n.course .llms-meta-info .llms-meta p {\n margin-bottom: 0;\n}\n.course .llms-meta-info .llms-meta span {\n font-weight: 700;\n}\n.course .llms-course-progress {\n margin: 40px auto;\n max-width: 480px;\n text-align: center;\n}\n\n.llms-syllabus-wrapper {\n margin: 15px;\n text-align: center;\n}\n.llms-syllabus-wrapper .llms-section-title {\n margin: 25px 0 0;\n}\n\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-back-to-course {\n width: 49%;\n}\n.llms-course-navigation .llms-prev-lesson,\n.llms-course-navigation .llms-back-to-course {\n float: left;\n margin-right: 0.5%;\n}\n.llms-course-navigation .llms-next-lesson,\n.llms-course-navigation .llms-prev-lesson + .llms-back-to-course {\n float: right;\n margin-left: 0.5%;\n}\n\n.llms-lesson-preview {\n display: inline-block;\n margin-top: 15px;\n max-width: 100%;\n position: relative;\n width: 480px;\n}\n.llms-lesson-preview .llms-lesson-link {\n background: #f1f1f1;\n color: #212121;\n display: block;\n padding: 15px;\n text-decoration: none;\n}\n.llms-lesson-preview .llms-lesson-link:before, .llms-lesson-preview .llms-lesson-link:after {\n content: \" \";\n display: table;\n}\n.llms-lesson-preview .llms-lesson-link:after {\n clear: both;\n}\n.llms-lesson-preview .llms-lesson-link:hover {\n background: #eaeaea;\n}\n.llms-lesson-preview .llms-lesson-link:visited {\n color: #212121;\n}\n.llms-lesson-preview .llms-lesson-thumbnail {\n margin-bottom: 10px;\n}\n.llms-lesson-preview .llms-lesson-thumbnail img {\n display: block;\n width: 100%;\n}\n.llms-lesson-preview .llms-pre-text {\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title {\n font-weight: 700;\n margin: 0 auto 10px;\n text-align: left;\n}\n.llms-lesson-preview .llms-lesson-title:last-child {\n margin-bottom: 0;\n}\n.llms-lesson-preview .llms-lesson-excerpt {\n text-align: left;\n}\n.llms-lesson-preview .llms-main {\n float: left;\n width: 100%;\n}\n.llms-lesson-preview .llms-extra {\n float: right;\n width: 15%;\n}\n.llms-lesson-preview .llms-extra + .llms-main {\n width: 85%;\n}\n.llms-lesson-preview .llms-lesson-counter,\n.llms-lesson-preview .llms-free-lesson-svg,\n.llms-lesson-preview .llms-lesson-complete,\n.llms-lesson-preview .llms-lesson-complete-placeholder {\n display: block;\n font-size: 32px;\n margin-bottom: 15px;\n}\n.llms-lesson-preview.is-free .llms-lesson-complete, .llms-lesson-preview.is-complete .llms-lesson-complete {\n color: #2295ff;\n}\n.llms-lesson-preview .llms-icon-free {\n background: #2295ff;\n border-radius: 4px;\n color: #f1f1f1;\n display: inline-block;\n padding: 5px 6px 4px;\n line-height: 1;\n font-size: 14px;\n}\n.llms-lesson-preview.is-incomplete .llms-lesson-complete {\n color: #cacaca;\n}\n.llms-lesson-preview .llms-lesson-counter {\n font-size: 16px;\n line-height: 1;\n}\n.llms-lesson-preview .llms-free-lesson-svg {\n fill: currentColor;\n height: 23px;\n width: 50px;\n}\n.llms-lesson-preview p {\n margin-bottom: 0;\n}\n\n/* progress bar */\n.llms-progress {\n clear: both;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: reverse;\n -ms-flex-direction: row-reverse;\n flex-direction: row-reverse;\n position: relative;\n height: 1em;\n width: 100%;\n margin: 15px 0;\n}\n\n.llms-progress .llms-progress-bar {\n background-color: #f1f2f1;\n position: relative;\n height: 0.4em;\n top: 0.3em;\n width: 100%;\n}\n\n.llms-progress .progress-bar-complete {\n background-color: #ef476f;\n height: 100%;\n}\n\n.progress__indicator {\n float: right;\n text-align: right;\n height: 1em;\n line-height: 1em;\n margin-left: 5px;\n white-space: nowrap;\n}\n\n.llms-author .name {\n margin-left: 5px;\n}\n.llms-author .label {\n margin-left: 5px;\n}\n.llms-author .avatar {\n border-radius: 50%;\n}\n.llms-author .bio {\n margin-top: 5px;\n}\n\n.llms-instructor-info .llms-instructors .llms-col:first-child .llms-author {\n margin-left: 0;\n}\n.llms-instructor-info .llms-instructors .llms-col:last-child .llms-author {\n margin-right: 0;\n}\n.llms-instructor-info .llms-instructors .llms-author {\n background: #f5f5f5;\n border-top: 4px solid #2295ff;\n text-align: center;\n margin: 45px 5px 5px;\n padding: 0 10px 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .avatar {\n background: #2295ff;\n border: 4px solid #2295ff;\n display: block;\n margin: -35px auto 10px;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info {\n display: block;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.name {\n font-weight: 700;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.label {\n font-size: 85%;\n}\n.llms-instructor-info .llms-instructors .llms-author .llms-author-info.bio {\n font-size: 90%;\n margin-bottom: 0;\n}\n\n.llms_review {\n margin: 20px 0px;\n padding: 10px;\n}\n.llms_review h5 {\n font-size: 17px;\n margin: 3px 0px;\n}\n.llms_review h6 {\n font-size: 13px;\n}\n.llms_review p {\n font-size: 15px;\n}\n\n.review_box [type=text] {\n margin: 10px 0px;\n}\n.review_box h5 {\n color: red;\n display: none;\n}\n.review_box + .thank_you_box {\n display: none;\n}\n\n.llms-notice {\n background: rgba(34, 149, 255, 0.3);\n border-color: #2295ff;\n border-style: solid;\n border-width: 3px;\n padding: 10px;\n margin-bottom: 10px;\n}\n.llms-notice p:last-child, .llms-notice ul:last-child {\n margin-bottom: 0;\n}\n.llms-notice li {\n list-style-type: none;\n}\n.llms-notice.llms-debug {\n background: rgba(202, 202, 202, 0.3);\n border-color: #cacaca;\n}\n.llms-notice.llms-error {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-notice.llms-success {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n\n.entry-content .llms-notice {\n margin: 0 0 10px;\n}\n.entry-content .llms-notice li {\n list-style-type: none;\n}\n\nul.llms-achievements-loop,\n.lifterlms ul.llms-achievements-loop,\nul.llms-certificates-loop,\n.lifterlms ul.llms-certificates-loop {\n list-style-type: none;\n margin: 0 -10px;\n padding: 0;\n}\nul.llms-achievements-loop:before, ul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:before,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:before,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:before,\n.lifterlms ul.llms-certificates-loop:after {\n content: \" \";\n display: table;\n}\nul.llms-achievements-loop:after,\n.lifterlms ul.llms-achievements-loop:after,\nul.llms-certificates-loop:after,\n.lifterlms ul.llms-certificates-loop:after {\n clear: both;\n}\nul.llms-achievements-loop li.llms-achievement-loop-item,\nul.llms-achievements-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,\nul.llms-certificates-loop li.llms-achievement-loop-item,\nul.llms-certificates-loop li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n display: block;\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 10px;\n width: 100%;\n}\n@media all and (min-width: 600px) {\n ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-1 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-1 li.llms-certificate-loop-item {\n width: 100%;\n }\n ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-2 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-2 li.llms-certificate-loop-item {\n width: 50%;\n }\n ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-3 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-3 li.llms-certificate-loop-item {\n width: 33.3333333333%;\n }\n ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-4 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-4 li.llms-certificate-loop-item {\n width: 25%;\n }\n ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item, ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-achievements-loop.loop-cols-5 li.llms-certificate-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\nul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-achievement-loop-item,\n.lifterlms ul.llms-certificates-loop.loop-cols-5 li.llms-certificate-loop-item {\n width: 20%;\n }\n}\n\n.llms-achievement,\n.llms-certificate {\n background: #f1f1f1;\n border: none;\n color: inherit;\n display: block;\n text-decoration: none;\n width: 100%;\n}\n.llms-achievement:hover,\n.llms-certificate:hover {\n background: #eaeaea;\n}\n.llms-achievement .llms-achievement-img,\n.llms-certificate .llms-achievement-img {\n display: block;\n margin: 0;\n width: 100%;\n}\n.llms-achievement .llms-achievement-title,\n.llms-certificate .llms-achievement-title {\n font-size: 16px;\n margin: 0;\n padding: 10px;\n text-align: center;\n}\n.llms-achievement .llms-certificate-title,\n.llms-certificate .llms-certificate-title {\n font-size: 16px;\n margin: 0;\n padding: 0 0 10px;\n}\n.llms-achievement .llms-achievement-info,\n.llms-achievement .llms-achievement-date,\n.llms-certificate .llms-achievement-info,\n.llms-certificate .llms-achievement-date {\n display: none;\n}\n.llms-achievement .llms-achievement-content,\n.llms-certificate .llms-achievement-content {\n padding: 20px;\n}\n.llms-achievement .llms-achievement-content:empty,\n.llms-certificate .llms-achievement-content:empty {\n padding: 0;\n}\n.llms-achievement .llms-achievement-content *:last-child,\n.llms-certificate .llms-achievement-content *:last-child {\n margin-bottom: 0;\n}\n\n.llms-certificate {\n border: 4px double #f1f1f1;\n padding: 20px 10px;\n background: #fff;\n text-align: center;\n}\n.llms-certificate:hover {\n background: #fff;\n border-color: #eaeaea;\n}\n\n.llms-achievement-modal .llms-achievement {\n background: #fff;\n}\n.llms-achievement-modal .llms-achievement-info {\n display: block;\n}\n.llms-achievement-modal .llms-achievement-title {\n display: none;\n}\n\n.llms-notification {\n background: #fff;\n -webkit-box-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n box-shadow: 0 1px 2px -2px #333, 0 1px 1px -1px #333;\n border-top: 4px solid #2295ff;\n opacity: 0;\n padding: 12px;\n position: fixed;\n right: -800px;\n top: 24px;\n -webkit-transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out;\n visibility: hidden;\n width: auto;\n z-index: 9999999;\n}\n.llms-notification:before, .llms-notification:after {\n content: \" \";\n display: table;\n}\n.llms-notification:after {\n clear: both;\n}\n.llms-notification.visible {\n left: 12px;\n opacity: 1;\n right: 12px;\n -webkit-transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, transform 0.2s ease-in-out;\n transition: opacity 0.4s ease-in-out, right 0.4s ease-in-out, top 0.1s ease-in-out, background 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;\n visibility: visible;\n}\n.llms-notification.visible:hover .llms-notification-dismiss {\n opacity: 1;\n}\n.llms-notification .llms-notification-content {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n.llms-notification .llms-notification-main {\n -ms-flex-item-align: start;\n align-self: flex-start;\n -webkit-box-flex: 4;\n -ms-flex: 4;\n flex: 4;\n -webkit-box-ordinal-group: 3;\n -ms-flex-order: 2;\n order: 2;\n}\n.llms-notification .llms-notification-title {\n font-size: 18px;\n margin: 0;\n}\n.llms-notification .llms-notification-body {\n font-size: 14px;\n line-height: 1.4;\n}\n.llms-notification .llms-notification-body p, .llms-notification .llms-notification-body li {\n font-size: inherit;\n}\n.llms-notification .llms-notification-body p {\n margin-bottom: 8px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert {\n background: #f6f6f6;\n border: 1px solid #d0d0d0;\n -webkit-box-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n box-shadow: inset 0 0 0 3px #fefefe, inset 0 0 0 4px #dedede;\n padding: 16px 16px 24px;\n margin-top: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert-title {\n font-size: 16px;\n font-weight: 700;\n margin: 12px auto;\n text-align: center;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body {\n width: 100%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(1) {\n width: 65%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(2) {\n width: 35%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(3) {\n width: 85%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(4) {\n width: 75%;\n margin-top: 18px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(5) {\n width: 70%;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(6) {\n margin-left: 12px;\n margin-bottom: -24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--body > div:nth-child(7) {\n width: 65%;\n margin-right: 12px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-line {\n border-radius: 2px;\n height: 8px;\n background: #b0b0b0;\n background-image: -webkit-gradient(linear, left top, right top, from(#b0b0b0), color-stop(20%, #a0a0a0), color-stop(40%, #b0b0b0), to(#b0b0b0));\n background-image: linear-gradient(to right, #b0b0b0 0%, #a0a0a0 20%, #b0b0b0 40%, #b0b0b0 100%);\n background-repeat: no-repeat;\n margin: 4px auto;\n}\n.llms-notification .llms-notification-body .llms-mini-cert .llms-mini-cert--mock-dot {\n background: #b0b0b0;\n border-radius: 50%;\n display: inline-block;\n content: \"\";\n height: 24px;\n width: 24px;\n}\n.llms-notification .llms-notification-body .llms-mini-cert p {\n margin-bottom: 0;\n}\n.llms-notification .llms-notification-aside {\n -ms-flex-item-align: start;\n align-self: flex-start;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin-right: 12px;\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n}\n.llms-notification .llms-notification-icon {\n display: block;\n max-width: 64px;\n}\n.llms-notification .llms-notification-footer {\n border-top: 1px solid #e5e5e5;\n font-size: 12px;\n margin-top: 12px;\n padding: 6px 6px 0;\n text-align: right;\n}\n.llms-notification .llms-notification-dismiss {\n color: #e5554e;\n cursor: pointer;\n font-size: 22px;\n position: absolute;\n right: 10px;\n top: 8px;\n -webkit-transition: opacity 0.4s ease-in-out;\n transition: opacity 0.4s ease-in-out;\n}\n\n.llms-sd-notification-center .llms-notification-list,\n.llms-sd-notification-center .llms-notification-list-item {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-sd-notification-center .llms-notification-list-item:hover .llms-notification {\n background: #fcfcfc;\n}\n.llms-sd-notification-center .llms-notification {\n opacity: 1;\n border-top: 1px solid #e5e5e5;\n left: auto;\n padding: 24px;\n position: relative;\n right: auto;\n top: auto;\n visibility: visible;\n width: auto;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-aside {\n max-width: 64px;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-footer {\n border: none;\n padding: 0;\n text-align: left;\n}\n.llms-sd-notification-center .llms-notification .llms-progress {\n display: none !important;\n}\n.llms-sd-notification-center .llms-notification .llms-notification-date {\n color: #515151;\n float: left;\n margin-right: 6px;\n}\n.llms-sd-notification-center .llms-notification .llms-mini-cert {\n margin: 0 auto;\n max-width: 380px;\n}\n\n@media all and (min-width: 480px) {\n .llms-notification {\n right: -800px;\n width: 360px;\n }\n .llms-notification.visible {\n left: auto;\n right: 24px;\n }\n .llms-notification .llms-notification-dismiss {\n opacity: 0;\n }\n}\n.llms-pagination ul {\n list-style-type: none;\n}\n.llms-pagination ul li {\n float: left;\n}\n.llms-pagination ul li a {\n border-bottom: 0;\n text-decoration: none;\n}\n.llms-pagination ul li .page-numbers {\n padding: 0.5em;\n text-decoration: underline;\n}\n.llms-pagination ul li .page-numbers.current {\n text-decoration: none;\n}\n\n.llms-tooltip {\n background: #2a2a2a;\n border-radius: 4px;\n color: #fff;\n font-size: 14px;\n line-height: 1.2;\n opacity: 0;\n top: -20px;\n padding: 8px 12px;\n left: 50%;\n position: absolute;\n pointer-events: none;\n -webkit-transform: translateX(-50%);\n transform: translateX(-50%);\n -webkit-transition: opacity 0.2s ease, top 0.2s ease;\n transition: opacity 0.2s ease, top 0.2s ease;\n max-width: 320px;\n}\n.llms-tooltip.show {\n top: -28px;\n opacity: 1;\n}\n.llms-tooltip:after {\n bottom: -8px;\n border-top: 8px solid #2a2a2a;\n border-left: 8px solid transparent;\n border-right: 8px solid transparent;\n content: \"\";\n height: 0;\n left: 50%;\n position: absolute;\n -webkit-transform: translateX(-50%);\n transform: translateX(-50%);\n width: 0;\n}\n\n.webui-popover-title {\n font-size: initial;\n font-weight: initial;\n line-height: initial;\n}\n\n.webui-popover-inverse .webui-popover-inner .close {\n color: #fff;\n opacity: 0.6;\n text-shadow: none;\n}\n.webui-popover-inverse .webui-popover-inner .close:hover {\n opacity: 0.8;\n}\n.webui-popover-inverse .webui-popover-content a {\n color: #fff;\n text-decoration: underline;\n}\n.webui-popover-inverse .webui-popover-content a:hover {\n text-decoration: none;\n}\n\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question {\n background: #efefef;\n margin: 0 0 10px;\n position: relative;\n list-style-type: none;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer {\n color: inherit;\n display: block;\n padding: 10px 35px 10px 10px;\n text-decoration: none;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:before, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .toggle-answer:after {\n clear: both;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect {\n background: rgba(255, 146, 43, 0.2);\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.correct .llms-status-icon, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--waiting.incorrect .llms-status-icon {\n background-color: #ff922b;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct {\n background: rgba(131, 195, 115, 0.2);\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.correct .llms-status-icon {\n background-color: #83c373;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect {\n background: rgba(229, 85, 78, 0.2);\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.status--graded.incorrect .llms-status-icon {\n background-color: #e5554e;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question pre {\n overflow: auto;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-question-title {\n float: left;\n margin: 0;\n line-height: 1;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-points {\n float: right;\n line-height: 1;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon-tip {\n position: absolute;\n right: -12px;\n top: -2px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-status-icon {\n color: rgba(255, 255, 255, 0.65);\n border-radius: 50%;\n font-size: 30px;\n height: 40px;\n line-height: 40px;\n text-align: center;\n width: 40px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main {\n display: none;\n padding: 0 10px 10px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-results-label {\n font-weight: 700;\n margin-bottom: 10px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers {\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n padding: 0;\n margin: 0 0 0 30px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer:only-child {\n list-style-type: none;\n margin-left: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main img {\n height: auto;\n max-width: 200px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section {\n border-top: 2px solid rgba(255, 255, 255, 0.5);\n margin-top: 20px;\n padding-top: 20px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question .llms-quiz-attempt-question-main .llms-quiz-attempt-answer-section:first-child {\n border-top: none;\n margin-top: 0;\n padding-top: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_choice ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer, .single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--picture_reorder ul.llms-quiz-attempt-answers li.llms-quiz-attempt-answer {\n display: inline-block;\n list-style-type: none;\n margin: 0;\n padding: 5px;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed {\n opacity: 0.5;\n}\n.single-llms_quiz #llms-quiz-wrapper .llms-quiz-attempt-results .llms-quiz-attempt-question.type--removed .llms-question-title {\n font-style: italic;\n font-weight: normal;\n}\n.single-llms_quiz .llms-return {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-results:before, .single-llms_quiz .llms-quiz-results:after {\n content: \" \";\n display: table;\n}\n.single-llms_quiz .llms-quiz-results:after {\n clear: both;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing {\n color: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.passing svg path {\n stroke: #83c373;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending {\n color: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.pending svg path {\n stroke: #555;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing {\n color: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-donut.failing svg path {\n stroke: #e5554e;\n}\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-aside,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n margin-bottom: 20px;\n}\n@media all and (min-width: 600px) {\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-aside {\n float: left;\n width: 220px;\n }\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-main,\n.single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n float: right;\n width: calc(100% - 300px);\n }\n .single-llms_quiz .llms-quiz-results .llms-quiz-results-history {\n clear: right;\n }\n}\n.single-llms_quiz ul.llms-quiz-meta-info,\n.single-llms_quiz ul.llms-quiz-meta-info li {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-llms_quiz ul.llms-quiz-meta-info {\n margin-bottom: 10px;\n}\n.single-llms_quiz .llms-quiz-buttons {\n margin-top: 10px;\n text-align: left;\n}\n.single-llms_quiz .llms-quiz-buttons form {\n display: inline-block;\n}\n\n.llms-quiz-question-wrapper {\n min-height: 140px;\n position: relative;\n}\n.llms-quiz-question-wrapper .llms-quiz-loading {\n bottom: 20px;\n left: 0;\n position: absolute;\n right: 0;\n text-align: center;\n z-index: 1;\n}\n\n.llms-quiz-ui {\n background: #fcfcfc;\n padding: 20px;\n position: relative;\n}\n.llms-quiz-ui .llms-quiz-header {\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n margin: 0 0 30px;\n}\n.llms-quiz-ui .llms-progress {\n background-color: #f1f2f1;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n -ms-flex-direction: row;\n flex-direction: row;\n height: 8px;\n margin: 0;\n overflow: hidden;\n}\n.llms-quiz-ui .llms-progress .progress-bar-complete {\n -webkit-transition: width 0.3s ease-in;\n transition: width 0.3s ease-in;\n width: 0;\n}\n.llms-quiz-ui .llms-error {\n background: #e5554e;\n border-radius: 4px;\n color: #fff;\n margin: 10px 0;\n padding: 10px;\n}\n.llms-quiz-ui .llms-error:before, .llms-quiz-ui .llms-error:after {\n content: \" \";\n display: table;\n}\n.llms-quiz-ui .llms-error:after {\n clear: both;\n}\n.llms-quiz-ui .llms-error a {\n color: rgba(255, 255, 255, 0.6);\n float: right;\n font-size: 22px;\n line-height: 1;\n text-decoration: none;\n}\n.llms-quiz-ui .llms-quiz-counter {\n display: none;\n color: #6a6a6a;\n float: right;\n font-size: 18px;\n}\n.llms-quiz-ui .llms-quiz-counter .llms-sep {\n margin: 0 5px;\n}\n.llms-quiz-ui .llms-quiz-nav {\n margin-top: 20px;\n}\n.llms-quiz-ui .llms-quiz-nav button {\n margin: 0 10px 0 0;\n}\n\n.llms-question-wrapper .llms-question-text {\n font-size: 30px;\n font-weight: 400;\n margin-bottom: 15px;\n}\n.llms-question-wrapper ol.llms-question-choices {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice {\n border-bottom: 1px solid #e8e8e8;\n margin: 0;\n padding: 0;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice:last-child {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture {\n border-bottom: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture label {\n display: inline-block;\n padding: 0;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-marker {\n bottom: 10px;\n margin: 0;\n position: absolute;\n right: 10px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image {\n margin: 2px;\n padding: 20px;\n -webkit-transition: background 0.4s ease;\n transition: background 0.4s ease;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture .llms-choice-image img {\n display: block;\n width: 100%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice.type--picture input:checked ~ .llms-choice-image {\n background: #efefef;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input {\n display: none;\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n visibility: hidden;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label {\n display: block;\n margin: 0;\n padding: 10px 20px;\n position: relative;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice label.hovered .llms-marker:not(.type--lister) .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker {\n background: #f0f0f0;\n display: inline-block;\n font-size: 20px;\n height: 40px;\n line-height: 40px;\n margin-right: 10px;\n text-align: center;\n -webkit-transition: all 0.2s ease;\n transition: all 0.2s ease;\n vertical-align: middle;\n width: 40px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker .fa {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--lister, .llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--checkbox {\n border-radius: 4px;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-marker.type--radio {\n border-radius: 50%;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker {\n background: #ef476f;\n color: #fff;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .iterator {\n display: none;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice input:checked + .llms-marker .fa {\n display: inline;\n}\n.llms-question-wrapper ol.llms-question-choices li.llms-choice .llms-choice-text {\n display: inline-block;\n font-size: 18px;\n font-weight: 400;\n line-height: 1.6;\n margin-bottom: 0;\n vertical-align: middle;\n width: calc(100% - 60px);\n}\n\n.llms-quiz-timer {\n background: #fff;\n border: 1px solid #83c373;\n border-radius: 4px;\n color: #83c373;\n float: right;\n font-size: 18px;\n line-height: 1;\n margin-left: 20px;\n padding: 8px 12px;\n position: relative;\n white-space: nowrap;\n z-index: 1;\n}\n.llms-quiz-timer.color-half {\n border-color: #ff922b;\n color: #ff922b;\n}\n.llms-quiz-timer.color-empty {\n border-color: #e5554e;\n color: #e5554e;\n}\n.llms-quiz-timer .llms-tiles {\n display: inline-block;\n margin-left: 5px;\n}\n\n.voucher-expand {\n display: none;\n}\n\n@media all and (min-width: 600px) {\n .llms-access-plans.cols-1 .llms-access-plan {\n width: 100%;\n }\n .llms-access-plans.cols-2 .llms-access-plan {\n width: 50%;\n }\n .llms-access-plans.cols-3 .llms-access-plan {\n width: 33.3333333333%;\n }\n .llms-access-plans.cols-4 .llms-access-plan {\n width: 25%;\n }\n .llms-access-plans.cols-5 .llms-access-plan {\n width: 20%;\n }\n}\n\n.llms-free-enroll-form {\n margin-bottom: 0;\n}\n\n.llms-access-plan {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n float: left;\n text-align: center;\n width: 100%;\n}\n.llms-access-plan .llms-access-plan-footer,\n.llms-access-plan .llms-access-plan-content {\n background: #f1f1f1;\n}\n.llms-access-plan.featured .llms-access-plan-featured {\n background: #4ba9ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer,\n.llms-access-plan.featured .llms-access-plan-content {\n border-left: 3px solid #2295ff;\n border-right: 3px solid #2295ff;\n}\n.llms-access-plan.featured .llms-access-plan-footer {\n border-bottom-color: #2295ff;\n}\n.llms-access-plan.on-sale .price-regular {\n text-decoration: line-through;\n}\n.llms-access-plan .stamp {\n background: #2295ff;\n color: #fff;\n font-size: 11px;\n font-style: normal;\n font-weight: 300;\n padding: 2px 3px;\n vertical-align: top;\n}\n.llms-access-plan .llms-access-plan-restrictions ul {\n margin: 0;\n}\n\n.llms-access-plan-featured {\n color: #fff;\n font-size: 14px;\n font-weight: 400;\n margin: 0 2px 0 2px;\n}\n\n.llms-access-plan-content {\n margin: 0 2px 0;\n}\n.llms-access-plan-content .llms-access-plan-pricing {\n padding: 10px 0 0;\n}\n\n.llms-access-plan-title {\n background: #2295ff;\n color: #fff;\n margin-bottom: 0;\n padding: 10px;\n}\n\n.llms-access-plan-pricing .llms-price-currency-symbol {\n font-size: 14px;\n vertical-align: top;\n}\n\n.llms-access-plan-price {\n font-size: 18px;\n font-variant: small-caps;\n line-height: 20px;\n}\n.llms-access-plan-price .lifterlms-price {\n font-weight: 700;\n}\n.llms-access-plan-price.sale {\n padding: 5px 0;\n border-top: 1px solid #d0d0d0;\n border-bottom: 1px solid #d0d0d0;\n}\n\n.llms-access-plan-trial,\n.llms-access-plan-schedule,\n.llms-access-plan-sale-end,\n.llms-access-plan-expiration {\n font-size: 15px;\n font-variant: small-caps;\n line-height: 1.2;\n}\n\n.llms-access-plan-description {\n font-size: 16px;\n padding: 10px 10px 0;\n}\n.llms-access-plan-description ul {\n margin: 0;\n}\n.llms-access-plan-description ul li {\n border-bottom: 1px solid #d0d0d0;\n list-style-type: none;\n}\n.llms-access-plan-description ul li:last-child {\n border-bottom: none;\n}\n.llms-access-plan-description div:last-child, .llms-access-plan-description img:last-child, .llms-access-plan-description p:last-child, .llms-access-plan-description ul:last-child, .llms-access-plan-description li:last-child {\n margin-bottom: 0;\n}\n\n.llms-access-plan-restrictions .stamp {\n vertical-align: baseline;\n}\n.llms-access-plan-restrictions ul {\n margin: 0;\n}\n.llms-access-plan-restrictions ul li {\n font-size: 12px;\n line-height: 14px;\n list-style-type: none;\n}\n.llms-access-plan-restrictions a {\n color: #f8954f;\n}\n.llms-access-plan-restrictions a:hover {\n color: #f67d28;\n}\n\n.llms-access-plan-footer {\n border-bottom: 3px solid #f1f1f1;\n padding: 10px;\n margin: 0 2px 2px 2px;\n}\n.llms-access-plan-footer .llms-access-plan-pricing {\n padding: 0 0 10px;\n}\n\n.webui-popover-content .llms-members-only-restrictions {\n text-align: center;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li, .webui-popover-content .llms-members-only-restrictions p {\n margin: 0;\n padding: 0;\n}\n.webui-popover-content .llms-members-only-restrictions ul, .webui-popover-content .llms-members-only-restrictions ol, .webui-popover-content .llms-members-only-restrictions li {\n list-style-type: none;\n}\n.webui-popover-content .llms-members-only-restrictions li {\n padding: 8px 0;\n border-top: 1px solid #3b3b3b;\n}\n.webui-popover-content .llms-members-only-restrictions li:first-child {\n border-top: none;\n}\n.webui-popover-content .llms-members-only-restrictions li a {\n display: block;\n}\n\n.llms-checkout-wrapper form.llms-login {\n border: 3px solid #2295ff;\n display: none;\n margin-bottom: 10px;\n}\n.llms-checkout-wrapper .llms-form-heading {\n background: #2295ff;\n color: #fff;\n margin: 0 0 5px;\n padding: 10px;\n}\n\n.llms-checkout {\n background: #fff;\n position: relative;\n}\n\n@media all and (min-width: 800px) {\n .llms-checkout-cols-2 .llms-checkout-col {\n float: left;\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-1 {\n margin-right: 5px;\n width: calc(58% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 {\n margin-left: 5px;\n width: calc(42% - 5px);\n }\n .llms-checkout-cols-2 .llms-checkout-col.llms-col-2 button {\n width: 100%;\n }\n}\n\n.llms-checkout-section {\n border: 3px solid #2295ff;\n margin-bottom: 10px;\n position: relative;\n}\n\n.llms-checkout-section-content {\n margin: 10px;\n}\n.llms-checkout-section-content.llms-form-fields {\n margin: 0px;\n}\n.llms-checkout-section-content .llms-label {\n font-weight: 400;\n font-variant: small-caps;\n text-transform: lowercase;\n}\n.llms-checkout-section-content .llms-order-summary {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-checkout-section-content .llms-order-summary li {\n list-style-type: none;\n}\n.llms-checkout-section-content .llms-order-summary li.llms-pricing.on-sale .price-regular, .llms-checkout-section-content .llms-order-summary li.llms-pricing.has-coupon .price-regular {\n text-decoration: line-through;\n}\n.llms-checkout-section-content .llms-coupon-wrapper {\n border-top: 1px solid #dadada;\n margin-top: 10px;\n padding-top: 10px;\n}\n.llms-checkout-section-content .llms-coupon-wrapper .llms-coupon-entry {\n display: none;\n margin-top: 10px;\n}\n\n.llms-form-field.llms-payment-gateway-option label + span.llms-description {\n display: inline-block;\n margin-left: 5px;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description a {\n border: none;\n -webkit-box-shadow: none;\n box-shadow: none;\n text-decoration: none;\n}\n.llms-form-field.llms-payment-gateway-option .llms-description img {\n display: inline;\n max-height: 22px;\n vertical-align: middle;\n}\n\n.llms-checkout-wrapper ul.llms-payment-gateways {\n margin: 5px 0 0;\n padding: 0;\n}\n\nul.llms-payment-gateways {\n list-style-type: none;\n}\nul.llms-payment-gateways li:last-child:after {\n border-bottom: 1px solid #dadada;\n content: \"\";\n display: block;\n margin: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway {\n margin-bottom: 5px;\n list-style-type: none;\n}\nul.llms-payment-gateways .llms-payment-gateway:last-child {\n margin-bottom: none;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-payment-gateway-option label {\n font-weight: 700;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields {\n display: block;\n}\nul.llms-payment-gateways .llms-payment-gateway.is-selected .llms-gateway-fields .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\nul.llms-payment-gateways .llms-payment-gateway .llms-form-field {\n padding-bottom: 0;\n}\nul.llms-payment-gateways .llms-gateway-description {\n margin-left: 40px;\n}\nul.llms-payment-gateways .llms-gateway-fields {\n display: none;\n margin: 5px 0 20px;\n}\nul.llms-payment-gateways .llms-payment-gateway-error {\n padding: 0 10px;\n}\n\n.llms-checkout-confirm {\n margin: 0 10px;\n}\n\n.llms-payment-method {\n margin: 10px 10px 0;\n}\n\n.llms-gateway-description p {\n font-size: 85%;\n font-style: italic;\n margin-bottom: 0;\n}\n\n.llms-form-fields {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n.llms-form-fields.flush .llms-form-field {\n padding: 0 0 10px;\n}\n.llms-form-fields .wp-block-columns, .llms-form-fields .wp-block-column {\n margin-bottom: 0;\n}\n\n.llms-form-heading {\n padding: 0 10px 10px;\n}\n\n.llms-form-field {\n float: left;\n padding: 0 10px 10px;\n position: relative;\n width: 100%;\n}\n.llms-form-field label:empty:after {\n content: \" \";\n}\n.llms-form-field.valid input[type=date], .llms-form-field.valid input[type=time], .llms-form-field.valid input[type=datetime-local], .llms-form-field.valid input[type=week], .llms-form-field.valid input[type=month], .llms-form-field.valid input[type=text], .llms-form-field.valid input[type=email], .llms-form-field.valid input[type=url], .llms-form-field.valid input[type=password], .llms-form-field.valid input[type=search], .llms-form-field.valid input[type=tel], .llms-form-field.valid input[type=number], .llms-form-field.valid textarea, .llms-form-field.valid select {\n background: rgba(131, 195, 115, 0.3);\n border-color: #83c373;\n}\n.llms-form-field.error input[type=date], .llms-form-field.error input[type=time], .llms-form-field.error input[type=datetime-local], .llms-form-field.error input[type=week], .llms-form-field.error input[type=month], .llms-form-field.error input[type=text], .llms-form-field.error input[type=email], .llms-form-field.error input[type=url], .llms-form-field.error input[type=password], .llms-form-field.error input[type=search], .llms-form-field.error input[type=tel], .llms-form-field.error input[type=number], .llms-form-field.error textarea, .llms-form-field.error select, .llms-form-field.invalid input[type=date], .llms-form-field.invalid input[type=time], .llms-form-field.invalid input[type=datetime-local], .llms-form-field.invalid input[type=week], .llms-form-field.invalid input[type=month], .llms-form-field.invalid input[type=text], .llms-form-field.invalid input[type=email], .llms-form-field.invalid input[type=url], .llms-form-field.invalid input[type=password], .llms-form-field.invalid input[type=search], .llms-form-field.invalid input[type=tel], .llms-form-field.invalid input[type=number], .llms-form-field.invalid textarea, .llms-form-field.invalid select {\n background: rgba(229, 85, 78, 0.3);\n border-color: #e5554e;\n}\n.llms-form-field.llms-visually-hidden-field {\n display: none;\n}\n.llms-form-field.align-right {\n text-align: right;\n}\n@media screen and (min-width: 600px) {\n .llms-form-field.llms-cols-1 {\n width: 8.3333333333%;\n }\n .llms-form-field.llms-cols-2 {\n width: 16.6666666667%;\n }\n .llms-form-field.llms-cols-3 {\n width: 25%;\n }\n .llms-form-field.llms-cols-4 {\n width: 33.3333333333%;\n }\n .llms-form-field.llms-cols-5 {\n width: 41.6666666667%;\n }\n .llms-form-field.llms-cols-6 {\n width: 50%;\n }\n .llms-form-field.llms-cols-7 {\n width: 58.3333333333%;\n }\n .llms-form-field.llms-cols-8 {\n width: 66.6666666667%;\n }\n .llms-form-field.llms-cols-9 {\n width: 75%;\n }\n .llms-form-field.llms-cols-10 {\n width: 83.3333333333%;\n }\n .llms-form-field.llms-cols-11 {\n width: 91.6666666667%;\n }\n .llms-form-field.llms-cols-12 {\n width: 100%;\n }\n}\n.llms-form-field.type-hidden {\n padding: 0;\n}\n.llms-form-field.type-radio input,\n.llms-form-field.type-radio label, .llms-form-field.type-checkbox input,\n.llms-form-field.type-checkbox label {\n display: inline-block;\n width: auto;\n}\n.llms-form-field.type-radio input, .llms-form-field.type-checkbox input {\n margin-right: 5px;\n}\n.llms-form-field.type-radio label + .llms-description, .llms-form-field.type-checkbox label + .llms-description {\n display: block;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio] {\n position: absolute;\n opacity: 0;\n visibility: none;\n}\n.llms-form-field.type-radio:not(.is-group) label:before {\n background: #fafafa;\n background-position: -24px 0;\n background-repeat: no-repeat;\n border-radius: 50%;\n -webkit-box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n box-shadow: hsla(0deg, 0%, 100%, 0.15) 0 1px 1px, inset hsla(0deg, 0%, 0%, 0.35) 0 0 0 1px;\n content: \"\";\n cursor: pointer;\n display: inline-block;\n height: 22px;\n margin-right: 5px;\n position: relative;\n -webkit-transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n transition: background-position 0.15s cubic-bezier(0.8, 0, 1, 1);\n top: -3px;\n vertical-align: middle;\n width: 22px;\n z-index: 2;\n}\n.llms-form-field.type-radio:not(.is-group) input[type=radio]:checked + label:before {\n -webkit-transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n transition: background-position 0.2s 0.15s cubic-bezier(0, 0, 0.2, 1);\n background-position: 0 0;\n background-image: radial-gradient(ellipse at center, #2295ff 0%, #2295ff 40%, #fafafa 45%);\n}\n.llms-form-field .llms-input-group {\n margin-top: 5px;\n}\n.llms-form-field .llms-input-group .llms-form-field {\n padding: 0 0 5px 5px;\n}\n.llms-form-field.type-reset button:not(.auto), .llms-form-field.type-button button:not(.auto), .llms-form-field.type-submit button:not(.auto) {\n width: 100%;\n}\n.llms-form-field .llms-description {\n font-size: 14px;\n font-style: italic;\n}\n.llms-form-field .llms-required {\n color: #e5554e;\n margin-left: 4px;\n}\n.llms-form-field input, .llms-form-field textarea, .llms-form-field select {\n width: 100%;\n margin-bottom: 5px;\n}\n.llms-form-field .select2-container .select2-selection--single {\n height: auto;\n padding: 4px 6px;\n}\n.llms-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {\n height: 100%;\n}\n\n.llms-password-strength-meter {\n border: 1px solid #dadada;\n display: none;\n font-size: 10px;\n margin-top: -10px;\n padding: 1px;\n position: relative;\n text-align: center;\n}\n.llms-password-strength-meter:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n -webkit-transition: width 0.4s ease;\n transition: width 0.4s ease;\n}\n.llms-password-strength-meter.mismatch, .llms-password-strength-meter.too-short, .llms-password-strength-meter.very-weak {\n border-color: #e35b5b;\n}\n.llms-password-strength-meter.mismatch:before, .llms-password-strength-meter.too-short:before, .llms-password-strength-meter.very-weak:before {\n background: rgba(227, 91, 91, 0.25);\n width: 25%;\n}\n.llms-password-strength-meter.too-short:before {\n width: 0;\n}\n.llms-password-strength-meter.weak {\n border-color: #f78b53;\n}\n.llms-password-strength-meter.weak:before {\n background: rgba(247, 139, 83, 0.25);\n width: 50%;\n}\n.llms-password-strength-meter.medium {\n border-color: #ffc733;\n}\n.llms-password-strength-meter.medium:before {\n background: rgba(255, 199, 51, 0.25);\n width: 75%;\n}\n.llms-password-strength-meter.strong {\n border-color: #83c373;\n}\n.llms-password-strength-meter.strong:before {\n background: rgba(131, 195, 115, 0.25);\n width: 100%;\n}\n\n.llms-widget-syllabus--collapsible .llms-section .section-header {\n cursor: pointer;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--opened .llms-collapse-caret .fa-caret-right {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-collapse-caret .fa-caret-down {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-section.llms-section--closed .llms-lesson {\n display: none;\n}\n.llms-widget-syllabus--collapsible .llms-syllabus-footer {\n text-align: left;\n}\n\n.llms-student-dashboard {\n /**\n * Dashboard Home\n */\n}\n.llms-student-dashboard .llms-sd-title {\n margin: 25px 0;\n}\n.llms-student-dashboard .llms-sd-items {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item {\n float: left;\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.llms-student-dashboard .llms-sd-item:last-child .llms-sep {\n display: none;\n}\n.llms-student-dashboard .llms-sd-item .llms-sep {\n color: #333;\n margin: 0 5px;\n}\n.llms-student-dashboard .llms-sd-section {\n margin-bottom: 25px;\n}\n.llms-student-dashboard .llms-sd-section .llms-sd-section-footer {\n margin-top: 10px;\n}\n.llms-student-dashboard .orders-table {\n border: 1px solid #f5f5f5;\n width: 100%;\n}\n.llms-student-dashboard .orders-table thead {\n display: none;\n}\n.llms-student-dashboard .orders-table thead th, .llms-student-dashboard .orders-table thead td {\n font-weight: 700;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table thead {\n display: table-header-group;\n }\n}\n.llms-student-dashboard .orders-table tbody tr:nth-child(even) td, .llms-student-dashboard .orders-table tbody tr:nth-child(even) th {\n background: #f9f9f9;\n}\n.llms-student-dashboard .orders-table tfoot th, .llms-student-dashboard .orders-table tfoot td {\n padding: 10px;\n text-align: right;\n}\n.llms-student-dashboard .orders-table tfoot th:last-child, .llms-student-dashboard .orders-table tfoot td:last-child {\n border-bottom-width: 0;\n}\n.llms-student-dashboard .orders-table th {\n font-weight: 700;\n}\n.llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-color: #efefef;\n border-style: solid;\n border-width: 0;\n display: block;\n padding: 8px 12px;\n text-align: center;\n}\n.llms-student-dashboard .orders-table th .llms-button-primary, .llms-student-dashboard .orders-table td .llms-button-primary {\n display: inline-block;\n}\n.llms-student-dashboard .orders-table th:last-child, .llms-student-dashboard .orders-table td:last-child {\n border-bottom-width: 1px;\n}\n.llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n content: attr(data-label);\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table th, .llms-student-dashboard .orders-table td {\n border-bottom-width: 1px;\n display: table-cell;\n text-align: left;\n }\n .llms-student-dashboard .orders-table th:first-child, .llms-student-dashboard .orders-table td:first-child {\n width: 220px;\n }\n .llms-student-dashboard .orders-table th:before, .llms-student-dashboard .orders-table td:before {\n display: none;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .orders-table.transactions th:first-child {\n width: auto;\n }\n}\n.llms-student-dashboard .llms-status {\n border-radius: 3px;\n border-bottom: 1px solid #fff;\n display: inline-block;\n font-size: 80%;\n padding: 3px 6px;\n vertical-align: middle;\n}\n.llms-student-dashboard .llms-status.llms-size--large {\n font-size: 105%;\n padding: 6px 12px;\n}\n.llms-student-dashboard .llms-status.llms-active, .llms-student-dashboard .llms-status.llms-completed, .llms-student-dashboard .llms-status.llms-pass, .llms-student-dashboard .llms-status.llms-txn-succeeded {\n color: #1f3818;\n background-color: #83c373;\n}\n.llms-student-dashboard .llms-status.llms-fail, .llms-student-dashboard .llms-status.llms-failed, .llms-student-dashboard .llms-status.llms-expired, .llms-student-dashboard .llms-status.llms-cancelled, .llms-student-dashboard .llms-status.llms-txn-failed {\n color: #5a110d;\n background-color: #e5554e;\n}\n.llms-student-dashboard .llms-status.llms-incomplete, .llms-student-dashboard .llms-status.llms-on-hold, .llms-student-dashboard .llms-status.llms-pending, .llms-student-dashboard .llms-status.llms-pending-cancel, .llms-student-dashboard .llms-status.llms-refunded, .llms-student-dashboard .llms-status.llms-txn-pending, .llms-student-dashboard .llms-status.llms-txn-refunded {\n color: #664200;\n background-color: orange;\n}\n.llms-student-dashboard .llms-person-form-wrapper .llms-change-password {\n display: none;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-primary {\n float: left;\n width: 68%;\n }\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .order-secondary {\n float: left;\n width: 32%;\n }\n}\n.llms-student-dashboard .order-secondary form {\n margin-bottom: 0;\n}\n@media all and (min-width: 600px) {\n .llms-student-dashboard .llms-view-order.llms-stack-cols .order-primary,\n.llms-student-dashboard .llms-view-order.llms-stack-cols .order-secondary {\n float: none;\n width: 100%;\n }\n}\n.llms-student-dashboard .llms-switch-payment-source .llms-notice,\n.llms-student-dashboard .llms-switch-payment-source .entry-content .llms-notice {\n margin-left: 10px;\n margin-right: 10px;\n}\n.llms-student-dashboard .llms-switch-payment-source-main {\n border: none;\n display: none;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-payment-gateways {\n padding: 10px 15px 0;\n margin: 0;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary {\n padding: 0 25px 10px;\n margin: 0;\n list-style-type: none;\n}\n.llms-student-dashboard .llms-switch-payment-source-main .llms-payment-method li,\n.llms-student-dashboard .llms-switch-payment-source-main ul.llms-order-summary li {\n list-style-type: none;\n}\n.llms-student-dashboard .llms-loop-list {\n margin: 0 -10px;\n}\n\n.llms-sd-grades .llms-table .llms-progress {\n display: block;\n margin: 0;\n}\n.llms-sd-grades .llms-table .llms-progress .llms-progress-bar {\n top: 0;\n height: 1.4em;\n}\n.llms-sd-grades .llms-table .llms-progress .progress__indicator {\n font-size: 1em;\n position: relative;\n right: 0.4em;\n top: 0.2em;\n z-index: 1;\n}\n\n.llms-table.llms-single-course-grades tbody tr:first-child td, .llms-table.llms-single-course-grades tbody tr:first-child th {\n background-color: #eaeaea;\n}\n.llms-table.llms-single-course-grades th {\n font-weight: 400;\n}\n.llms-table.llms-single-course-grades td .llms-donut {\n display: inline-block;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td .llms-status {\n margin-right: 4px;\n}\n.llms-table.llms-single-course-grades td .llms-donut + .llms-status {\n margin-left: 4px;\n}\n.llms-table.llms-single-course-grades th.llms-section_title {\n font-size: 110%;\n font-weight: 700;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title {\n padding-left: 36px;\n max-width: 40%;\n}\n.llms-table.llms-single-course-grades td.llms-associated_quiz .llms-donut {\n display: inline-block;\n margin-right: 5px;\n vertical-align: middle;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href=\"#\"] {\n pointer-events: none;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] {\n color: inherit;\n position: relative;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip {\n max-width: 380px;\n width: 380px;\n}\n.llms-table.llms-single-course-grades td.llms-lesson_title a[href^=\"#\"] .llms-tooltip.show {\n top: -54px;\n}\n\n.llms-sd-widgets {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n}\n.llms-sd-widgets .llms-sd-widget {\n background: #f9f9f9;\n -webkit-box-flex: 1;\n -ms-flex: 1;\n flex: 1;\n margin: 10px 10px 20px;\n padding: 0 0 20px;\n}\n.llms-sd-widgets .llms-sd-widget:first-child {\n margin-left: 0;\n}\n.llms-sd-widgets .llms-sd-widget:last-child {\n margin-right: 0;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-title {\n background: #2295ff;\n color: #fff;\n font-size: 18px;\n line-height: 1;\n margin: 0 0 20px;\n padding: 10px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-widget-empty {\n font-size: 14px;\n font-style: italic;\n opacity: 0.5;\n text-align: center;\n}\n.llms-sd-widgets .llms-sd-widget .llms-donut {\n margin: 0 auto;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date {\n opacity: 0.8;\n text-align: center;\n font-size: 22px;\n line-height: 1.1;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span {\n display: block;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.day {\n font-size: 52px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff {\n font-size: 12px;\n font-style: italic;\n margin-top: 8px;\n opacity: 0.75;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement {\n background: transparent;\n margin: 0 auto;\n max-width: 120px;\n}\n.llms-sd-widgets .llms-sd-widget .llms-achievement .llms-achievement-title {\n display: none;\n}\n\n.llms-sd-pagination {\n margin-top: 24px;\n}\n.llms-sd-pagination:before, .llms-sd-pagination:after {\n content: \" \";\n display: table;\n}\n.llms-sd-pagination:after {\n clear: both;\n}\n.llms-sd-pagination .llms-button-secondary {\n display: inline-block;\n}\n.llms-sd-pagination .llms-button-secondary.prev {\n float: left;\n}\n.llms-sd-pagination .llms-button-secondary.next {\n float: right;\n}\n\n.llms-sd-notification-center .llms-notification {\n z-index: 1;\n}\n\n.llms-table {\n border: 1px solid #efefef;\n width: 100%;\n}\n.llms-table thead th, .llms-table thead td {\n font-weight: 700;\n}\n.llms-table tbody tr:nth-child(odd) td, .llms-table tbody tr:nth-child(odd) th {\n background: #f9f9f9;\n}\n.llms-table tbody tr:last-child {\n border-bottom-width: 0;\n}\n.llms-table tfoot tr {\n background: #f9f9f9;\n}\n.llms-table tfoot tr .llms-pagination .page-numbers {\n margin: 0;\n}\n.llms-table tfoot tr .llms-table-sort {\n text-align: right;\n}\n.llms-table tfoot tr .llms-table-sort form, .llms-table tfoot tr .llms-table-sort select, .llms-table tfoot tr .llms-table-sort input, .llms-table tfoot tr .llms-table-sort button {\n margin: 0;\n}\n.llms-table th {\n font-weight: 700;\n}\n.llms-table th, .llms-table td {\n border-bottom: 1px solid #efefef;\n padding: 8px 12px;\n}\n.llms-table th:first-child, .llms-table td:first-child {\n padding-left: 12px;\n}\n.llms-table th:last-child, .llms-table td:last-child {\n padding-right: 12px;\n}\n\n#page .llms-table tfoot label {\n display: inline;\n}\n\n#page .llms-table tfoot select {\n height: auto;\n}\n\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \"FontAwesome\";\n src: url(\"../fonts/fontawesome-webfont.eot?v=4.7.0\");\n src: url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\") format(\"embedded-opentype\"), url(\"../fonts/fontawesome-webfont.woff2?v=4.7.0\") format(\"woff2\"), url(\"../fonts/fontawesome-webfont.woff?v=4.7.0\") format(\"woff\"), url(\"../fonts/fontawesome-webfont.ttf?v=4.7.0\") format(\"truetype\"), url(\"../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n\n.fa-border {\n padding: 0.2em 0.25em 0.15em;\n border: solid 0.08em #eeeeee;\n border-radius: 0.1em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left {\n margin-right: 0.3em;\n}\n\n.fa.fa-pull-right {\n margin-left: 0.3em;\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n\n.pull-left {\n float: left;\n}\n\n.fa.pull-left {\n margin-right: 0.3em;\n}\n\n.fa.pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: #ffffff;\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n\n.fa-music:before {\n content: \"\\f001\";\n}\n\n.fa-search:before {\n content: \"\\f002\";\n}\n\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n\n.fa-heart:before {\n content: \"\\f004\";\n}\n\n.fa-star:before {\n content: \"\\f005\";\n}\n\n.fa-star-o:before {\n content: \"\\f006\";\n}\n\n.fa-user:before {\n content: \"\\f007\";\n}\n\n.fa-film:before {\n content: \"\\f008\";\n}\n\n.fa-th-large:before {\n content: \"\\f009\";\n}\n\n.fa-th:before {\n content: \"\\f00a\";\n}\n\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n\n.fa-check:before {\n content: \"\\f00c\";\n}\n\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n\n.fa-power-off:before {\n content: \"\\f011\";\n}\n\n.fa-signal:before {\n content: \"\\f012\";\n}\n\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n\n.fa-home:before {\n content: \"\\f015\";\n}\n\n.fa-file-o:before {\n content: \"\\f016\";\n}\n\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n\n.fa-road:before {\n content: \"\\f018\";\n}\n\n.fa-download:before {\n content: \"\\f019\";\n}\n\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n\n.fa-refresh:before {\n content: \"\\f021\";\n}\n\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n\n.fa-lock:before {\n content: \"\\f023\";\n}\n\n.fa-flag:before {\n content: \"\\f024\";\n}\n\n.fa-headphones:before {\n content: \"\\f025\";\n}\n\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n\n.fa-tag:before {\n content: \"\\f02b\";\n}\n\n.fa-tags:before {\n content: \"\\f02c\";\n}\n\n.fa-book:before {\n content: \"\\f02d\";\n}\n\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n\n.fa-print:before {\n content: \"\\f02f\";\n}\n\n.fa-camera:before {\n content: \"\\f030\";\n}\n\n.fa-font:before {\n content: \"\\f031\";\n}\n\n.fa-bold:before {\n content: \"\\f032\";\n}\n\n.fa-italic:before {\n content: \"\\f033\";\n}\n\n.fa-text-height:before {\n content: \"\\f034\";\n}\n\n.fa-text-width:before {\n content: \"\\f035\";\n}\n\n.fa-align-left:before {\n content: \"\\f036\";\n}\n\n.fa-align-center:before {\n content: \"\\f037\";\n}\n\n.fa-align-right:before {\n content: \"\\f038\";\n}\n\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n\n.fa-list:before {\n content: \"\\f03a\";\n}\n\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n\n.fa-indent:before {\n content: \"\\f03c\";\n}\n\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n\n.fa-pencil:before {\n content: \"\\f040\";\n}\n\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n\n.fa-adjust:before {\n content: \"\\f042\";\n}\n\n.fa-tint:before {\n content: \"\\f043\";\n}\n\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n\n.fa-arrows:before {\n content: \"\\f047\";\n}\n\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n\n.fa-backward:before {\n content: \"\\f04a\";\n}\n\n.fa-play:before {\n content: \"\\f04b\";\n}\n\n.fa-pause:before {\n content: \"\\f04c\";\n}\n\n.fa-stop:before {\n content: \"\\f04d\";\n}\n\n.fa-forward:before {\n content: \"\\f04e\";\n}\n\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n\n.fa-eject:before {\n content: \"\\f052\";\n}\n\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n\n.fa-ban:before {\n content: \"\\f05e\";\n}\n\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n\n.fa-expand:before {\n content: \"\\f065\";\n}\n\n.fa-compress:before {\n content: \"\\f066\";\n}\n\n.fa-plus:before {\n content: \"\\f067\";\n}\n\n.fa-minus:before {\n content: \"\\f068\";\n}\n\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n\n.fa-gift:before {\n content: \"\\f06b\";\n}\n\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n\n.fa-fire:before {\n content: \"\\f06d\";\n}\n\n.fa-eye:before {\n content: \"\\f06e\";\n}\n\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n\n.fa-plane:before {\n content: \"\\f072\";\n}\n\n.fa-calendar:before {\n content: \"\\f073\";\n}\n\n.fa-random:before {\n content: \"\\f074\";\n}\n\n.fa-comment:before {\n content: \"\\f075\";\n}\n\n.fa-magnet:before {\n content: \"\\f076\";\n}\n\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n\n.fa-retweet:before {\n content: \"\\f079\";\n}\n\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n\n.fa-folder:before {\n content: \"\\f07b\";\n}\n\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n\n.fa-key:before {\n content: \"\\f084\";\n}\n\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n\n.fa-comments:before {\n content: \"\\f086\";\n}\n\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n\n.fa-star-half:before {\n content: \"\\f089\";\n}\n\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n\n.fa-trophy:before {\n content: \"\\f091\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-upload:before {\n content: \"\\f093\";\n}\n\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n\n.fa-phone:before {\n content: \"\\f095\";\n}\n\n.fa-square-o:before {\n content: \"\\f096\";\n}\n\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n\n.fa-square:before {\n content: \"\\f0c8\";\n}\n\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n\n.fa-table:before {\n content: \"\\f0ce\";\n}\n\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n\n.fa-money:before {\n content: \"\\f0d6\";\n}\n\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n\n.fa-columns:before {\n content: \"\\f0db\";\n}\n\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n\n.fa-desktop:before {\n content: \"\\f108\";\n}\n\n.fa-laptop:before {\n content: \"\\f109\";\n}\n\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n\n.fa-spinner:before {\n content: \"\\f110\";\n}\n\n.fa-circle:before {\n content: \"\\f111\";\n}\n\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n\n.fa-terminal:before {\n content: \"\\f120\";\n}\n\n.fa-code:before {\n content: \"\\f121\";\n}\n\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n\n.fa-crop:before {\n content: \"\\f125\";\n}\n\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n\n.fa-question:before {\n content: \"\\f128\";\n}\n\n.fa-info:before {\n content: \"\\f129\";\n}\n\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n\n.fa-microphone:before {\n content: \"\\f130\";\n}\n\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n\n.fa-shield:before {\n content: \"\\f132\";\n}\n\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n\n.fa-rocket:before {\n content: \"\\f135\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n\n.fa-ticket:before {\n content: \"\\f145\";\n}\n\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n\n.fa-level-up:before {\n content: \"\\f148\";\n}\n\n.fa-level-down:before {\n content: \"\\f149\";\n}\n\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n\n.fa-compass:before {\n content: \"\\f14e\";\n}\n\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n\n.fa-gbp:before {\n content: \"\\f154\";\n}\n\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-file:before {\n content: \"\\f15b\";\n}\n\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-female:before {\n content: \"\\f182\";\n}\n\n.fa-male:before {\n content: \"\\f183\";\n}\n\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n\n.fa-archive:before {\n content: \"\\f187\";\n}\n\n.fa-bug:before {\n content: \"\\f188\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-language:before {\n content: \"\\f1ab\";\n}\n\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n\n.fa-building:before {\n content: \"\\f1ad\";\n}\n\n.fa-child:before {\n content: \"\\f1ae\";\n}\n\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-database:before {\n content: \"\\f1c0\";\n}\n\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n\n.fa-history:before {\n content: \"\\f1da\";\n}\n\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n\n.fa-header:before {\n content: \"\\f1dc\";\n}\n\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n\n.fa-at:before {\n content: \"\\f1fa\";\n}\n\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n\n.fa-bus:before {\n content: \"\\f207\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-cc:before {\n content: \"\\f20a\";\n}\n\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n\n.fa-diamond:before {\n content: \"\\f219\";\n}\n\n.fa-ship:before {\n content: \"\\f21a\";\n}\n\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n\n.fa-venus:before {\n content: \"\\f221\";\n}\n\n.fa-mars:before {\n content: \"\\f222\";\n}\n\n.fa-mercury:before {\n content: \"\\f223\";\n}\n\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-server:before {\n content: \"\\f233\";\n}\n\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n\n.fa-user-times:before {\n content: \"\\f235\";\n}\n\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-train:before {\n content: \"\\f238\";\n}\n\n.fa-subway:before {\n content: \"\\f239\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n\n.fa-object-group:before {\n content: \"\\f247\";\n}\n\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-clone:before {\n content: \"\\f24d\";\n}\n\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n\n.fa-registered:before {\n content: \"\\f25d\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n\n.fa-industry:before {\n content: \"\\f275\";\n}\n\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n\n.fa-map-o:before {\n content: \"\\f278\";\n}\n\n.fa-map:before {\n content: \"\\f279\";\n}\n\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-credit-card-alt:before {\n content: \"\\f283\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-pause-circle:before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle-o:before {\n content: \"\\f28c\";\n}\n\n.fa-stop-circle:before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle-o:before {\n content: \"\\f28e\";\n}\n\n.fa-shopping-bag:before {\n content: \"\\f290\";\n}\n\n.fa-shopping-basket:before {\n content: \"\\f291\";\n}\n\n.fa-hashtag:before {\n content: \"\\f292\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-percent:before {\n content: \"\\f295\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-universal-access:before {\n content: \"\\f29a\";\n}\n\n.fa-wheelchair-alt:before {\n content: \"\\f29b\";\n}\n\n.fa-question-circle-o:before {\n content: \"\\f29c\";\n}\n\n.fa-blind:before {\n content: \"\\f29d\";\n}\n\n.fa-audio-description:before {\n content: \"\\f29e\";\n}\n\n.fa-volume-control-phone:before {\n content: \"\\f2a0\";\n}\n\n.fa-braille:before {\n content: \"\\f2a1\";\n}\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\";\n}\n\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\";\n}\n\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n content: \"\\f2a4\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-signing:before,\n.fa-sign-language:before {\n content: \"\\f2a7\";\n}\n\n.fa-low-vision:before {\n content: \"\\f2a8\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n content: \"\\f2b3\";\n}\n\n.fa-fa:before,\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-handshake-o:before {\n content: \"\\f2b5\";\n}\n\n.fa-envelope-open:before {\n content: \"\\f2b6\";\n}\n\n.fa-envelope-open-o:before {\n content: \"\\f2b7\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-address-book:before {\n content: \"\\f2b9\";\n}\n\n.fa-address-book-o:before {\n content: \"\\f2ba\";\n}\n\n.fa-vcard:before,\n.fa-address-card:before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n content: \"\\f2bc\";\n}\n\n.fa-user-circle:before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle-o:before {\n content: \"\\f2be\";\n}\n\n.fa-user-o:before {\n content: \"\\f2c0\";\n}\n\n.fa-id-badge:before {\n content: \"\\f2c1\";\n}\n\n.fa-drivers-license:before,\n.fa-id-card:before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n content: \"\\f2c3\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n content: \"\\f2cb\";\n}\n\n.fa-shower:before {\n content: \"\\f2cc\";\n}\n\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n content: \"\\f2cd\";\n}\n\n.fa-podcast:before {\n content: \"\\f2ce\";\n}\n\n.fa-window-maximize:before {\n content: \"\\f2d0\";\n}\n\n.fa-window-minimize:before {\n content: \"\\f2d1\";\n}\n\n.fa-window-restore:before {\n content: \"\\f2d2\";\n}\n\n.fa-times-rectangle:before,\n.fa-window-close:before {\n content: \"\\f2d3\";\n}\n\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n content: \"\\f2d4\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-eercast:before {\n content: \"\\f2da\";\n}\n\n.fa-microchip:before {\n content: \"\\f2db\";\n}\n\n.fa-snowflake-o:before {\n content: \"\\f2dc\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n/*# sourceMappingURL=../maps/css/lifterlms.css.map */\n"],"sourceRoot":"../../css"} \ No newline at end of file diff --git a/assets/maps/js/llms-admin.min.js.map b/assets/maps/js/llms-admin.min.js.map index e0af2a2ad7..fad918e22d 100644 --- a/assets/maps/js/llms-admin.min.js.map +++ b/assets/maps/js/llms-admin.min.js.map @@ -1 +1 @@ -{"version":3,"file":"../../js/llms-admin.min.js","sources":["llms-admin.js"],"sourcesContent":["/**\n * LifterLMS Admin Panel Javascript\n *\n * @since Unknown\n * @version 6.3.0\n *\n * @param obj $ Traditional jQuery reference.\n * @return void\n */\n;( function( $ ) {\n\n\twindow.llms = window.llms || {};\n\n\twindow.llms.widgets = function() {\n\n\t\tthis.$widgets = $( '.llms-widget' );\n\t\tthis.$info_toggles = $( '.llms-widget-info-toggle' );\n\n\t\tthis.init = function() {\n\t\t\tthis.bind();\n\t\t};\n\n\t\tthis.bind = function() {\n\n\t\t\tthis.$info_toggles.on( 'mouseenter mouseleave', function( evt ) {\n\t\t\t\t$(this).closest( '.llms-widget' )\n\t\t\t\t\t.toggleClass( 'info-showing', 'mouseenter' === evt.type );\n\t\t\t} );\n\n\t\t};\n\n\t\t// Go.\n\t\tthis.init();\n\n\t\treturn this;\n\n\t};\n\n\tvar llms_widgets = new window.llms.widgets();\n\n\t/**\n\t * Simple jQuery plugin to transform select elements into Select2-powered elements to query for Courses/Memberships via AJAX.\n\t *\n\t * @since 3.19.4\n\t * @since 3.32.0 Added ability to fetch posts based on their post status.\n\t * @since 3.37.2 Added ability to fetch posts (llms posts) filtered by their instructor id.\n\t * @since 4.4.0 Update ajax nonce source.\n\t *\n\t * @param obj options Options passed to Select2.\n\t * Each default option will pulled from the elements data-attributes.\n\t * @return void\n\t */\n\t$.fn.llmsPostsSelect2 = function( options ) {\n\n\t\tvar self = this,\n\t\t\toptions = options || {},\n\t\t\tdefaults = {\n\t\t\t\tmultiple: false,\n\t\t\t\tplaceholder: undefined !== LLMS.l10n ? LLMS.l10n.translate( 'Select a Course/Membership' ) : 'Select a Course/Membership',\n\t\t\t\tpost_type: self.attr( 'data-post-type' ) || 'post',\n\t\t\t\tpost_statuses: self.attr( 'data-post-statuses' ) || 'publish',\n\t\t\t\tinstructor_id: null,\n\t\t\t\tallow_clear: self.attr( 'data-post-type' ) || false,\n\t\t\t\twidth: null,\n\t\t\t};\n\n\t\t$.each( defaults, function( setting ) {\n\t\t\tif ( self.attr( 'data-' + setting ) ) {\n\t\t\t\toptions[ setting ] = self.attr( 'data-' + setting );\n\t\t\t}\n\t\t} );\n\n\t\tif ( 'multiple' === self.attr( 'multiple' ) ) {\n\t\t\toptions.multiple = true;\n\t\t}\n\n\t\toptions = $.extend( defaults, options );\n\n\t\tthis.llmsSelect2( {\n\t\t\tallowClear: options.allow_clear,\n\t\t\tajax: {\n\t\t\t\tdataType: 'JSON',\n\t\t\t\tdelay: 250,\n\t\t\t\tmethod: 'POST',\n\t\t\t\turl: window.ajaxurl,\n\t\t\t\tdata: function( params ) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\taction: 'select2_query_posts',\n\t\t\t\t\t\tpage: ( params.page ) ? params.page - 1 : 0, // 0 index the pages to make it simpler for the database query\n\t\t\t\t\t\tpost_type: options.post_type,\n\t\t\t\t\t\tinstructor_id : options.instructor_id,\n\t\t\t\t\t\tpost_statuses: options.post_statuses,\n\t\t\t\t\t\tterm: params.term,\n\t\t\t\t\t\t_ajax_nonce: window.llms.ajax_nonce,\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t\tprocessResults: function( data, params ) {\n\n\t\t\t\t\t// recursive function for creating\n\t\t\t\t\tfunction map_data( items ) {\n\n\t\t\t\t\t\t// this is a flat array of results\n\t\t\t\t\t\t// used when only one post type is selected\n\t\t\t\t\t\t// and to format children when using optgroups with multiple post types\n\t\t\t\t\t\tif ( Array.isArray( items ) ) {\n\t\t\t\t\t\t\treturn $.map( items, function( item ) {\n\t\t\t\t\t\t\t\treturn format_item( item );\n\t\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t\t// this sets up the top level optgroups when using multiple post types\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn $.map( items, function( item ) {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\ttext: item.label,\n\t\t\t\t\t\t\t\t\tchildren: map_data( item.items ),\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// format a single result (option)\n\t\t\t\t\tfunction format_item( item ) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\ttext: item.name,\n\t\t\t\t\t\t\tid: item.id,\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\tresults: map_data( data.items ),\n\t\t\t\t\t\tpagination: {\n\t\t\t\t\t\t\tmore: data.more\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t},\n\t\t\t},\n\t\t\tcache: true,\n\t\t\tplaceholder: options.placeholder,\n\t\t\tmultiple: options.multiple,\n\t\t\twidth: options.width,\n\t\t} );\n\n\t};\n\n\t// automatically setup any select with the `llms-posts-select2` class\n\t$( 'select.llms-posts-select2' ).llmsPostsSelect2();\n\n\t/**\n\t * Simple jQuery plugin to transform select elements into Select2-powered elements to query for Students via AJAX\n\t *\n\t * @since Unknown\n\t * @since 3.17.5 Unknown.\n\t * @since 4.4.0 Update ajax nonce source.\n\t * @since 6.2.0 Use the LifterLMS REST API \"list students\" endpoint\n\t * instead of the `LLMS_AJAX_Handler::query_students()` PHP function.\n\t * @since 6.3.0 Fixed student's REST API URL.\n\t *\n\t * @param {Object} options Options passed to Select2. Each default option will be pulled from the elements data-attributes.\n\t * @return {jQuery}\n\t */\n\t$.fn.llmsStudentsSelect2 = function( options ) {\n\n\t\tvar self = this,\n\t\t\toptions = options || {},\n\t\t\tdefaults = {\n\t\t\t\tallow_clear: false,\n\t\t\t\tenrolled_in: '',\n\t\t\t\tmultiple: false,\n\t\t\t\tnot_enrolled_in: '',\n\t\t\t\tplaceholder: undefined !== LLMS.l10n ? LLMS.l10n.translate( 'Select a student' ) : 'Select a student',\n\t\t\t\troles: '',\n\t\t\t\twidth: '100%',\n\t\t\t};\n\n\t\t$.each( defaults, function( setting ) {\n\t\t\tif ( self.attr( 'data-' + setting ) ) {\n\t\t\t\toptions[ setting ] = self.attr( 'data-' + setting );\n\t\t\t}\n\t\t} );\n\n\t\toptions = $.extend( defaults, options );\n\n\t\tthis.llmsSelect2({\n\t\t\tallowClear: options.allow_clear,\n\t\t\tajax: {\n\t\t\t\tdataType: 'JSON',\n\t\t\t\tdelay: 250,\n\t\t\t\tmethod: 'GET',\n\t\t\t\turl: window.wpApiSettings.root + 'llms/v1/students',\n\t\t\t\tdata: function( params ) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t_wpnonce: window.wpApiSettings.nonce,\n\t\t\t\t\t\tcontext: 'edit',\n\t\t\t\t\t\tpage: params.page || 1,\n\t\t\t\t\t\tper_page: 10,\n\t\t\t\t\t\tnot_enrolled_in: params.not_enrolled_in || options.not_enrolled_in,\n\t\t\t\t\t\tenrolled_in: params.enrolled_in || options.enrolled_in,\n\t\t\t\t\t\troles: params.roles || options.roles,\n\t\t\t\t\t\tsearch: params.term,\n\t\t\t\t\t\tsearch_columns: 'email,name,username',\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t\tprocessResults: function( data, params ) {\n\t\t\t\t\tvar page = params.page || 1;\n\t\t\t\t\tvar totalPages = this._request.getResponseHeader( 'X-WP-TotalPages' );\n\t\t\t\t\treturn {\n\t\t\t\t\t\tresults: $.map( data, function( item ) {\n\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\ttext: item.name + ' <' + item.email + '>',\n\t\t\t\t\t\t\t\tid: item.id,\n\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t} ),\n\t\t\t\t\t\tpagination: {\n\t\t\t\t\t\t\tmore: page < totalPages\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t},\n\t\t\tcache: true,\n\t\t\tplaceholder: options.placeholder,\n\t\t\tmultiple: options.multiple,\n\t\t\twidth: options.width,\n\t\t});\n\n\t\treturn this;\n\n\t};\n\n\t/**\n\t * Scripts for use on the engagements settings tab for email provider connector plugins\n\t *\n\t * @since 3.40.0\n\t */\n\twindow.llms.emailConnectors = {\n\n\t\t/**\n\t\t * Register a client\n\t\t *\n\t\t * Builds and submits a form used to direct the user to the connector's oAuth\n\t\t * authorization endpoint.\n\t\t *\n\t\t * @since 3.40.0\n\t\t *\n\t\t * @param {String} url Redirect URL.\n\t\t * @param {Object} fields Hash of fields where the key is the field name and the value if the field value.\n\t\t * @return {Void}\n\t\t */\n\t\tregisterClient: function( url, fields ) {\n\n\t\t\tvar form = document.createElement( 'form' );\n\t\t\tform.setAttribute( 'method', 'POST' );\n\t\t\tform.setAttribute( 'action', url );\n\n\t\t\tfunction appendInput( name, value ) {\n\t\t\t\tvar input = document.createElement( 'input' );\n\t\t\t\tinput.setAttribute( 'type', 'hidden' );\n\t\t\t\tinput.setAttribute( 'name', name );\n\t\t\t\tinput.setAttribute( 'value', value );\n\t\t\t\tform.appendChild( input );\n\t\t\t}\n\n\t\t\t$.each( fields, function( key, val ) {\n\t\t\t\tappendInput( key, val );\n\t\t\t} );\n\n\t\t\tdocument.body.appendChild( form );\n\t\t\tform.submit();\n\n\t\t},\n\n\t\t/**\n\t\t * Performs an AJAX request to perform remote installation of the connector plugin\n\t\t *\n\t\t * The callback will more than likely use `registerClient()` on success.\n\t\t *\n\t\t * @since 3.40.0\n\t\t *\n\t\t * @param {Object} $btn jQuery object for the connector button.\n\t\t * @param {Object} data Hash of data used for the ajax request.\n\t\t * @param {Function} callback Success callback function.\n\t\t * @return {Void}\n\t\t */\n\t\tremoteInstall: function( $btn, data, callback ) {\n\n\t\t\t$btn.parent().find( '.llms-error' ).remove();\n\t\t\t$.post( ajaxurl, data, callback ).fail( function( jqxhr ) {\n\t\t\t\tLLMS.Spinner.stop( $btn );\n\t\t\t\tvar msg = jqxhr.responseJSON && jqxhr.responseJSON.message ? jqxhr.responseJSON.message : jqxhr.responseText;\n\t\t\t\tif ( msg ) {\n\t\t\t\t\t$( '

    ' + LLMS.l10n.replace( 'Error: %s', { '%s': msg } ) + '

    ' ).insertAfter( $btn );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t}\n\n\t};\n\n} )( jQuery );\n"],"names":["$","window","llms","widgets","this","$widgets","$info_toggles","init","bind","on","evt","closest","toggleClass","type","fn","llmsPostsSelect2","options","self","defaults","multiple","placeholder","undefined","LLMS","l10n","translate","post_type","attr","post_statuses","instructor_id","allow_clear","width","each","setting","extend","llmsSelect2","allowClear","ajax","dataType","delay","method","url","ajaxurl","data","params","action","page","term","_ajax_nonce","ajax_nonce","processResults","results","map_data","items","Array","isArray","map","item","text","name","id","label","children","pagination","more","cache","llmsStudentsSelect2","enrolled_in","not_enrolled_in","roles","wpApiSettings","root","_wpnonce","nonce","context","per_page","search","search_columns","totalPages","_request","getResponseHeader","email","emailConnectors","registerClient","fields","form","document","createElement","setAttribute","key","val","input","value","appendChild","body","submit","remoteInstall","$btn","callback","parent","find","remove","post","fail","jqxhr","Spinner","stop","msg","responseJSON","message","responseText","replace","%s","insertAfter","jQuery"],"mappings":"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","sourceRoot":"../../js"} \ No newline at end of file +{"version":3,"file":"../../js/llms-admin.min.js","sources":["llms-admin.js"],"sourcesContent":["/**\n * LifterLMS Admin Panel Javascript\n *\n * @since Unknown\n * @version 7.3.0\n *\n * @param obj $ Traditional jQuery reference.\n * @return void\n */\n;( function( $ ) {\n\n\twindow.llms = window.llms || {};\n\n\twindow.llms.widgets = function() {\n\n\t\tthis.$widgets = $( '.llms-widget' );\n\t\tthis.$info_toggles = $( '.llms-widget-info-toggle' );\n\n\t\tthis.init = function() {\n\t\t\tthis.bind();\n\t\t};\n\n\t\tthis.bind = function() {\n\n\t\t\tthis.$info_toggles.on( 'mouseenter mouseleave', function( evt ) {\n\t\t\t\t$(this).closest( '.llms-widget' )\n\t\t\t\t\t.toggleClass( 'info-showing', 'mouseenter' === evt.type );\n\t\t\t} );\n\n\t\t};\n\n\t\t// Go.\n\t\tthis.init();\n\n\t\treturn this;\n\n\t};\n\n\tvar llms_widgets = new window.llms.widgets();\n\n\t/**\n\t * Simple jQuery plugin to transform select elements into Select2-powered elements to query for Courses/Memberships via AJAX.\n\t *\n\t * @since 3.19.4\n\t * @since 3.32.0 Added ability to fetch posts based on their post status.\n\t * @since 3.37.2 Added ability to fetch posts (llms posts) filtered by their instructor id.\n\t * @since 4.4.0 Update ajax nonce source.\n\t *\n\t * @param obj options Options passed to Select2.\n\t * Each default option will pulled from the elements data-attributes.\n\t * @return void\n\t */\n\t$.fn.llmsPostsSelect2 = function( options ) {\n\n\t\tvar self = this,\n\t\t\toptions = options || {},\n\t\t\tdefaults = {\n\t\t\t\tmultiple: false,\n\t\t\t\tplaceholder: undefined !== LLMS.l10n ? LLMS.l10n.translate( 'Select a Course/Membership' ) : 'Select a Course/Membership',\n\t\t\t\tpost_type: self.attr( 'data-post-type' ) || 'post',\n\t\t\t\tpost_statuses: self.attr( 'data-post-statuses' ) || 'publish',\n\t\t\t\tinstructor_id: null,\n\t\t\t\tallow_clear: self.attr( 'data-post-type' ) || false,\n\t\t\t\twidth: null,\n\t\t\t};\n\n\t\t$.each( defaults, function( setting ) {\n\t\t\tif ( self.attr( 'data-' + setting ) ) {\n\t\t\t\toptions[ setting ] = self.attr( 'data-' + setting );\n\t\t\t}\n\t\t} );\n\n\t\tif ( 'multiple' === self.attr( 'multiple' ) ) {\n\t\t\toptions.multiple = true;\n\t\t}\n\n\t\toptions = $.extend( defaults, options );\n\n\t\tthis.llmsSelect2( {\n\t\t\tallowClear: options.allow_clear,\n\t\t\tajax: {\n\t\t\t\tdataType: 'JSON',\n\t\t\t\tdelay: 250,\n\t\t\t\tmethod: 'POST',\n\t\t\t\turl: window.ajaxurl,\n\t\t\t\tdata: function( params ) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\taction: 'select2_query_posts',\n\t\t\t\t\t\tpage: ( params.page ) ? params.page - 1 : 0, // 0 index the pages to make it simpler for the database query\n\t\t\t\t\t\tpost_type: options.post_type,\n\t\t\t\t\t\tinstructor_id : options.instructor_id,\n\t\t\t\t\t\tpost_statuses: options.post_statuses,\n\t\t\t\t\t\tterm: params.term,\n\t\t\t\t\t\t_ajax_nonce: window.llms.ajax_nonce,\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t\tprocessResults: function( data, params ) {\n\n\t\t\t\t\t// recursive function for creating\n\t\t\t\t\tfunction map_data( items ) {\n\n\t\t\t\t\t\t// this is a flat array of results\n\t\t\t\t\t\t// used when only one post type is selected\n\t\t\t\t\t\t// and to format children when using optgroups with multiple post types\n\t\t\t\t\t\tif ( Array.isArray( items ) ) {\n\t\t\t\t\t\t\treturn $.map( items, function( item ) {\n\t\t\t\t\t\t\t\treturn format_item( item );\n\t\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t\t// this sets up the top level optgroups when using multiple post types\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn $.map( items, function( item ) {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\ttext: item.label,\n\t\t\t\t\t\t\t\t\tchildren: map_data( item.items ),\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// format a single result (option)\n\t\t\t\t\tfunction format_item( item ) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\ttext: item.name,\n\t\t\t\t\t\t\tid: item.id,\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\tresults: map_data( data.items ),\n\t\t\t\t\t\tpagination: {\n\t\t\t\t\t\t\tmore: data.more\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t},\n\t\t\t},\n\t\t\tcache: true,\n\t\t\tplaceholder: options.placeholder,\n\t\t\tmultiple: options.multiple,\n\t\t\twidth: options.width,\n\t\t} );\n\n\t};\n\n\t// automatically setup any select with the `llms-posts-select2` class\n\t$( 'select.llms-posts-select2' ).llmsPostsSelect2();\n\n\t/**\n\t * Simple jQuery plugin to transform select elements into Select2-powered elements to query for Students via AJAX\n\t *\n\t * @since Unknown\n\t * @since 3.17.5 Unknown.\n\t * @since 4.4.0 Update ajax nonce source.\n\t * @since 6.2.0 Use the LifterLMS REST API \"list students\" endpoint\n\t * instead of the `LLMS_AJAX_Handler::query_students()` PHP function.\n\t * @since 6.3.0 Fixed student's REST API URL.\n\t * @since 7.3.0 Early bail when the element doesn't exist.\n\t *\n\t * @param {Object} options Options passed to Select2. Each default option will be pulled from the elements data-attributes.\n\t * @return {jQuery}\n\t */\n\t$.fn.llmsStudentsSelect2 = function( options ) {\n\n\t\tif ( ! this.length ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tvar self = this,\n\t\t\toptions = options || {},\n\t\t\tdefaults = {\n\t\t\t\tallow_clear: false,\n\t\t\t\tenrolled_in: '',\n\t\t\t\tmultiple: false,\n\t\t\t\tnot_enrolled_in: '',\n\t\t\t\tplaceholder: undefined !== LLMS.l10n ? LLMS.l10n.translate( 'Select a student' ) : 'Select a student',\n\t\t\t\troles: '',\n\t\t\t\twidth: '100%',\n\t\t\t};\n\n\t\t$.each( defaults, function( setting ) {\n\t\t\tif ( self.attr( 'data-' + setting ) ) {\n\t\t\t\toptions[ setting ] = self.attr( 'data-' + setting );\n\t\t\t}\n\t\t} );\n\n\t\toptions = $.extend( defaults, options );\n\n\t\tthis.llmsSelect2({\n\t\t\tallowClear: options.allow_clear,\n\t\t\tajax: {\n\t\t\t\tdataType: 'JSON',\n\t\t\t\tdelay: 250,\n\t\t\t\tmethod: 'GET',\n\t\t\t\turl: window.wpApiSettings.root + 'llms/v1/students',\n\t\t\t\tdata: function( params ) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t_wpnonce: window.wpApiSettings.nonce,\n\t\t\t\t\t\tcontext: 'edit',\n\t\t\t\t\t\tpage: params.page || 1,\n\t\t\t\t\t\tper_page: 10,\n\t\t\t\t\t\tnot_enrolled_in: params.not_enrolled_in || options.not_enrolled_in,\n\t\t\t\t\t\tenrolled_in: params.enrolled_in || options.enrolled_in,\n\t\t\t\t\t\troles: params.roles || options.roles,\n\t\t\t\t\t\tsearch: params.term,\n\t\t\t\t\t\tsearch_columns: 'email,name,username',\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t\tprocessResults: function( data, params ) {\n\t\t\t\t\tvar page = params.page || 1;\n\t\t\t\t\tvar totalPages = this._request.getResponseHeader( 'X-WP-TotalPages' );\n\t\t\t\t\treturn {\n\t\t\t\t\t\tresults: $.map( data, function( item ) {\n\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\ttext: item.name + ' <' + item.email + '>',\n\t\t\t\t\t\t\t\tid: item.id,\n\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t} ),\n\t\t\t\t\t\tpagination: {\n\t\t\t\t\t\t\tmore: page < totalPages\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t},\n\t\t\tcache: true,\n\t\t\tplaceholder: options.placeholder,\n\t\t\tmultiple: options.multiple,\n\t\t\twidth: options.width,\n\t\t});\n\n\t\treturn this;\n\n\t};\n\n\t/**\n\t * Scripts for use on the engagements settings tab for email provider connector plugins\n\t *\n\t * @since 3.40.0\n\t */\n\twindow.llms.emailConnectors = {\n\n\t\t/**\n\t\t * Register a client\n\t\t *\n\t\t * Builds and submits a form used to direct the user to the connector's oAuth\n\t\t * authorization endpoint.\n\t\t *\n\t\t * @since 3.40.0\n\t\t *\n\t\t * @param {String} url Redirect URL.\n\t\t * @param {Object} fields Hash of fields where the key is the field name and the value if the field value.\n\t\t * @return {Void}\n\t\t */\n\t\tregisterClient: function( url, fields ) {\n\n\t\t\tvar form = document.createElement( 'form' );\n\t\t\tform.setAttribute( 'method', 'POST' );\n\t\t\tform.setAttribute( 'action', url );\n\n\t\t\tfunction appendInput( name, value ) {\n\t\t\t\tvar input = document.createElement( 'input' );\n\t\t\t\tinput.setAttribute( 'type', 'hidden' );\n\t\t\t\tinput.setAttribute( 'name', name );\n\t\t\t\tinput.setAttribute( 'value', value );\n\t\t\t\tform.appendChild( input );\n\t\t\t}\n\n\t\t\t$.each( fields, function( key, val ) {\n\t\t\t\tappendInput( key, val );\n\t\t\t} );\n\n\t\t\tdocument.body.appendChild( form );\n\t\t\tform.submit();\n\n\t\t},\n\n\t\t/**\n\t\t * Performs an AJAX request to perform remote installation of the connector plugin\n\t\t *\n\t\t * The callback will more than likely use `registerClient()` on success.\n\t\t *\n\t\t * @since 3.40.0\n\t\t *\n\t\t * @param {Object} $btn jQuery object for the connector button.\n\t\t * @param {Object} data Hash of data used for the ajax request.\n\t\t * @param {Function} callback Success callback function.\n\t\t * @return {Void}\n\t\t */\n\t\tremoteInstall: function( $btn, data, callback ) {\n\n\t\t\t$btn.parent().find( '.llms-error' ).remove();\n\t\t\t$.post( ajaxurl, data, callback ).fail( function( jqxhr ) {\n\t\t\t\tLLMS.Spinner.stop( $btn );\n\t\t\t\tvar msg = jqxhr.responseJSON && jqxhr.responseJSON.message ? jqxhr.responseJSON.message : jqxhr.responseText;\n\t\t\t\tif ( msg ) {\n\t\t\t\t\t$( '

    ' + LLMS.l10n.replace( 'Error: %s', { '%s': msg } ) + '

    ' ).insertAfter( $btn );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t}\n\n\t};\n\n} )( jQuery );\n"],"names":["$","window","llms","widgets","this","$widgets","$info_toggles","init","bind","on","evt","closest","toggleClass","type","fn","llmsPostsSelect2","options","self","defaults","multiple","placeholder","undefined","LLMS","l10n","translate","post_type","attr","post_statuses","instructor_id","allow_clear","width","each","setting","extend","llmsSelect2","allowClear","ajax","dataType","delay","method","url","ajaxurl","data","params","action","page","term","_ajax_nonce","ajax_nonce","processResults","results","map_data","items","Array","isArray","map","item","text","name","id","label","children","pagination","more","cache","llmsStudentsSelect2","length","enrolled_in","not_enrolled_in","roles","wpApiSettings","root","_wpnonce","nonce","context","per_page","search","search_columns","totalPages","_request","getResponseHeader","email","emailConnectors","registerClient","fields","form","document","createElement","setAttribute","key","val","input","value","appendChild","body","submit","remoteInstall","$btn","callback","parent","find","remove","post","fail","jqxhr","Spinner","stop","msg","responseJSON","message","responseText","replace","%s","insertAfter","jQuery"],"mappings":"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","sourceRoot":"../../js"} \ No newline at end of file diff --git a/assets/maps/js/llms-analytics.min.js.map b/assets/maps/js/llms-analytics.min.js.map index 527e83dbc0..d33b907a20 100644 --- a/assets/maps/js/llms-analytics.min.js.map +++ b/assets/maps/js/llms-analytics.min.js.map @@ -1 +1 @@ -{"version":3,"file":"../../js/llms-analytics.min.js","sources":["llms-analytics.js"],"sourcesContent":[";/**\n * LifterLMS Admin Reporting Widgets & Charts\n *\n * @since 3.0.0\n * @since 3.17.2 Unknown.\n * @since 3.33.1 Fix issue that produced series options not aligned with the chart data.\n * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`.\n * @since 4.3.3 Legends will automatically display on top of the chart.\n * @since 4.5.1 Show sales reporting currency symbol based on LifterLMS site options.\n * @version 7.2.0\n *\n */( function( $, undefined ) {\n\n\twindow.llms = window.llms || {};\n\n\t/**\n\t * LifterLMS Admin Analytics\n\t *\n\t * @since 3.0.0\n\t * @since 3.5.0 Unknown\n\t * @since 4.5.1 Added `opts` parameter.\n\t *\n\t * @param {Object} options Options object.\n\t * @return {Object} Class instance.\n\t */\n\tvar Analytics = function( opts ) {\n\n\t\tthis.charts_loaded = false;\n\t\tthis.data = {};\n\t\tthis.query = $.parseJSON( $( '#llms-analytics-json' ).text() );\n\t\tthis.timeout = 8000;\n\t\tthis.options = opts;\n\n\t\tthis.$widgets = $( '.llms-widget[data-method]' );\n\n\t\t/**\n\t\t * Initializer\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.init = function() {\n\n\t\t\tgoogle.charts.load( 'current', {\n\t\t\t\tpackages: [\n\t\t\t\t\t'corechart'\n\t\t\t\t]\n\t\t\t} );\n\t\t\tgoogle.charts.setOnLoadCallback( this.charts_ready );\n\n\t\t\tthis.bind();\n\t\t\tthis.load_widgets();\n\n\t\t};\n\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`.\n\t\t * @since 7.2.0 Added check for datepicker before initializing.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.bind = function() {\n\n\t\t\tif ( $( '.llms-datepicker' ).length && $.fn.datepicker ) {\n\t\t\t\t$( '.llms-datepicker' ).datepicker( {\n\t\t\t\t\tdateFormat: 'yy-mm-dd',\n\t\t\t\t\tmaxDate: 0,\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t$( '#llms-students-ids-filter' ).llmsStudentsSelect2( {\n\t\t\t\tmultiple: true,\n\t\t\t\tplaceholder: LLMS.l10n.translate( 'Filter by Student(s)' ),\n\t\t\t\tallow_clear: true,\n\t\t\t} );\n\n\t\t\t$( 'a[href=\"#llms-toggle-filters\"]' ).on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$( '.llms-analytics-filters' ).slideToggle( 100 );\n\t\t\t} );\n\n\t\t\t$( '#llms-custom-date-submit' ).on( 'click', function() {\n\t\t\t\t$( 'input[name=\"range\"]' ).val( 'custom' );\n\t\t\t} );\n\n\t\t\t$( '#llms-date-quick-filters a.llms-nav-link[data-range]' ).on( 'click', function( e ) {\n\n\t\t\t\te.preventDefault();\n\t\t\t\t$( 'input[name=\"range\"]' ).val( $( this ).attr( 'data-range' ) );\n\n\t\t\t\t$( 'form.llms-reporting-nav' ).submit();\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Called by Google Charts when the library is loaded and ready\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.charts_ready = function() {\n\n\t\t\twindow.llms.analytics.charts_loaded = true;\n\t\t\twindow.llms.analytics.draw_chart();\n\n\t\t};\n\n\t\t/**\n\t\t * Render the chart\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.17.6 Unknown\n\t\t * @since 4.3.3 Force the legend to appear on top of the chart.\n\t\t * @since 4.5.1 Display sales numbers according to the site's currency settings instead of the browser's locale.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tthis.draw_chart = function() {\n\n\t\t\tif ( ! this.charts_loaded || ! this.is_loading_finished() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar el = document.getElementById( 'llms-charts-wrapper' );\n\n\t\t\tif ( ! el ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar self = this,\n\t\t\t\tchart = new google.visualization.ComboChart( el ),\n\t\t\t\tdata = self.get_chart_data(),\n\t\t\t\toptions = {\n\t\t\t\t\tlegend: 'top',\n\t\t\t\t\tchartArea: {\n\t\t\t\t\t\theight: '75%',\n\t\t\t\t\t\twidth: '85%',\n\t\t\t\t\t},\n\t\t\t\t\tcolors: ['#606C38','#E85D75','#EF8354','#C64191','#731963'],\n\t\t\t\t\theight: 560,\n\t\t\t\t\tlineWidth: 4,\n\t\t\t\t\tseriesType: 'bars',\n\t\t\t\t\tseries: self.get_chart_series_options(),\n\t\t\t\t\tvAxes: {\n\t\t\t\t\t\t0: {\n\t\t\t\t\t\t\tformat: this.options.currency_format || 'currency',\n\t\t\t\t\t\t},\n\t\t\t\t\t\t1: {\n\t\t\t\t\t\t\tformat: '',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t};\n\n\t\t\tif ( data.length ) {\n\n\t\t\t\tdata = google.visualization.arrayToDataTable( data );\n\t\t\t\tdata.sort( [{column: 0}] );\n\t\t\t\tchart.draw( data, options );\n\n\t\t\t}\n\n\t\t};\n\n\t\t/**\n\t\t * Check if a widget is still loading\n\t\t *\n\t\t * @return bool\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.is_loading_finished = function() {\n\t\t\tif ( $( '.llms-widget.is-loading' ).length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t};\n\n\t\t/**\n\t\t * Start loading all widgets on the current screen\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.load_widgets = function() {\n\n\t\t\tvar self = this;\n\n\t\t\tthis.$widgets.each( function() {\n\n\t\t\t\tself.load_widget( $( this ) );\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Load a specific widget\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 7.2.0 Change h1 tag to .llms-widget-content.\n\t\t *\n\t\t * @param obj $widget The jQuery selector of the widget element.\n\t\t * @return void\n\t\t */\n\t\tthis.load_widget = function( $widget ) {\n\n\t\t\tvar self = this,\n\t\t\t\tmethod = $widget.attr( 'data-method' ),\n\t\t\t\t$content = $widget.find( '.llms-widget-content' ),\n\t\t\t\t$retry = $widget.find( '.llms-reload-widget' ),\n\t\t\t\tcontent_text = LLMS.l10n.translate( 'Error' ),\n\t\t\t\tstatus;\n\n\t\t\t$widget.addClass( 'is-loading' );\n\n\t\t\t$.ajax( {\n\n\t\t\t\tdata: {\n\t\t\t\t\taction: 'llms_widget_' + method,\n\t\t\t\t\tdates: self.query.dates,\n\t\t\t\t\tcourses: self.query.current_courses,\n\t\t\t\t\tmemberships: self.query.current_memberships,\n\t\t\t\t\tstudents: self.query.current_students,\n\t\t\t\t},\n\t\t\t\tmethod: 'POST',\n\t\t\t\ttimeout: self.timeout,\n\t\t\t\turl: window.ajaxurl,\n\t\t\t\tsuccess: function( r ) {\n\n\t\t\t\t\tstatus = 'success';\n\n\t\t\t\t\tif ( 'undefined' !== typeof r.response ) {\n\n\t\t\t\t\t\tcontent_text = r.response;\n\n\t\t\t\t\t\tself.data[method] = {\n\t\t\t\t\t\t\tchart_data: r.chart_data,\n\t\t\t\t\t\t\tresponse: r.response,\n\t\t\t\t\t\t\tresults: r.results,\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\t$retry.remove();\n\n\t\t\t\t\t}\n\n\t\t\t\t},\n\t\t\t\terror: function( r ) {\n\n\t\t\t\t\tstatus = 'error';\n\n\t\t\t\t},\n\t\t\t\tcomplete: function( r ) {\n\n\t\t\t\t\tif ( 'error' === status ) {\n\n\t\t\t\t\t\tif ( 'timeout' === r.statusText ) {\n\n\t\t\t\t\t\t\tcontent_text = LLMS.l10n.translate( 'Request timed out' );\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\tcontent_text = LLMS.l10n.translate( 'Error' );\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif ( ! $retry.length ) {\n\n\t\t\t\t\t\t\t$retry = $( '' + LLMS.l10n.translate( 'Retry' ) + '' );\n\t\t\t\t\t\t\t$retry.on( 'click', function( e ) {\n\n\t\t\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\t\t\tself.load_widget( $widget );\n\n\t\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t\t$widget.append( $retry );\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t\t$widget.removeClass( 'is-loading' );\n\t\t\t\t\t$content.html( content_text );\n\n\t\t\t\t\tself.widget_finished( $widget );\n\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Get the time in seconds between the queried dates\n\t\t *\n\t\t * @return int\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_date_diff = function() {\n\n\t\t\tvar end = new Date( this.query.dates.end ),\n\t\t\t\tstart = new Date( this.query.dates.start );\n\n\t\t\treturn Math.abs( end.getTime() - start.getTime() );\n\n\t\t};\n\n\t\t/**\n\t\t * Builds an object of data that can be used to, ultimately, draw the screen's chart\n\t\t *\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.1.6\n\t\t */\n\t\tthis.get_chart_data_object = function() {\n\n\t\t\tvar self = this,\n\t\t\t\tmax_for_days = ( ( 1000 * 3600 * 24 ) * 30 ) * 4, // 4 months in seconds\n\t\t\t\tdiff = this.get_date_diff(),\n\t\t\t\tdata = {},\n\t\t\t\tres, i, d, date;\n\n\t\t\tfor ( var method in self.data ) {\n\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( 'object' !== typeof self.data[ method ].chart_data || 'object' !== typeof self.data[ method ].results ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tres = self.data[ method ].results;\n\n\t\t\t\tif ( res ) {\n\n\t\t\t\t\tfor ( i = 0; i < res.length; i++ ) {\n\n\t\t\t\t\t\td = this.init_date( res[i].date );\n\n\t\t\t\t\t\t// group by days\n\t\t\t\t\t\tif ( diff <= max_for_days ) {\n\t\t\t\t\t\t\tdate = new Date( d.getFullYear(), d.getMonth(), d.getDate() );\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// group by months\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tdate = new Date( d.getFullYear(), d.getMonth(), 1 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif ( ! data[ date ] ) {\n\t\t\t\t\t\t\tdata[ date ] = this.get_empty_data_object( date )\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tswitch ( self.data[ method ].chart_data.type ) {\n\n\t\t\t\t\t\t\tcase 'amount':\n\t\t\t\t\t\t\t\tdata[ date ][ method ] = data[ date ][ method ] + ( res[i][ self.data[ method ].chart_data.key ] * 1 );\n\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase 'count':\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\tdata[ date ][ method ]++;\n\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t};\n\n\t\t/**\n\t\t * Get the data google charts needs to initiate the current chart\n\t\t *\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_chart_data = function() {\n\n\t\t\tvar self = this,\n\t\t\t\tobj = self.get_chart_data_object(),\n\t\t\t\tdata = self.get_chart_headers();\n\n\t\t\tfor ( var date in obj ) {\n\n\t\t\t\tif ( ! obj.hasOwnProperty( date ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tvar row = [ obj[ date ]._date ];\n\n\t\t\t\tfor ( var item in obj[ date ] ) {\n\t\t\t\t\tif ( ! obj[ date ].hasOwnProperty( item ) ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\t// skip meta items\n\t\t\t\t\tif ( 0 === item.indexOf( '_' ) ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\trow.push( obj[ date ][ item ] );\n\t\t\t\t}\n\n\t\t\t\tdata.push( row );\n\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t};\n\n\t\t/**\n\t\t * Get a stub of the data object used by this.get_data_object\n\t\t *\n\t\t * @param string date date to instantiate the object with\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_empty_data_object = function( date ) {\n\n\t\t\tvar self = this,\n\t\t\t\tobj = {\n\t\t\t\t\t_date: date,\n\t\t\t};\n\n\t\t\tfor ( var method in self.data ) {\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( self.data[ method ].chart_data ) {\n\t\t\t\t\tobj[ method ] = 0;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn obj;\n\n\t\t};\n\n\t\t/**\n\t\t * Builds an array of chart header data\n\t\t *\n\t\t * @return array\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_chart_headers = function() {\n\n\t\t\tvar self = this,\n\t\t\t\th = [];\n\n\t\t\t// date headers go first\n\t\t\th.push( {\n\t\t\t\tlabel: LLMS.l10n.translate( 'Date' ),\n\t\t\t\tid: 'date',\n\t\t\t\ttype: 'date',\n\t\t\t} );\n\n\t\t\tfor ( var method in self.data ) {\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( self.data[ method ].chart_data ) {\n\t\t\t\t\th.push( self.data[ method ].chart_data.header );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn [ h ];\n\n\t\t};\n\n\t\t/**\n\t\t * Get a object of series options needed to draw the chart.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since Fix issue that produced series options not aligned with the chart data.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.get_chart_series_options = function() {\n\n\t\t\tvar self = this,\n\t\t\t\toptions = {}\n\t\t\t\ti = 0;\n\n\t\t\tfor ( var method in self.data ) {\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( self.data[ method ].chart_data ) {\n\n\t\t\t\t\tvar type = self.data[ method ].chart_data.type;\n\n\t\t\t\t\toptions[ i ] = {\n\t\t\t\t\t\ttype: ( 'count' === type ) ? 'bars' : 'line',\n\t\t\t\t\t\ttargetAxisIndex: ( 'count' === type ) ? 1 : 0,\n\t\t\t\t\t};\n\n\t\t\t\t\ti++;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn options;\n\n\t\t};\n\n\t\t/**\n\t\t * Instantiate a Date instance via a date string\n\t\t *\n\t\t * @param string string date string, expected format should be from php date( 'Y-m-d H:i:s' )\n\t\t * @return obj\n\t\t * @since 3.1.4\n\t\t * @version 3.1.5\n\t\t */\n\t\tthis.init_date = function( string ) {\n\n\t\t\tvar parts, date, time;\n\n\t\t\tparts = string.split( ' ' );\n\n\t\t\tdate = parts[0].split( '-' );\n\t\t\ttime = parts[1].split( ':' );\n\n\t\t\treturn new Date( date[0], date[1] - 1, date[2], time[0], time[1], time[2] );\n\n\t\t};\n\n\t\t/**\n\t\t * Called when a widget is finished loading\n\t\t * Updates the current chart with the new data from the widget\n\t\t *\n\t\t * @param obj $widget jQuery selector of the widget element\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.widget_finished = function( $widget ) {\n\n\t\t\tif ( this.is_loading_finished() ) {\n\t\t\t\tthis.draw_chart();\n\t\t\t}\n\n\t\t};\n\n\t\t// go\n\t\tthis.init();\n\n\t\t// return\n\t\treturn this;\n\n\t};\n\n\twindow.llms.analytics = new Analytics( window.llms.analytics || {} );\n\n} )( jQuery );\n"],"names":["$","window","llms","analytics","opts","this","charts_loaded","data","query","parseJSON","text","timeout","options","$widgets","init","google","charts","load","packages","setOnLoadCallback","charts_ready","bind","load_widgets","length","fn","datepicker","dateFormat","maxDate","llmsStudentsSelect2","multiple","placeholder","LLMS","l10n","translate","allow_clear","on","e","preventDefault","slideToggle","val","attr","submit","draw_chart","chart","is_loading_finished","el","document","getElementById","visualization","ComboChart","get_chart_data","legend","chartArea","height","width","colors","lineWidth","seriesType","series","get_chart_series_options","vAxes","0","format","currency_format","1","arrayToDataTable","sort","column","draw","self","each","load_widget","$widget","status","method","$content","find","$retry","content_text","addClass","ajax","action","dates","courses","current_courses","memberships","current_memberships","students","current_students","url","ajaxurl","success","r","response","chart_data","results","remove","error","complete","statusText","append","removeClass","html","widget_finished","get_date_diff","end","Date","start","Math","abs","getTime","get_chart_data_object","res","i","date","diff","hasOwnProperty","d","init_date","getFullYear","getMonth","getDate","get_empty_data_object","type","key","obj","get_chart_headers","item","row","_date","indexOf","push","h","label","id","header","targetAxisIndex","string","parts","split","time","jQuery"],"mappings":"AAWG,CAAA,SAAYA,GAEdC,OAAOC,KAAOD,OAAOC,MAAQ,GAkjB7BD,OAAOC,KAAKC,UAAY,IAtiBR,SAAUC,GAkiBzB,OAhiBAC,KAAKC,cAAgB,CAAA,EACrBD,KAAKE,KAAgB,GACrBF,KAAKG,MAAgBR,EAAES,UAAWT,EAAG,sBAAuB,EAAEU,KAAK,CAAE,EACrEL,KAAKM,QAAgB,IACrBN,KAAKO,QAAgBR,EAErBC,KAAKQ,SAAWb,EAAG,2BAA4B,EAS/CK,KAAKS,KAAO,WAEXC,OAAOC,OAAOC,KAAM,UAAW,CAC9BC,SAAU,CACT,YAEF,CAAE,EACFH,OAAOC,OAAOG,kBAAmBd,KAAKe,YAAa,EAEnDf,KAAKgB,KAAK,EACVhB,KAAKiB,aAAa,CAEnB,EAWAjB,KAAKgB,KAAO,WAENrB,EAAG,kBAAmB,EAAEuB,QAAUvB,EAAEwB,GAAGC,YAC3CzB,EAAG,kBAAmB,EAAEyB,WAAY,CACnCC,WAAY,WACZC,QAAS,CACV,CAAE,EAGH3B,EAAG,2BAA4B,EAAE4B,oBAAqB,CACrDC,SAAU,CAAA,EACVC,YAAaC,KAAKC,KAAKC,UAAW,sBAAuB,EACzDC,YAAa,CAAA,CACd,CAAE,EAEFlC,EAAG,gCAAiC,EAAEmC,GAAI,QAAS,SAAUC,GAC5DA,EAAEC,eAAe,EACjBrC,EAAG,yBAA0B,EAAEsC,YAAa,GAAI,CACjD,CAAE,EAEFtC,EAAG,0BAA2B,EAAEmC,GAAI,QAAS,WAC5CnC,EAAG,qBAAsB,EAAEuC,IAAK,QAAS,CAC1C,CAAE,EAEFvC,EAAG,sDAAuD,EAAEmC,GAAI,QAAS,SAAUC,GAElFA,EAAEC,eAAe,EACjBrC,EAAG,qBAAsB,EAAEuC,IAAKvC,EAAGK,IAAK,EAAEmC,KAAM,YAAa,CAAE,EAE/DxC,EAAG,yBAA0B,EAAEyC,OAAO,CAEvC,CAAE,CAEH,EASApC,KAAKe,aAAe,WAEnBnB,OAAOC,KAAKC,UAAUG,cAAgB,CAAA,EACtCL,OAAOC,KAAKC,UAAUuC,WAAW,CAElC,EAYArC,KAAKqC,WAAa,WAEjB,IAWCC,EACApC,EACAK,EAbMP,KAAKC,eAAmBD,KAAKuC,oBAAoB,KAIpDC,EAAKC,SAASC,eAAgB,qBAAsB,KAOvDJ,EAAU,IAAI5B,OAAOiC,cAAcC,WAAYJ,CAAG,EAClDtC,EAFaF,KAEE6C,eAAe,EAC9BtC,EAAU,CACTuC,OAAQ,MACRC,UAAW,CACVC,OAAQ,MACRC,MAAO,KACR,EACAC,OAAQ,CAAC,UAAU,UAAU,UAAU,UAAU,WACjDF,OAAQ,IACRG,UAAW,EACXC,WAAY,OACZC,OAbYrD,KAaCsD,yBAAyB,EACtCC,MAAO,CACNC,EAAG,CACFC,OAAQzD,KAAKO,QAAQmD,iBAAmB,UACzC,EACAC,EAAG,CACFF,OAAQ,EACT,CACD,CACF,EAEKvD,EAAKgB,UAEThB,EAAOQ,OAAOiC,cAAciB,iBAAkB1D,CAAK,GAC9C2D,KAAM,CAAC,CAACC,OAAQ,CAAC,EAAG,EACzBxB,EAAMyB,KAAM7D,EAAMK,CAAQ,IAI5B,EASAP,KAAKuC,oBAAsB,WAC1B,MAAK5C,CAAAA,EAAG,yBAA0B,EAAEuB,MAIrC,EASAlB,KAAKiB,aAAe,WAEnB,IAAI+C,EAAOhE,KAEXA,KAAKQ,SAASyD,KAAM,WAEnBD,EAAKE,YAAavE,EAAGK,IAAK,CAAE,CAE7B,CAAE,CAEH,EAWAA,KAAKkE,YAAc,SAAUC,GAE5B,IAKCC,EALGJ,EAAehE,KAClBqE,EAAeF,EAAQhC,KAAM,aAAc,EAC3CmC,EAAeH,EAAQI,KAAM,sBAAuB,EACpDC,EAAeL,EAAQI,KAAM,qBAAsB,EACnDE,EAAe/C,KAAKC,KAAKC,UAAW,OAAQ,EAG7CuC,EAAQO,SAAU,YAAa,EAE/B/E,EAAEgF,KAAM,CAEPzE,KAAM,CACL0E,OAAQ,eAAiBP,EACzBQ,MAAOb,EAAK7D,MAAM0E,MAClBC,QAASd,EAAK7D,MAAM4E,gBACpBC,YAAahB,EAAK7D,MAAM8E,oBACxBC,SAAUlB,EAAK7D,MAAMgF,gBACtB,EACAd,OAAQ,OACR/D,QAAS0D,EAAK1D,QACd8E,IAAKxF,OAAOyF,QACZC,QAAS,SAAUC,GAElBnB,EAAS,UAEJ,KAAA,IAAuBmB,EAAEC,WAE7Bf,EAAec,EAAEC,SAEjBxB,EAAK9D,KAAKmE,GAAU,CACnBoB,WAAYF,EAAEE,WACdD,SAAUD,EAAEC,SACZE,QAASH,EAAEG,OACZ,EAEAlB,EAAOmB,OAAO,EAIhB,EACAC,MAAO,SAAUL,GAEhBnB,EAAS,OAEV,EACAyB,SAAU,SAAUN,GAEd,UAAYnB,IAIfK,EAFI,YAAcc,EAAEO,WAELpE,KAAKC,KAAKC,UAAW,mBAAoB,EAIzCF,KAAKC,KAAKC,UAAW,OAAQ,EAItC4C,EAAOtD,UAEbsD,EAAS7E,EAAG,0CAA4C+B,KAAKC,KAAKC,UAAW,OAAQ,EAAI,MAAO,GACzFE,GAAI,QAAS,SAAUC,GAE7BA,EAAEC,eAAe,EACjBgC,EAAKE,YAAaC,CAAQ,CAE3B,CAAE,EAEFA,EAAQ4B,OAAQvB,CAAO,IAMzBL,EAAQ6B,YAAa,YAAa,EAClC1B,EAAS2B,KAAMxB,CAAa,EAE5BT,EAAKkC,gBAAiB/B,CAAQ,CAE/B,CAED,CAAE,CAEH,EASAnE,KAAKmG,cAAgB,WAEpB,IAAIC,EAAQ,IAAIC,KAAMrG,KAAKG,MAAM0E,MAAMuB,GAAI,EAC1CE,EAAQ,IAAID,KAAMrG,KAAKG,MAAM0E,MAAMyB,KAAM,EAE1C,OAAOC,KAAKC,IAAKJ,EAAIK,QAAQ,EAAIH,EAAMG,QAAQ,CAAE,CAElD,EASAzG,KAAK0G,sBAAwB,WAE5B,IAICC,EAAKC,EAAMC,EAEFxC,EANNL,EAAehE,KAElB8G,EAAe9G,KAAKmG,cAAc,EAClCjG,EAAe,GAGhB,IAAUmE,KAAUL,EAAK9D,KAExB,GAAO8D,EAAK9D,KAAK6G,eAAgB1C,CAAO,GAInC,UAAa,OAAOL,EAAK9D,KAAMmE,GAASoB,YAAc,UAAa,OAAOzB,EAAK9D,KAAMmE,GAASqB,UAInGiB,EAAM3C,EAAK9D,KAAMmE,GAASqB,SAIzB,IAAMkB,EAAI,EAAGA,EAAID,EAAIzF,OAAQ0F,CAAC,GAE7BI,EAAIhH,KAAKiH,UAAWN,EAAIC,GAAGC,IAAK,EAWzB3G,EAPN2G,EADIC,GAxBQ,QAyBL,IAAIT,KAAMW,EAAEE,YAAY,EAAGF,EAAEG,SAAS,EAAGH,EAAEI,QAAQ,CAAE,EAIrD,IAAIf,KAAMW,EAAEE,YAAY,EAAGF,EAAEG,SAAS,EAAG,CAAE,KAIlDjH,EAAM2G,GAAS7G,KAAKqH,sBAAuBR,CAAK,GAK3C,WAFG7C,EAAK9D,KAAMmE,GAASoB,WAAW6B,KAGtCpH,EAAM2G,GAAQxC,GAAWnE,EAAM2G,GAAQxC,IAAW,CAAEsC,EAAIC,GAAI5C,EAAK9D,KAAMmE,GAASoB,WAAW8B,KAK3FrH,EAAM2G,GAAQxC,EAAQ,GAW3B,OAAOnE,CAER,EASAF,KAAK6C,eAAiB,WAErB,IAIUgE,EAHTW,EADUxH,KACE0G,sBAAsB,EAClCxG,EAFUF,KAEEyH,kBAAkB,EAE/B,IAAUZ,KAAQW,EAEjB,GAAOA,EAAIT,eAAgBF,CAAK,EAAhC,CAIA,IAEUa,EAFNC,EAAM,CAAEH,EAAKX,GAAOe,OAExB,IAAUF,KAAQF,EAAKX,GACfW,EAAKX,GAAOE,eAAgBW,CAAK,GAKnC,IAAMA,EAAKG,QAAS,GAAI,GAI7BF,EAAIG,KAAMN,EAAKX,GAAQa,EAAO,EAG/BxH,EAAK4H,KAAMH,CAAI,CAjBf,CAqBD,OAAOzH,CAER,EAUAF,KAAKqH,sBAAwB,SAAUR,GAEtC,IAKUxC,EALNL,EAAOhE,KACVwH,EAAO,CACNI,MAAOf,CACT,EAEA,IAAUxC,KAAUL,EAAK9D,KACjB8D,EAAK9D,KAAK6G,eAAgB1C,CAAO,GAInCL,EAAK9D,KAAMmE,GAASoB,aACxB+B,EAAKnD,GAAW,GAKlB,OAAOmD,CAER,EASAxH,KAAKyH,kBAAoB,WAExB,IAUUpD,EAVNL,EAAOhE,KACV+H,EAAO,GASR,IAAU1D,KANV0D,EAAED,KAAM,CACPE,MAAOtG,KAAKC,KAAKC,UAAW,MAAO,EACnCqG,GAAI,OACJX,KAAM,MACP,CAAE,EAEkBtD,EAAK9D,KACjB8D,EAAK9D,KAAK6G,eAAgB1C,CAAO,GAInCL,EAAK9D,KAAMmE,GAASoB,YACxBsC,EAAED,KAAM9D,EAAK9D,KAAMmE,GAASoB,WAAWyC,MAAO,EAKhD,MAAO,CAAEH,EAEV,EAUA/H,KAAKsD,yBAA2B,WAE/B,IAIUe,EAOJiD,EAXFtD,EAAUhE,KACbO,EAAU,GAGX,IAAU8D,KAFTuC,EAAU,EAES5C,EAAK9D,KACjB8D,EAAK9D,KAAK6G,eAAgB1C,CAAO,GAInCL,EAAK9D,KAAMmE,GAASoB,aAEpB6B,EAAOtD,EAAK9D,KAAMmE,GAASoB,WAAW6B,KAE1C/G,EAASqG,GAAM,CACdU,KAAQ,UAAYA,EAAS,OAAS,OACtCa,gBAAmB,UAAYb,EAAS,EAAI,CAC7C,EAEAV,CAAC,IAMH,OAAOrG,CAER,EAUAP,KAAKiH,UAAY,SAAUmB,GAE1B,IAEAC,EAAQD,EAAOE,MAAO,GAAI,EAE1BzB,EAAOwB,EAAM,GAAGC,MAAO,GAAI,EAC3BC,EAAOF,EAAM,GAAGC,MAAO,GAAI,EAE3B,OAAO,IAAIjC,KAAMQ,EAAK,GAAIA,EAAK,GAAK,EAAGA,EAAK,GAAI0B,EAAK,GAAIA,EAAK,GAAIA,EAAK,EAAG,CAE3E,EAWAvI,KAAKkG,gBAAkB,SAAU/B,GAE3BnE,KAAKuC,oBAAoB,GAC7BvC,KAAKqC,WAAW,CAGlB,EAGArC,KAAKS,KAAK,EAGHT,IAER,EAEuCJ,OAAOC,KAAKC,WAAa,EAAG,CAElE,EAAG0I,MAAO","sourceRoot":"../../js"} \ No newline at end of file +{"version":3,"file":"../../js/llms-analytics.min.js","sources":["llms-analytics.js"],"sourcesContent":[";/**\n * LifterLMS Admin Reporting Widgets & Charts\n *\n * @since 3.0.0\n * @since 3.17.2 Unknown.\n * @since 3.33.1 Fix issue that produced series options not aligned with the chart data.\n * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`.\n * @since 4.3.3 Legends will automatically display on top of the chart.\n * @since 4.5.1 Show sales reporting currency symbol based on LifterLMS site options.\n * @version 7.3.0\n *\n */( function( $, undefined ) {\n\n\twindow.llms = window.llms || {};\n\n\t/**\n\t * LifterLMS Admin Analytics.\n\t *\n\t * @since 3.0.0\n\t * @since 3.5.0 Unknown\n\t * @since 4.5.1 Added `opts` parameter.\n\t * @since [verison] Early bail if no `#llms-analytics-json` is available.\n\t *\n\t * @param {Object} options Options object.\n\t * @return {Object} Class instance.\n\t */\n\tvar Analytics = function( opts ) {\n\n\t\tif ( ! $( '#llms-analytics-json' ).length ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.charts_loaded = false;\n\t\tthis.data = {};\n\t\tthis.query = $.parseJSON( $( '#llms-analytics-json' ).text() );\n\t\tthis.timeout = 8000;\n\t\tthis.options = opts;\n\n\t\tthis.$widgets = $( '.llms-widget[data-method]' );\n\n\t\t/**\n\t\t * Initializer\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.init = function() {\n\n\t\t\tgoogle.charts.load( 'current', {\n\t\t\t\tpackages: [\n\t\t\t\t\t'corechart'\n\t\t\t\t]\n\t\t\t} );\n\t\t\tgoogle.charts.setOnLoadCallback( this.charts_ready );\n\n\t\t\tthis.bind();\n\t\t\tthis.load_widgets();\n\n\t\t};\n\n\t\t/**\n\t\t * Bind DOM events.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.36.3 Added the `allow_clear` paramater when initializiing the `llmsStudentSelect2`.\n\t\t * @since 7.2.0 Added check for datepicker before initializing.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tthis.bind = function() {\n\n\t\t\tif ( $( '.llms-datepicker' ).length && $.fn.datepicker ) {\n\t\t\t\t$( '.llms-datepicker' ).datepicker( {\n\t\t\t\t\tdateFormat: 'yy-mm-dd',\n\t\t\t\t\tmaxDate: 0,\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t$( '#llms-students-ids-filter' ).llmsStudentsSelect2( {\n\t\t\t\tmultiple: true,\n\t\t\t\tplaceholder: LLMS.l10n.translate( 'Filter by Student(s)' ),\n\t\t\t\tallow_clear: true,\n\t\t\t} );\n\n\t\t\t$( 'a[href=\"#llms-toggle-filters\"]' ).on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$( '.llms-analytics-filters' ).slideToggle( 100 );\n\t\t\t} );\n\n\t\t\t$( '#llms-custom-date-submit' ).on( 'click', function() {\n\t\t\t\t$( 'input[name=\"range\"]' ).val( 'custom' );\n\t\t\t} );\n\n\t\t\t$( '#llms-date-quick-filters a.llms-nav-link[data-range]' ).on( 'click', function( e ) {\n\n\t\t\t\te.preventDefault();\n\t\t\t\t$( 'input[name=\"range\"]' ).val( $( this ).attr( 'data-range' ) );\n\n\t\t\t\t$( 'form.llms-reporting-nav' ).submit();\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Called by Google Charts when the library is loaded and ready\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.charts_ready = function() {\n\n\t\t\twindow.llms.analytics.charts_loaded = true;\n\t\t\twindow.llms.analytics.draw_chart();\n\n\t\t};\n\n\t\t/**\n\t\t * Render the chart\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.17.6 Unknown\n\t\t * @since 4.3.3 Force the legend to appear on top of the chart.\n\t\t * @since 4.5.1 Display sales numbers according to the site's currency settings instead of the browser's locale.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tthis.draw_chart = function() {\n\n\t\t\tif ( ! this.charts_loaded || ! this.is_loading_finished() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar el = document.getElementById( 'llms-charts-wrapper' );\n\n\t\t\tif ( ! el ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar self = this,\n\t\t\t\tchart = new google.visualization.ComboChart( el ),\n\t\t\t\tdata = self.get_chart_data(),\n\t\t\t\toptions = {\n\t\t\t\t\tlegend: 'top',\n\t\t\t\t\tchartArea: {\n\t\t\t\t\t\theight: '75%',\n\t\t\t\t\t\twidth: '85%',\n\t\t\t\t\t},\n\t\t\t\t\tcolors: ['#606C38','#E85D75','#EF8354','#C64191','#731963'],\n\t\t\t\t\theight: 560,\n\t\t\t\t\tlineWidth: 4,\n\t\t\t\t\tseriesType: 'bars',\n\t\t\t\t\tseries: self.get_chart_series_options(),\n\t\t\t\t\tvAxes: {\n\t\t\t\t\t\t0: {\n\t\t\t\t\t\t\tformat: this.options.currency_format || 'currency',\n\t\t\t\t\t\t},\n\t\t\t\t\t\t1: {\n\t\t\t\t\t\t\tformat: '',\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t};\n\n\t\t\tif ( data.length ) {\n\n\t\t\t\tdata = google.visualization.arrayToDataTable( data );\n\t\t\t\tdata.sort( [{column: 0}] );\n\t\t\t\tchart.draw( data, options );\n\n\t\t\t}\n\n\t\t};\n\n\t\t/**\n\t\t * Check if a widget is still loading\n\t\t *\n\t\t * @return bool\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.is_loading_finished = function() {\n\t\t\tif ( $( '.llms-widget.is-loading' ).length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t};\n\n\t\t/**\n\t\t * Start loading all widgets on the current screen\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.load_widgets = function() {\n\n\t\t\tvar self = this;\n\n\t\t\tthis.$widgets.each( function() {\n\t\t\t\tself.load_widget( $( this ) );\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Load a specific widget.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 7.2.0 Change h1 tag to .llms-widget-content.\n\t\t * @since 7.3.0 Append `_ajax_nonce` to the ajax data packet.\n\t\t *\n\t\t * @param {Object} $widget The jQuery selector of the widget element.\n\t\t * @return {Void}\n\t\t */\n\t\tthis.load_widget = function( $widget ) {\n\n\t\t\tvar self = this,\n\t\t\t\tmethod = $widget.attr( 'data-method' ),\n\t\t\t\t$content = $widget.find( '.llms-widget-content' ),\n\t\t\t\t$retry = $widget.find( '.llms-reload-widget' ),\n\t\t\t\tcontent_text = LLMS.l10n.translate( 'Error' ),\n\t\t\t\tstatus;\n\n\t\t\t$widget.addClass( 'is-loading' );\n\n\t\t\t$.ajax( {\n\n\t\t\t\tdata: {\n\t\t\t\t\taction: 'llms_widget_' + method,\n\t\t\t\t\tdates: self.query.dates,\n\t\t\t\t\tcourses: self.query.current_courses,\n\t\t\t\t\tmemberships: self.query.current_memberships,\n\t\t\t\t\tstudents: self.query.current_students,\n\t\t\t\t\t_ajax_nonce: window.llms.ajax_nonce,\n\t\t\t\t},\n\t\t\t\tmethod: 'POST',\n\t\t\t\ttimeout: self.timeout,\n\t\t\t\turl: window.ajaxurl,\n\t\t\t\tsuccess: function( r ) {\n\n\t\t\t\t\tstatus = 'success';\n\n\t\t\t\t\tif ( 'undefined' !== typeof r.response ) {\n\n\t\t\t\t\t\tcontent_text = r.response;\n\n\t\t\t\t\t\tself.data[method] = {\n\t\t\t\t\t\t\tchart_data: r.chart_data,\n\t\t\t\t\t\t\tresponse: r.response,\n\t\t\t\t\t\t\tresults: r.results,\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\t$retry.remove();\n\n\t\t\t\t\t}\n\n\t\t\t\t},\n\t\t\t\terror: function( r ) {\n\n\t\t\t\t\tstatus = 'error';\n\n\t\t\t\t},\n\t\t\t\tcomplete: function( r ) {\n\n\t\t\t\t\tif ( 'error' === status ) {\n\n\t\t\t\t\t\tif ( 'timeout' === r.statusText ) {\n\n\t\t\t\t\t\t\tcontent_text = LLMS.l10n.translate( 'Request timed out' );\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\tcontent_text = LLMS.l10n.translate( 'Error' );\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif ( ! $retry.length ) {\n\n\t\t\t\t\t\t\t$retry = $( '' + LLMS.l10n.translate( 'Retry' ) + '' );\n\t\t\t\t\t\t\t$retry.on( 'click', function( e ) {\n\n\t\t\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\t\t\tself.load_widget( $widget );\n\n\t\t\t\t\t\t\t} );\n\n\t\t\t\t\t\t\t$widget.append( $retry );\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t\t$widget.removeClass( 'is-loading' );\n\t\t\t\t\t$content.html( content_text );\n\n\t\t\t\t\tself.widget_finished( $widget );\n\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Get the time in seconds between the queried dates\n\t\t *\n\t\t * @return int\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_date_diff = function() {\n\n\t\t\tvar end = new Date( this.query.dates.end ),\n\t\t\t\tstart = new Date( this.query.dates.start );\n\n\t\t\treturn Math.abs( end.getTime() - start.getTime() );\n\n\t\t};\n\n\t\t/**\n\t\t * Builds an object of data that can be used to, ultimately, draw the screen's chart\n\t\t *\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.1.6\n\t\t */\n\t\tthis.get_chart_data_object = function() {\n\n\t\t\tvar self = this,\n\t\t\t\tmax_for_days = ( ( 1000 * 3600 * 24 ) * 30 ) * 4, // 4 months in seconds\n\t\t\t\tdiff = this.get_date_diff(),\n\t\t\t\tdata = {},\n\t\t\t\tres, i, d, date;\n\n\t\t\tfor ( var method in self.data ) {\n\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( 'object' !== typeof self.data[ method ].chart_data || 'object' !== typeof self.data[ method ].results ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tres = self.data[ method ].results;\n\n\t\t\t\tif ( res ) {\n\n\t\t\t\t\tfor ( i = 0; i < res.length; i++ ) {\n\n\t\t\t\t\t\td = this.init_date( res[i].date );\n\n\t\t\t\t\t\t// group by days\n\t\t\t\t\t\tif ( diff <= max_for_days ) {\n\t\t\t\t\t\t\tdate = new Date( d.getFullYear(), d.getMonth(), d.getDate() );\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// group by months\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tdate = new Date( d.getFullYear(), d.getMonth(), 1 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif ( ! data[ date ] ) {\n\t\t\t\t\t\t\tdata[ date ] = this.get_empty_data_object( date )\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tswitch ( self.data[ method ].chart_data.type ) {\n\n\t\t\t\t\t\t\tcase 'amount':\n\t\t\t\t\t\t\t\tdata[ date ][ method ] = data[ date ][ method ] + ( res[i][ self.data[ method ].chart_data.key ] * 1 );\n\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t\tcase 'count':\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\tdata[ date ][ method ]++;\n\t\t\t\t\t\t\tbreak;\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t};\n\n\t\t/**\n\t\t * Get the data google charts needs to initiate the current chart\n\t\t *\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_chart_data = function() {\n\n\t\t\tvar self = this,\n\t\t\t\tobj = self.get_chart_data_object(),\n\t\t\t\tdata = self.get_chart_headers();\n\n\t\t\tfor ( var date in obj ) {\n\n\t\t\t\tif ( ! obj.hasOwnProperty( date ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tvar row = [ obj[ date ]._date ];\n\n\t\t\t\tfor ( var item in obj[ date ] ) {\n\t\t\t\t\tif ( ! obj[ date ].hasOwnProperty( item ) ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\t// skip meta items\n\t\t\t\t\tif ( 0 === item.indexOf( '_' ) ) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\n\t\t\t\t\trow.push( obj[ date ][ item ] );\n\t\t\t\t}\n\n\t\t\t\tdata.push( row );\n\n\t\t\t}\n\n\t\t\treturn data;\n\n\t\t};\n\n\t\t/**\n\t\t * Get a stub of the data object used by this.get_data_object\n\t\t *\n\t\t * @param string date date to instantiate the object with\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_empty_data_object = function( date ) {\n\n\t\t\tvar self = this,\n\t\t\t\tobj = {\n\t\t\t\t\t_date: date,\n\t\t\t};\n\n\t\t\tfor ( var method in self.data ) {\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( self.data[ method ].chart_data ) {\n\t\t\t\t\tobj[ method ] = 0;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn obj;\n\n\t\t};\n\n\t\t/**\n\t\t * Builds an array of chart header data\n\t\t *\n\t\t * @return array\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.get_chart_headers = function() {\n\n\t\t\tvar self = this,\n\t\t\t\th = [];\n\n\t\t\t// date headers go first\n\t\t\th.push( {\n\t\t\t\tlabel: LLMS.l10n.translate( 'Date' ),\n\t\t\t\tid: 'date',\n\t\t\t\ttype: 'date',\n\t\t\t} );\n\n\t\t\tfor ( var method in self.data ) {\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( self.data[ method ].chart_data ) {\n\t\t\t\t\th.push( self.data[ method ].chart_data.header );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn [ h ];\n\n\t\t};\n\n\t\t/**\n\t\t * Get a object of series options needed to draw the chart.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since Fix issue that produced series options not aligned with the chart data.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.get_chart_series_options = function() {\n\n\t\t\tvar self = this,\n\t\t\t\toptions = {}\n\t\t\t\ti = 0;\n\n\t\t\tfor ( var method in self.data ) {\n\t\t\t\tif ( ! self.data.hasOwnProperty( method ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif ( self.data[ method ].chart_data ) {\n\n\t\t\t\t\tvar type = self.data[ method ].chart_data.type;\n\n\t\t\t\t\toptions[ i ] = {\n\t\t\t\t\t\ttype: ( 'count' === type ) ? 'bars' : 'line',\n\t\t\t\t\t\ttargetAxisIndex: ( 'count' === type ) ? 1 : 0,\n\t\t\t\t\t};\n\n\t\t\t\t\ti++;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn options;\n\n\t\t};\n\n\t\t/**\n\t\t * Instantiate a Date instance via a date string\n\t\t *\n\t\t * @param string string date string, expected format should be from php date( 'Y-m-d H:i:s' )\n\t\t * @return obj\n\t\t * @since 3.1.4\n\t\t * @version 3.1.5\n\t\t */\n\t\tthis.init_date = function( string ) {\n\n\t\t\tvar parts, date, time;\n\n\t\t\tparts = string.split( ' ' );\n\n\t\t\tdate = parts[0].split( '-' );\n\t\t\ttime = parts[1].split( ':' );\n\n\t\t\treturn new Date( date[0], date[1] - 1, date[2], time[0], time[1], time[2] );\n\n\t\t};\n\n\t\t/**\n\t\t * Called when a widget is finished loading\n\t\t * Updates the current chart with the new data from the widget\n\t\t *\n\t\t * @param obj $widget jQuery selector of the widget element\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tthis.widget_finished = function( $widget ) {\n\n\t\t\tif ( this.is_loading_finished() ) {\n\t\t\t\tthis.draw_chart();\n\t\t\t}\n\n\t\t};\n\n\t\t// go\n\t\tthis.init();\n\n\t\t// return\n\t\treturn this;\n\n\t};\n\n\twindow.llms.analytics = new Analytics( window.llms.analytics || {} );\n\n} )( jQuery );\n"],"names":["$","window","llms","analytics","opts","length","this","charts_loaded","data","query","parseJSON","text","timeout","options","$widgets","init","google","charts","load","packages","setOnLoadCallback","charts_ready","bind","load_widgets","fn","datepicker","dateFormat","maxDate","llmsStudentsSelect2","multiple","placeholder","LLMS","l10n","translate","allow_clear","on","e","preventDefault","slideToggle","val","attr","submit","draw_chart","chart","is_loading_finished","el","document","getElementById","visualization","ComboChart","get_chart_data","legend","chartArea","height","width","colors","lineWidth","seriesType","series","get_chart_series_options","vAxes","0","format","currency_format","1","arrayToDataTable","sort","column","draw","self","each","load_widget","$widget","status","method","$content","find","$retry","content_text","addClass","ajax","action","dates","courses","current_courses","memberships","current_memberships","students","current_students","_ajax_nonce","ajax_nonce","url","ajaxurl","success","r","response","chart_data","results","remove","error","complete","statusText","append","removeClass","html","widget_finished","get_date_diff","end","Date","start","Math","abs","getTime","get_chart_data_object","res","i","date","diff","hasOwnProperty","d","init_date","getFullYear","getMonth","getDate","get_empty_data_object","type","key","obj","get_chart_headers","item","row","_date","indexOf","push","h","label","id","header","targetAxisIndex","string","parts","split","time","jQuery"],"mappings":"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","sourceRoot":"../../js"} \ No newline at end of file diff --git a/assets/maps/js/llms-metabox-product.min.js.map b/assets/maps/js/llms-metabox-product.min.js.map index 71ced679dd..734052264f 100644 --- a/assets/maps/js/llms-metabox-product.min.js.map +++ b/assets/maps/js/llms-metabox-product.min.js.map @@ -1 +1 @@ -{"version":3,"file":"../../js/llms-metabox-product.min.js","sources":["llms-metabox-product.js"],"sourcesContent":["/**\n * Product Options MetaBox\n * Displays on Course & Membership Post Types\n *\n * @since 3.0.0\n * @since 3.30.3 Unknown.\n * @since 3.36.3 Fixed conflicts with the Classic Editor block.\n * @version 3.36.3\n */\n( function( $ ) {\n\n\twindow.llms = window.llms || {};\n\n\twindow.llms.metabox_product = function() {\n\n\t\t/**\n\t\t * jQuery obj for the main $( '#llms-access-plans' ) element.\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\tthis.$plans = null;\n\n\t\t/**\n\t\t * jQuery obj for the main $( '#llms-save-access-plans' ) save button element.\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\tthis.$save = null;\n\n\t\t/**\n\t\t * A randomly generated temporary ID used for the tinyMCE editor's id\n\t\t * when a new plan is added\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tthis.temp_id = Math.floor( ( Math.random() * 7777 ) + 777 );\n\n\t\t/**\n\t\t * CSS class name used to highlight validation errors for plan fields\n\t\t *\n\t\t * @type string\n\t\t */\n\t\tthis.validation_class = 'llms-invalid';\n\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @param bool skip_dep_checks if true, skips dependency checks.\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.29.3\n\t\t */\n\t\tthis.init = function( skip_dep_checks ) {\n\n\t\t\tvar self = this;\n\n\t\t\tself.$plans = $( '#llms-access-plans' );\n\t\t\tself.$save = $( '#llms-save-access-plans' );\n\n\t\t\tself.bind_visibility();\n\n\t\t\tvar $mb = $( '#lifterlms-product #llms-product-options-access-plans' );\n\n\t\t\tif ( ! $mb.length ) {\n\t\t\t\treturn;\n\t\t\t} else if ( skip_dep_checks ) {\n\t\t\t\tself.bind();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tLLMS.Spinner.start( $mb );\n\n\t\t\t// we rely on TinyMCE but WordPress doesn't register TinyMCE\n\t\t\t// like every other admin script so we'll do a little dependency check here...\n\t\t\tvar counter = 0,\n\t\t\t\tinterval;\n\n\t\t\tinterval = setInterval( function() {\n\n\t\t\t\t// if we get to 30 seconds display an error message\n\t\t\t\tif ( counter >= 300 ) {\n\n\t\t\t\t\t$mb.html( LLMS.l10n.translate( 'There was an error loading the necessary resources. Please try again.' ) );\n\n\t\t\t\t}\n\t\t\t\t// if we can't access tinyMCE, increment and wait...\n\t\t\t\telse if ( 'undefined' === typeof tinyMCE ) {\n\n\t\t\t\t\tcounter++;\n\t\t\t\t\treturn;\n\n\t\t\t\t}\n\t\t\t\t// bind the events, we're good!\n\t\t\t\telse {\n\n\t\t\t\t\tself.bind();\n\n\t\t\t\t}\n\n\t\t\t\tclearInterval( interval );\n\t\t\t\tLLMS.Spinner.stop( $mb );\n\n\t\t\t}, 100 );\n\n\t\t};\n\n\t\t/**\n\t\t * Bind DOM Events\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.30.0 Add checkout redirect fields events.\n\t\t * @version 3.30.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.bind = function() {\n\n\t\t\tvar self = this;\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tif ( self.has_plan_limit_been_reached() ) {\n\t\t\t\t\tself.toggle_create_button( 'disable' );\n\t\t\t\t}\n\t\t\t}, 500 );\n\n\t\t\tif ( 0 === self.get_current_plan_count() ) {\n\t\t\t\tself.toggle_save_button( 'disable' );\n\t\t\t}\n\n\t\t\t// save access plans button.\n\t\t\tself.$save.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\tself.save_plans();\n\t\t\t} );\n\n\t\t\t// bind change events to form element that controls another form element\n\t\t\tself.$plans.on( 'change', '[data-controller-id]', function() {\n\t\t\t\tself.controller_change( $( this ) );\n\t\t\t} );\n\n\t\t\t// @todo Replace this with multiple data-controller functionality in llms-metaboxes.js\n\t\t\tself.$plans.on( 'change', 'select[name$=\"[availability]\"]', function() {\n\t\t\t\tvar $plan_container = $( this ).closest( '.llms-access-plan' ),\n\t\t\t\t\t$plan_redirect_forced = $plan_container.find( 'input[name$=\"[checkout_redirect_forced]\"]' ),\n\t\t\t\t\t$plan_redirect_settings = $plan_container.find( '.llms-checkout-redirect-settings' );\n\n\t\t\t\tif ( 'members' === $( this ).val() ) {\n\t\t\t\t\tif ( ! $plan_redirect_forced.prop( 'checked' ) ) {\n\t\t\t\t\t\t$plan_redirect_settings.hide();\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$plan_redirect_settings.show();\n\t\t\t\t\t}\n\n\t\t\t\t\t$plan_redirect_forced.on( 'change', function() {\n\t\t\t\t\t\t$plan_redirect_settings.toggle();\n\t\t\t\t\t} );\n\n\t\t\t\t} else {\n\t\t\t\t\t$plan_redirect_forced.off( 'change' );\n\t\t\t\t\t$plan_redirect_settings.show();\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t$( '#llms-access-plans .llms-access-plan-datepicker' ).datepicker( {\n\t\t\t\tdateFormat: \"mm/dd/yy\"\n\t\t\t} );\n\n\t\t\t// trigger changes on load for all existing plans\n\t\t\t$( '#llms-access-plans [data-controller-id]' ).trigger( 'change' );\n\n\t\t\t// add a new empty plan interface on new plan button click.\n\t\t\t$( '#llms-new-access-plan' ).on( 'click', function() {\n\t\t\t\tself.init_plan();\n\t\t\t\tself.toggle_create_button( 'disable' );\n\t\t\t\tself.toggle_save_button( 'enable' );\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tif ( ! self.has_plan_limit_been_reached() ) {\n\t\t\t\t\t\tself.toggle_create_button( 'enable' );\n\t\t\t\t\t}\n\t\t\t\t}, 500 );\n\t\t\t} );\n\n\t\t\tself.$plans.sortable( {\n\t\t\t\thandle: '.llms-drag-handle',\n\t\t\t\titems: '.llms-access-plan',\n\t\t\t\tstart: function( event, ui ) {\n\t\t\t\t\tself.$plans.addClass( 'dragging' );\n\t\t\t\t},\n\t\t\t\tstop: function( event, ui ) {\n\t\t\t\t\tself.$plans.removeClass( 'dragging' );\n\t\t\t\t\tself.update_plan_orders();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// bind text entered into the title to the displayed title for fancy fun\n\t\t\tself.$plans.on( 'keyup', 'input.llms-plan-title', function( ) {\n\n\t\t\t\tvar $input = $( this ),\n\t\t\t\t\t$plan = $input.closest( '.llms-access-plan' ),\n\t\t\t\t\t$display = $plan.find( 'span.llms-plan-title' ),\n\t\t\t\t\tval = $input.val(),\n\t\t\t\t\ttitle = ( val ) ? val : $display.attr( 'data-default' );\n\n\t\t\t\t$display.text( title );\n\n\t\t\t} );\n\n\t\t\t// Record that a field has been focused so we can tweak validation to only validate \"edited\" fields.\n\t\t\tself.$plans.on( 'focusin', 'input', function( e, data ) {\n\t\t\t\t$( this ).addClass( 'llms-has-been-focused' );\n\t\t\t} );\n\n\t\t\t// Validate a single input field\n\t\t\tself.$plans.on( 'keyup focusout llms-validate-plan-field', 'input', function( e, data ) {\n\n\t\t\t\tvar $input = $( this );\n\n\t\t\t\tif ( $input[0].checkValidity() ) {\n\t\t\t\t\t$input.removeClass( self.validation_class );\n\t\t\t\t} else {\n\t\t\t\t\t$input.addClass( self.validation_class );\n\t\t\t\t\tif ( 'keyup' === e.type ) {\n\t\t\t\t\t\t$input[0].reportValidity();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( ! data || data.cascade ) {\n\t\t\t\t\t$input.closest( '.llms-access-plan' ).trigger( 'llms-validate-plan', { original_event: e.type } );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\tself.$plans.on( 'llms-validate-plan', '.llms-access-plan', function( e, data ) {\n\n\t\t\t\tdata = data || {};\n\n\t\t\t\tvar $plan = $( this ),\n\t\t\t\t\t// only validate \"edited\" fields during cascading validation from input validations.\n\t\t\t\t\tselector = data.original_event ? 'input.llms-has-been-focused' : 'input';\n\n\t\t\t\t$plan.find( selector ).each( function() {\n\t\t\t\t\t$( this ).trigger( 'llms-validate-plan-field', { cascade: false } );\n\t\t\t\t} );\n\n\t\t\t\tif ( $plan.find( '.' + self.validation_class ).length ) {\n\t\t\t\t\t$plan.addClass( self.validation_class );\n\t\t\t\t} else {\n\t\t\t\t\t$plan.removeClass( self.validation_class );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\tself.$plans.on( 'llms-collapsible-toggled', '.llms-access-plan', function() {\n\n\t\t\t\tvar $plan = $( this );\n\n\t\t\t\tif ( $plan.hasClass( 'opened' ) ) {\n\t\t\t\t\t// wait for animation to complete to prevent focusable errors in the console.\n\t\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t\t$plan.find( 'input.llms-invalid' ).each( function() {\n\t\t\t\t\t\t\t$( this )[0].reportValidity();\n\t\t\t\t\t\t} );\n\t\t\t\t\t}, 500 );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\tself.$plans.on( 'click', '.llms-plan-delete', function( e ) {\n\t\t\t\te.stopPropagation();\n\t\t\t\tself.delete_plan( $( this ) );\n\t\t\t} );\n\n\t\t\t// select2ify membership availability fields\n\t\t\twindow.llms.metaboxes.post_select( $( '#llms-access-plans .llms-availability-restrictions' ) );\n\n\t\t\t// select2ify redirection page fields\n\t\t\twindow.llms.metaboxes.post_select( $( '#llms-access-plans .llms-checkout-redirect-page' ) );\n\n\t\t\t// disable the textarea generated by the wp_editor function\n\t\t\t// can't figure out how to do this during initialization\n\t\t\t$( '#_llms_plans_content_llms-new-access-plan-model' ).attr( 'disabled', 'disabled' );\n\t\t\ttinyMCE.EditorManager.execCommand( 'mceRemoveEditor', true, '_llms_plans_content_llms-new-access-plan-model' );\n\n\t\t};\n\n\t\t/**\n\t\t * Bind DOM events for editing product visibility\n\t\t *\n\t\t * @return void\n\t\t * @since 3.6.0\n\t\t * @version 3.6.0\n\t\t */\n\t\tthis.bind_visibility = function() {\n\n\t\t\tvar $radios = $( '#llms-catalog-visibility-select' ),\n\t\t\t\t$toggle = $( 'a.llms-edit-catalog-visibility' ),\n\t\t\t\t$save = $( 'a.llms-save-catalog-visibility' ),\n\t\t\t\t$cancel = $( 'a.llms-cancel-catalog-visibility' );\n\n\t\t\t$toggle.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$radios.slideDown( 'fast' );\n\t\t\t\t$toggle.hide();\n\t\t\t} );\n\n\t\t\t$save.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$radios.slideUp( 'fast' );\n\t\t\t\t$toggle.show();\n\t\t\t\t$( '#llms-catalog-visibility-display' ).text( $( 'input[name=\"_llms_visibility\"]:checked' ).attr( 'data-label' ) );\n\t\t\t} );\n\n\t\t\t$cancel.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$radios.slideUp( 'fast' );\n\t\t\t\t$toggle.show();\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Handle physical deletion of a plan element\n\t\t * If the plan hasn't be persisted to the database it's removed from the dom\n\t\t * if it already exists in the database a confirm modal is displayed\n\t\t * upon confirmation AJAX call will be made to move the plan to the trash\n\t\t * and upon success the element will be removed from the dom\n\t\t *\n\t\t * @param obj $btn jQuery selector of the \"X\" button clicked to initiate deletion\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.29.1\n\t\t */\n\t\tthis.delete_plan = function( $btn ) {\n\n\t\t\tvar self = this,\n\t\t\t\t$plan = $btn.closest( '.llms-access-plan' ),\n\t\t\t\tplan_id = $plan.attr( 'data-id' ),\n\t\t\t\twarning = LLMS.l10n.translate( 'After deleting this access plan, any students subscribed to this plan will still have access and will continue to make recurring payments according to the access plan\\'s settings. If you wish to terminate their plans you must do so manually. This action cannot be reversed.' );\n\n\t\t\t// if there's no ID just remove the element from the DOM\n\t\t\tif ( ! plan_id ) {\n\n\t\t\t\tself.remove_plan_el( $plan );\n\n\t\t\t\t// Throw a confirmation warning\n\t\t\t} else if ( window.confirm( warning ) ) {\n\n\t\t\t\tLLMS.Spinner.start( $plan );\n\t\t\t\twindow.LLMS.Ajax.call( {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taction: 'delete_access_plan',\n\t\t\t\t\t\tplan_id: plan_id,\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function( r ) {\n\t\t\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t\t\tLLMS.Spinner.stop( $plan );\n\t\t\t\t\t\t}, 550 );\n\t\t\t\t\t\tif ( r.success ) {\n\t\t\t\t\t\t\tself.remove_plan_el( $plan );\n\t\t\t\t\t\t\tself.trigger_update_hook();\n\t\t\t\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t\t\t\tself.update_plan_orders();\n\t\t\t\t\t\t\t}, 500 );\n\t\t\t\t\t\t} else if ( r.message ) {\n\t\t\t\t\t\t\talert( r.message );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t};\n\n\t\t/**\n\t\t * Handle hiding & showing various pieces of an access plan form\n\t\t * This is bound to any form element with a \"data-controller-id\" property\n\t\t *\n\t\t * @param obj $el jQuery selector for the changed form element\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t */\n\t\tthis.controller_change = function( $el ) {\n\n\t\t\tvar id = $el.attr( 'data-controller-id' ),\n\t\t\t\tval = $el.val(),\n\t\t\t\t$form = $el.closest( '.llms-access-plan' ),\n\t\t\t\t$controls = $form.find( '[data-controller=\"' + id + '\"]' );\n\n\t\t\tif ( 'checkbox' === $el.attr( 'type' ) ) {\n\t\t\t\tval = ( $el.is( ':checked' ) ) ? val : 'no';\n\t\t\t}\n\n\t\t\t$controls.each( function() {\n\n\t\t\t\tvar $c = $( this ),\n\t\t\t\t\t$els = ( 'SELECT' === $c[0].nodeName || 'INPUT' === $c[0].nodeName || 'TEXTAREA' === $c[0].nodeName ) ? $c : $c.find( 'input, select, textarea' ),\n\t\t\t\t\tequals = $c.attr( 'data-value-is' ),\n\t\t\t\t\tnot_equals = $c.attr( 'data-value-is-not' ),\n\t\t\t\t\taction, operator;\n\n\t\t\t\tif ( typeof equals !== typeof undefined && equals !== false ) {\n\n\t\t\t\t\toperator = '==';\n\n\t\t\t\t} else if ( typeof not_equals !== typeof undefined && not_equals !== false ) {\n\n\t\t\t\t\toperator = '!=';\n\n\t\t\t\t}\n\n\t\t\t\tswitch ( operator ) {\n\n\t\t\t\t\tcase '==':\n\n\t\t\t\t\t\tif ( val == equals ) {\n\t\t\t\t\t\t\taction = 'show';\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\taction = 'hide';\n\t\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase '!=':\n\n\t\t\t\t\t\tif ( val != not_equals ) {\n\t\t\t\t\t\t\taction = 'show';\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\taction = 'hide';\n\t\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\n\t\t\t\t}\n\n\t\t\t\tif ( 'show' === action ) {\n\t\t\t\t\t$c.show();\n\t\t\t\t\t$els.removeAttr( 'disabled' ).trigger( 'change' );\n\t\t\t\t} else if ( 'hide' === action ) {\n\t\t\t\t\t$c.hide();\n\t\t\t\t\t$els.attr( 'disabled', 'disabled' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Retrieve the current number of access plans for the course / membership (saved or unsaved)\n\t\t *\n\t\t * @return int\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.get_current_plan_count = function() {\n\t\t\treturn this.$plans.find( '.llms-access-plan' ).length;\n\t\t}\n\n\t\t/**\n\t\t * Retrieve access plan data as an array of JSON built from the dom element field values.\n\t\t *\n\t\t * @return array\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.get_plans_array = function() {\n\n\t\t\t// ensure all content editors are saved properly.\n\t\t\ttinyMCE.triggerSave();\n\n\t\t\tvar self = this,\n\t\t\t\tform = self.$plans.closest( 'form' ).serializeArray(),\n\t\t\t\tplans = [];\n\n\t\t\tfor ( var i = 0; i < form.length; i++ ) {\n\n\t\t\t\t// Skip non plan data from the form.\n\t\t\t\tif ( -1 === form[ i ].name.indexOf( '_llms_plans' ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tvar keys = form[ i ].name.replace( '_llms_plans[', '' ).split( '][' ),\n\t\t\t\t\tindex = ( keys[0] * 1 ) - 1,\n\t\t\t\t\tname = keys[1].replace( ']', '' ),\n\t\t\t\t\ttype = 3 === keys.length ? 'array' : 'single';\n\n\t\t\t\tif ( ! plans[ index ] ) {\n\t\t\t\t\tplans[ index ] = {};\n\t\t\t\t}\n\n\t\t\t\tif ( 'array' === type ) {\n\n\t\t\t\t\tif ( ! plans[ index ][ name ] ) {\n\t\t\t\t\t\tplans[ index ][ name ] = [];\n\t\t\t\t\t}\n\t\t\t\t\tplans[ index ][ name ].push( form[ i ].value );\n\n\t\t\t\t} else {\n\n\t\t\t\t\tplans[ index ][ name ] = form[ i ].value;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn plans;\n\n\t\t};\n\n\t\t/**\n\t\t * Determine if the access plan limit has been reached\n\t\t *\n\t\t * @return Boolean\n\t\t * @since 3.0.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.has_plan_limit_been_reached = function() {\n\n\t\t\tvar limit = window.llms.product.access_plan_limit;\n\t\t\treturn this.get_current_plan_count() >= limit;\n\n\t\t};\n\n\t\t/**\n\t\t * Initializes a new plan and adds it to the list of plans in the DOM\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.30.0 Initialize select2 on checkout redirect fields.\n\t\t * @version 3.30.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.init_plan = function() {\n\n\t\t\t// don't do anything if we've reached the plan limit\n\t\t\tif ( this.has_plan_limit_been_reached() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar $clone = $( '#llms-new-access-plan-model' ).clone()\n\t\t\t\t$existing_plans = $( '#llms-access-plans .llms-access-plan' ),\n\t\t\t\t$editor = $clone.find( '#_llms_plans_content_llms-new-access-plan-model' );\n\n\t\t\t// remove ID from the item\n\t\t\t$clone.removeAttr( 'id' );\n\n\t\t\t// give a temporary id to the editor element\n\t\t\t$editor.removeAttr( 'id' ).attr( 'id', '_llms_plans_content_' + this.temp_id );\n\t\t\tthis.temp_id++; // increment the temp_id ID so we don't use it again\n\n\t\t\t// activate all elements\n\t\t\t$clone.find( 'select, input, textarea' ).each( function() {\n\t\t\t\t$( this ).removeAttr( 'disabled' ); // enabled the field\n\t\t\t} );\n\n\t\t\t$clone.find( '.llms-access-plan-datepicker' ).datepicker( {\n\t\t\t\tdateFormat: \"mm/dd/yy\"\n\t\t\t} );\n\n\t\t\t$clone.appendTo( '#llms-access-plans' );\n\n\t\t\t// rewrite the order of all elements\n\t\t\tthis.update_plan_orders();\n\n\t\t\t$clone.find( '.llms-collapsible-header' ).trigger( 'click' );\n\n\t\t\t// check if the limit has been reached and toggle the button if it has\n\t\t\tif ( this.has_plan_limit_been_reached() ) {\n\t\t\t\tthis.toggle_create_button( 'disable' );\n\t\t\t}\n\n\t\t\t// select2ify membership availability field\n\t\t\twindow.llms.metaboxes.post_select( $clone.find( '.llms-availability-restrictions' ) );\n\n\t\t\t// select2ify redirection page fields\n\t\t\twindow.llms.metaboxes.post_select( $clone.find( '.llms-checkout-redirect-page' ) );\n\n\t\t\t$clone.find( '[data-controller-id]' ).trigger( 'change' );\n\t\t\t$( document ).trigger( 'llms-plan-init', $clone );\n\n\t\t};\n\n\t\t/**\n\t\t * Persist access plans to the DB if they pass validation\n\t\t *\n\t\t * @since 3.29.0\n\t\t * @since 3.30.3 Fixed typo in error message.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.save_plans = function() {\n\n\t\t\tvar self = this;\n\n\t\t\tself.$plans.find( '.llms-access-plan' ).not( '#llms-new-access-plan-model' ).each( function() {\n\t\t\t\t$( this ).trigger( 'llms-validate-plan' );\n\t\t\t} );\n\n\t\t\tif ( self.$plans.find( '.' + self.validation_class ).length ) {\n\t\t\t\tself.$plans.find( '.llms-access-plan.' + self.validation_class ).not( '.opened' ).first().find( '.llms-collapsible-header' ).trigger( 'click' );\n\t\t\t\t$( document ).trigger( 'llms-access-plan-validation-errors' );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tLLMS.Spinner.start( self.$plans );\n\t\t\tself.$save.attr( 'disabled', 'disabled' );\n\t\t\twindow.LLMS.Ajax.call( {\n\t\t\t\tdata: {\n\t\t\t\t\taction: 'llms_update_access_plans',\n\t\t\t\t\tplans: self.get_plans_array(),\n\t\t\t\t},\n\t\t\t\tcomplete: function() {\n\t\t\t\t\tLLMS.Spinner.stop( self.$plans );\n\t\t\t\t\tself.$save.removeAttr( 'disabled' );\n\t\t\t\t},\n\t\t\t\terror: function( jqXHR, textStatus, errorThrown ) {\n\t\t\t\t\tconsole.error( 'llms access plan save error encounterd:', jqXHR );\n\t\t\t\t\talert( LLMS.l10n.translate( 'An error was encountered during the save attempt. Please try again.' ) + ' [' + textStatus + ': ' + errorThrown + ']' );\n\t\t\t\t},\n\t\t\t\tsuccess: function( res ) {\n\n\t\t\t\t\tif ( ! res.success && res.code && 'error' === res.code ) {\n\t\t\t\t\t\talert( res.message );\n\t\t\t\t\t} else if ( res.data && res.data.html ) {\n\n\t\t\t\t\t\t// replace the metabox with updated data from the server.\n\t\t\t\t\t\t$( '#llms-product-options-access-plans' ).replaceWith( res.data.html );\n\n\t\t\t\t\t\t// reinit.\n\t\t\t\t\t\tself.init( true );\n\t\t\t\t\t\twindow.llms.metaboxes.init();\n\t\t\t\t\t\tself.update_plan_orders();\n\n\t\t\t\t\t\t// notify the block editor\n\t\t\t\t\t\tself.trigger_update_hook();\n\n\t\t\t\t\t}\n\n\t\t\t\t},\n\n\t\t\t} );\n\t\t};\n\n\t\t/**\n\t\t * Toggle the status of a button\n\t\t *\n\t\t * @param Object $btn jQuery selector of a button element\n\t\t * @param string status enable or disable\n\t\t * @return void\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.toggle_button = function( $btn, status ) {\n\n\t\t\tif ( 'disable' === status ) {\n\t\t\t\t$btn.attr( 'disabled', 'disabled' );\n\t\t\t} else {\n\t\t\t\t$btn.removeAttr( 'disabled' );\n\t\t\t}\n\n\t\t};\n\n\t\t/**\n\t\t * Control the status of the \"New Access Plan\" Button\n\t\t *\n\t\t * @param string status enable or disable\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @since 3.29.0\n\t\t */\n\t\tthis.toggle_create_button = function( status ) {\n\t\t\tthis.toggle_button( $( '#llms-new-access-plan' ), status );\n\t\t};\n\n\t\t/**\n\t\t * Control the status of the \"Save Access Plans\" Button\n\t\t *\n\t\t * @param string status enable or disable\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @since 3.29.0\n\t\t */\n\t\tthis.toggle_save_button = function( status ) {\n\t\t\tthis.toggle_button( this.$save, status );\n\t\t}\n\n\t\t/**\n\t\t * Visually hide and then physically remove a plan element from the DOM\n\t\t * Additionally determines if the New Plan Button should be re-enabled\n\t\t * after deletion\n\t\t *\n\t\t * @param obj $plan jQuery selector of the plan element\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.remove_plan_el = function( $plan ) {\n\n\t\t\tvar self = this;\n\n\t\t\t// fade out nicely\n\t\t\t$plan.fadeOut( 400 );\n\n\t\t\t// remove from dom after it's hidden visually\n\t\t\tsetTimeout(function() {\n\n\t\t\t\t$plan.remove();\n\n\t\t\t\t// check if we need to reenable the create button and hide the message\n\t\t\t\tif ( ! self.has_plan_limit_been_reached() ) {\n\t\t\t\t\tself.toggle_create_button( 'enable' );\n\t\t\t\t}\n\n\t\t\t\tif ( 0 === self.get_current_plan_count() ) {\n\t\t\t\t\tself.toggle_save_button( 'disable' );\n\t\t\t\t}\n\n\t\t\t}, 450 );\n\n\t\t};\n\n\t\t/**\n\t\t * Trigger WP Block Editor hook so the pricing table block can be re-rendered with new plan information.\n\t\t *\n\t\t * @return void\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.trigger_update_hook = function() {\n\n\t\t\t$( document ).trigger( 'llms-access-plans-updated' );\n\n\t\t};\n\n\t\t/**\n\t\t * Reorder the array indexes and the menu order hidden inputs.\n\t\t * Called by jQuery UI Sortable on sort completion.\n\t\t * Also called after adding a new plan to the DOM so the newest item is always\n\t\t * persisted as the last in the database if no UX reorders the item.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.36.3 Fixed conflicts with the classic editor block.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.update_plan_orders = function() {\n\n\t\t\t$( '#llms-access-plans .llms-access-plan' ).each( function() {\n\n\t\t\t\tvar $p = $( this ),\n\t\t\t\t\t$order = $p.find( '.plan-order' ),\n\t\t\t\t\t$editor = $p.find( 'textarea[id^=\"_llms_plans_content_\"]' ),\n\t\t\t\t\teditor_id = $editor.attr( 'id' ),\n\t\t\t\t\torig = $order.val() * 1,\n\t\t\t\t\tcurr = $p.index(),\n\t\t\t\t\teditor = tinyMCE.EditorManager.get(editor_id),\n\t\t\t\t\tesettings = editor ? editor.settings : tinyMCE.EditorManager.settings;\n\n\t\t\t\t// make sure the editor settings have the right selector.\n\t\t\t\tesettings.selector = '#' + editor_id;\n\n\t\t\t\t// de-init tinyMCE from the editor.\n\t\t\t\ttinyMCE.EditorManager.execCommand( 'mceRemoveEditor', true, editor_id );\n\n\t\t\t\t// update the order of each field in the plan.\n\t\t\t\t$p.find( 'select, input, textarea' ).each( function() {\n\n\t\t\t\t\tvar name = $( this ).attr( 'name' );\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\t$( this ).attr( 'name', name.replace( orig, curr ) );\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t// re-init tinyMCE on the editor.\n\t\t\t\t// We used:\ttinyMCE.EditorManager.execCommand( 'mceAddEditor', true, editor_id );\n\t\t\t\t// but it turned out to create conflicts with the Classic Editor block.\n\t\t\t\ttinyMCE.EditorManager.init( esettings );\n\n\t\t\t\t$order.val( curr );\n\n\t\t\t} );\n\n\t\t};\n\n\t\t// go\n\t\tthis.init();\n\n\t};\n\n\tvar a = new window.llms.metabox_product();\n\n} )( jQuery );\n"],"names":["$","window","llms","metabox_product","this","$plans","$save","temp_id","Math","floor","random","validation_class","init","skip_dep_checks","counter","interval","self","$mb","bind_visibility","length","bind","LLMS","Spinner","start","setInterval","html","l10n","translate","tinyMCE","clearInterval","stop","setTimeout","has_plan_limit_been_reached","toggle_create_button","get_current_plan_count","toggle_save_button","on","e","preventDefault","save_plans","controller_change","$plan_container","closest","$plan_redirect_forced","find","$plan_redirect_settings","val","prop","show","hide","toggle","off","datepicker","dateFormat","trigger","init_plan","sortable","handle","items","event","ui","addClass","removeClass","update_plan_orders","$input","$display","title","attr","text","data","checkValidity","type","reportValidity","cascade","original_event","$plan","selector","each","hasClass","stopPropagation","delete_plan","metaboxes","post_select","EditorManager","execCommand","$radios","$toggle","$cancel","slideDown","slideUp","$btn","plan_id","warning","confirm","Ajax","call","action","success","r","remove_plan_el","trigger_update_hook","message","alert","$el","id","$controls","is","operator","$c","$els","nodeName","equals","not_equals","removeAttr","get_plans_array","triggerSave","index","name","form","serializeArray","plans","i","indexOf","keys","replace","split","push","value","limit","product","access_plan_limit","$clone","clone","$existing_plans","$editor","appendTo","document","not","first","complete","error","jqXHR","textStatus","errorThrown","console","res","code","replaceWith","toggle_button","status","fadeOut","remove","$p","$order","editor_id","orig","curr","editor","get","esettings","settings","jQuery"],"mappings":"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","sourceRoot":"../../js"} \ No newline at end of file +{"version":3,"file":"../../js/llms-metabox-product.min.js","sources":["llms-metabox-product.js"],"sourcesContent":["/**\n * Product Options MetaBox.\n *\n * Displays on Course & Membership Post Types.\n *\n * @since 3.0.0\n * @since 3.30.3 Unknown.\n * @since 3.36.3 Fixed conflicts with the Classic Editor block.\n * @version 7.3.0\n */\n( function( $ ) {\n\n\twindow.llms = window.llms || {};\n\n\twindow.llms.metabox_product = function() {\n\n\t\t/**\n\t\t * jQuery obj for the main $( '#llms-access-plans' ) element.\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\tthis.$plans = null;\n\n\t\t/**\n\t\t * jQuery obj for the main $( '#llms-save-access-plans' ) save button element.\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\tthis.$save = null;\n\n\t\t/**\n\t\t * A randomly generated temporary ID used for the tinyMCE editor's id\n\t\t * when a new plan is added\n\t\t *\n\t\t * @type int\n\t\t */\n\t\tthis.temp_id = Math.floor( ( Math.random() * 7777 ) + 777 );\n\n\t\t/**\n\t\t * CSS class name used to highlight validation errors for plan fields\n\t\t *\n\t\t * @type string\n\t\t */\n\t\tthis.validation_class = 'llms-invalid';\n\n\t\t/**\n\t\t * Initialize.\n\t\t *\n\t\t * @param bool skip_dep_checks If true, skips dependency checks.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.29.3 Unknown.\n\t\t * @since 7.3.0 Check on whether access plans require attention.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tthis.init = function( skip_dep_checks ) {\n\n\t\t\tvar self = this;\n\n\t\t\tself.$plans = $( '#llms-access-plans' );\n\t\t\tself.$save = $( '#llms-save-access-plans' );\n\n\t\t\tself.bind_visibility();\n\n\t\t\tvar $mb = $( '#lifterlms-product #llms-product-options-access-plans' );\n\n\t\t\tif ( ! $mb.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Check whether the warning icon should be displayed.\n\t\t\tself.requiresAttention();\n\n\t\t\tif ( skip_dep_checks ) {\n\t\t\t\tself.bind();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tLLMS.Spinner.start( $mb );\n\n\t\t\t// we rely on TinyMCE but WordPress doesn't register TinyMCE\n\t\t\t// like every other admin script so we'll do a little dependency check here...\n\t\t\tvar counter = 0,\n\t\t\t\tinterval;\n\n\t\t\tinterval = setInterval( function() {\n\n\t\t\t\t// if we get to 30 seconds display an error message\n\t\t\t\tif ( counter >= 300 ) {\n\n\t\t\t\t\t$mb.html( LLMS.l10n.translate( 'There was an error loading the necessary resources. Please try again.' ) );\n\n\t\t\t\t}\n\t\t\t\t// if we can't access tinyMCE, increment and wait...\n\t\t\t\telse if ( 'undefined' === typeof tinyMCE ) {\n\n\t\t\t\t\tcounter++;\n\t\t\t\t\treturn;\n\n\t\t\t\t}\n\t\t\t\t// bind the events, we're good!\n\t\t\t\telse {\n\n\t\t\t\t\tself.bind();\n\n\t\t\t\t}\n\n\t\t\t\tclearInterval( interval );\n\t\t\t\tLLMS.Spinner.stop( $mb );\n\n\t\t\t}, 100 );\n\n\t\t};\n\n\t\t/**\n\t\t * Bind DOM Events.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.30.0 Add checkout redirect fields events.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tthis.bind = function() {\n\n\t\t\tvar self = this;\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tif ( self.has_plan_limit_been_reached() ) {\n\t\t\t\t\tself.toggle_create_button( 'disable' );\n\t\t\t\t}\n\t\t\t}, 500 );\n\n\t\t\tif ( 0 === self.get_current_plan_count() ) {\n\t\t\t\tself.toggle_save_button( 'disable' );\n\t\t\t}\n\n\t\t\t// save access plans button.\n\t\t\tself.$save.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\tself.save_plans();\n\t\t\t} );\n\n\t\t\t// bind change events to form element that controls another form element\n\t\t\tself.$plans.on( 'change', '[data-controller-id]', function() {\n\t\t\t\tself.controller_change( $( this ) );\n\t\t\t} );\n\n\t\t\t// @todo Replace this with multiple data-controller functionality in llms-metaboxes.js\n\t\t\tself.$plans.on( 'change', 'select[name$=\"[availability]\"]', function() {\n\t\t\t\tvar $plan_container = $( this ).closest( '.llms-access-plan' ),\n\t\t\t\t\t$plan_redirect_forced = $plan_container.find( 'input[name$=\"[checkout_redirect_forced]\"]' ),\n\t\t\t\t\t$plan_redirect_settings = $plan_container.find( '.llms-checkout-redirect-settings' );\n\n\t\t\t\tif ( 'members' === $( this ).val() ) {\n\t\t\t\t\tif ( ! $plan_redirect_forced.prop( 'checked' ) ) {\n\t\t\t\t\t\t$plan_redirect_settings.hide();\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$plan_redirect_settings.show();\n\t\t\t\t\t}\n\n\t\t\t\t\t$plan_redirect_forced.on( 'change', function() {\n\t\t\t\t\t\t$plan_redirect_settings.toggle();\n\t\t\t\t\t} );\n\n\t\t\t\t} else {\n\t\t\t\t\t$plan_redirect_forced.off( 'change' );\n\t\t\t\t\t$plan_redirect_settings.show();\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t$( '#llms-access-plans .llms-access-plan-datepicker' ).datepicker( {\n\t\t\t\tdateFormat: \"mm/dd/yy\"\n\t\t\t} );\n\n\t\t\t// trigger changes on load for all existing plans\n\t\t\t$( '#llms-access-plans [data-controller-id]' ).trigger( 'change' );\n\n\t\t\t// add a new empty plan interface on new plan button click.\n\t\t\t$( '#llms-new-access-plan' ).on( 'click', function() {\n\t\t\t\tself.init_plan();\n\t\t\t\tself.toggle_create_button( 'disable' );\n\t\t\t\tself.toggle_save_button( 'enable' );\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tif ( ! self.has_plan_limit_been_reached() ) {\n\t\t\t\t\t\tself.toggle_create_button( 'enable' );\n\t\t\t\t\t}\n\t\t\t\t}, 500 );\n\t\t\t} );\n\n\t\t\tself.$plans.sortable( {\n\t\t\t\thandle: '.llms-drag-handle',\n\t\t\t\titems: '.llms-access-plan',\n\t\t\t\tstart: function( event, ui ) {\n\t\t\t\t\tself.$plans.addClass( 'dragging' );\n\t\t\t\t},\n\t\t\t\tstop: function( event, ui ) {\n\t\t\t\t\tself.$plans.removeClass( 'dragging' );\n\t\t\t\t\tself.update_plan_orders();\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// bind text entered into the title to the displayed title for fancy fun\n\t\t\tself.$plans.on( 'keyup', 'input.llms-plan-title', function( ) {\n\n\t\t\t\tvar $input = $( this ),\n\t\t\t\t\t$plan = $input.closest( '.llms-access-plan' ),\n\t\t\t\t\t$display = $plan.find( 'span.llms-plan-title' ),\n\t\t\t\t\tval = $input.val(),\n\t\t\t\t\ttitle = ( val ) ? val : $display.attr( 'data-default' );\n\n\t\t\t\t$display.text( title );\n\n\t\t\t} );\n\n\t\t\t// Record that a field has been focused so we can tweak validation to only validate \"edited\" fields.\n\t\t\tself.$plans.on( 'focusin', 'input', function( e, data ) {\n\t\t\t\t$( this ).addClass( 'llms-has-been-focused' );\n\t\t\t} );\n\n\t\t\t// Validate a single input field\n\t\t\tself.$plans.on( 'keyup focusout llms-validate-plan-field', 'input', function( e, data ) {\n\n\t\t\t\tvar $input = $( this );\n\n\t\t\t\tif ( $input[0].checkValidity() ) {\n\t\t\t\t\t$input.removeClass( self.validation_class );\n\t\t\t\t} else {\n\t\t\t\t\t$input.addClass( self.validation_class );\n\t\t\t\t\tif ( 'keyup' === e.type ) {\n\t\t\t\t\t\t$input[0].reportValidity();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( ! data || data.cascade ) {\n\t\t\t\t\t$input.closest( '.llms-access-plan' ).trigger( 'llms-validate-plan', { original_event: e.type } );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\tself.$plans.on( 'llms-validate-plan', '.llms-access-plan', function( e, data ) {\n\n\t\t\t\tdata = data || {};\n\n\t\t\t\tvar $plan = $( this ),\n\t\t\t\t\t// only validate \"edited\" fields during cascading validation from input validations.\n\t\t\t\t\tselector = data.original_event ? 'input.llms-has-been-focused' : 'input';\n\n\t\t\t\t$plan.find( selector ).each( function() {\n\t\t\t\t\t$( this ).trigger( 'llms-validate-plan-field', { cascade: false } );\n\t\t\t\t} );\n\n\t\t\t\tif ( $plan.find( '.' + self.validation_class ).length ) {\n\t\t\t\t\t$plan.addClass( self.validation_class );\n\t\t\t\t} else {\n\t\t\t\t\t$plan.removeClass( self.validation_class );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\tself.$plans.on( 'llms-collapsible-toggled', '.llms-access-plan', function() {\n\n\t\t\t\tvar $plan = $( this );\n\n\t\t\t\tif ( $plan.hasClass( 'opened' ) ) {\n\t\t\t\t\t// wait for animation to complete to prevent focusable errors in the console.\n\t\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t\t$plan.find( 'input.llms-invalid' ).each( function() {\n\t\t\t\t\t\t\t$( this )[0].reportValidity();\n\t\t\t\t\t\t} );\n\t\t\t\t\t}, 500 );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\tself.$plans.on( 'click', '.llms-plan-delete', function( e ) {\n\t\t\t\te.stopPropagation();\n\t\t\t\tself.delete_plan( $( this ) );\n\t\t\t} );\n\n\t\t\t// select2ify membership availability fields\n\t\t\twindow.llms.metaboxes.post_select( $( '#llms-access-plans .llms-availability-restrictions' ) );\n\n\t\t\t// select2ify redirection page fields\n\t\t\twindow.llms.metaboxes.post_select( $( '#llms-access-plans .llms-checkout-redirect-page' ) );\n\n\t\t\t// disable the textarea generated by the wp_editor function\n\t\t\t// can't figure out how to do this during initialization\n\t\t\t$( '#_llms_plans_content_llms-new-access-plan-model' ).attr( 'disabled', 'disabled' );\n\t\t\ttinyMCE.EditorManager.execCommand( 'mceRemoveEditor', true, '_llms_plans_content_llms-new-access-plan-model' );\n\n\t\t};\n\n\t\t/**\n\t\t * Bind DOM events for editing product visibility\n\t\t *\n\t\t * @return void\n\t\t * @since 3.6.0\n\t\t * @version 3.6.0\n\t\t */\n\t\tthis.bind_visibility = function() {\n\n\t\t\tvar $radios = $( '#llms-catalog-visibility-select' ),\n\t\t\t\t$toggle = $( 'a.llms-edit-catalog-visibility' ),\n\t\t\t\t$save = $( 'a.llms-save-catalog-visibility' ),\n\t\t\t\t$cancel = $( 'a.llms-cancel-catalog-visibility' );\n\n\t\t\t$toggle.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$radios.slideDown( 'fast' );\n\t\t\t\t$toggle.hide();\n\t\t\t} );\n\n\t\t\t$save.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$radios.slideUp( 'fast' );\n\t\t\t\t$toggle.show();\n\t\t\t\t$( '#llms-catalog-visibility-display' ).text( $( 'input[name=\"_llms_visibility\"]:checked' ).attr( 'data-label' ) );\n\t\t\t} );\n\n\t\t\t$cancel.on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$radios.slideUp( 'fast' );\n\t\t\t\t$toggle.show();\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Checks whether the access plan requires attention, e.g. because it contains notices.\n\t\t *\n\t\t * And if so adds the class `llms-needs-attention` to the access plan.\n\t\t *\n\t\t * @since 7.3.0\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tthis.requiresAttention = function() {\n\t\t\tvar self = this;\n\t\t\tself.$plans.find( '.llms-access-plan' ).each(\n\t\t\t\tfunction() {\n\t\t\t\t\t$(this).toggleClass( 'llms-needs-attention', $(this).find('p.notice').length > 0 );\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\n\t\t/**\n\t\t * Handle physical deletion of a plan element\n\t\t * If the plan hasn't be persisted to the database it's removed from the dom\n\t\t * if it already exists in the database a confirm modal is displayed\n\t\t * upon confirmation AJAX call will be made to move the plan to the trash\n\t\t * and upon success the element will be removed from the dom\n\t\t *\n\t\t * @param obj $btn jQuery selector of the \"X\" button clicked to initiate deletion\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.29.1\n\t\t */\n\t\tthis.delete_plan = function( $btn ) {\n\n\t\t\tvar self = this,\n\t\t\t\t$plan = $btn.closest( '.llms-access-plan' ),\n\t\t\t\tplan_id = $plan.attr( 'data-id' ),\n\t\t\t\twarning = LLMS.l10n.translate( 'After deleting this access plan, any students subscribed to this plan will still have access and will continue to make recurring payments according to the access plan\\'s settings. If you wish to terminate their plans you must do so manually. This action cannot be reversed.' );\n\n\t\t\t// if there's no ID just remove the element from the DOM\n\t\t\tif ( ! plan_id ) {\n\n\t\t\t\tself.remove_plan_el( $plan );\n\n\t\t\t\t// Throw a confirmation warning\n\t\t\t} else if ( window.confirm( warning ) ) {\n\n\t\t\t\tLLMS.Spinner.start( $plan );\n\t\t\t\twindow.LLMS.Ajax.call( {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taction: 'delete_access_plan',\n\t\t\t\t\t\tplan_id: plan_id,\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function( r ) {\n\t\t\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t\t\tLLMS.Spinner.stop( $plan );\n\t\t\t\t\t\t}, 550 );\n\t\t\t\t\t\tif ( r.success ) {\n\t\t\t\t\t\t\tself.remove_plan_el( $plan );\n\t\t\t\t\t\t\tself.trigger_update_hook();\n\t\t\t\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t\t\t\tself.update_plan_orders();\n\t\t\t\t\t\t\t}, 500 );\n\t\t\t\t\t\t} else if ( r.message ) {\n\t\t\t\t\t\t\talert( r.message );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t};\n\n\t\t/**\n\t\t * Handle hiding & showing various pieces of an access plan form\n\t\t * This is bound to any form element with a \"data-controller-id\" property\n\t\t *\n\t\t * @param obj $el jQuery selector for the changed form element\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t */\n\t\tthis.controller_change = function( $el ) {\n\n\t\t\tvar id = $el.attr( 'data-controller-id' ),\n\t\t\t\tval = $el.val(),\n\t\t\t\t$form = $el.closest( '.llms-access-plan' ),\n\t\t\t\t$controls = $form.find( '[data-controller=\"' + id + '\"]' );\n\n\t\t\tif ( 'checkbox' === $el.attr( 'type' ) ) {\n\t\t\t\tval = ( $el.is( ':checked' ) ) ? val : 'no';\n\t\t\t}\n\n\t\t\t$controls.each( function() {\n\n\t\t\t\tvar $c = $( this ),\n\t\t\t\t\t$els = ( 'SELECT' === $c[0].nodeName || 'INPUT' === $c[0].nodeName || 'TEXTAREA' === $c[0].nodeName ) ? $c : $c.find( 'input, select, textarea' ),\n\t\t\t\t\tequals = $c.attr( 'data-value-is' ),\n\t\t\t\t\tnot_equals = $c.attr( 'data-value-is-not' ),\n\t\t\t\t\taction, operator;\n\n\t\t\t\tif ( typeof equals !== typeof undefined && equals !== false ) {\n\n\t\t\t\t\toperator = '==';\n\n\t\t\t\t} else if ( typeof not_equals !== typeof undefined && not_equals !== false ) {\n\n\t\t\t\t\toperator = '!=';\n\n\t\t\t\t}\n\n\t\t\t\tswitch ( operator ) {\n\n\t\t\t\t\tcase '==':\n\n\t\t\t\t\t\tif ( val == equals ) {\n\t\t\t\t\t\t\taction = 'show';\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\taction = 'hide';\n\t\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase '!=':\n\n\t\t\t\t\t\tif ( val != not_equals ) {\n\t\t\t\t\t\t\taction = 'show';\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\taction = 'hide';\n\t\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\n\t\t\t\t}\n\n\t\t\t\tif ( 'show' === action ) {\n\t\t\t\t\t$c.show();\n\t\t\t\t\t$els.removeAttr( 'disabled' ).trigger( 'change' );\n\t\t\t\t} else if ( 'hide' === action ) {\n\t\t\t\t\t$c.hide();\n\t\t\t\t\t$els.attr( 'disabled', 'disabled' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t};\n\n\t\t/**\n\t\t * Retrieve the current number of access plans for the course / membership (saved or unsaved)\n\t\t *\n\t\t * @return int\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.get_current_plan_count = function() {\n\t\t\treturn this.$plans.find( '.llms-access-plan' ).length;\n\t\t}\n\n\t\t/**\n\t\t * Retrieve access plan data as an array of JSON built from the dom element field values.\n\t\t *\n\t\t * @return array\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.get_plans_array = function() {\n\n\t\t\t// ensure all content editors are saved properly.\n\t\t\ttinyMCE.triggerSave();\n\n\t\t\tvar self = this,\n\t\t\t\tform = self.$plans.closest( 'form' ).serializeArray(),\n\t\t\t\tplans = [];\n\n\t\t\tfor ( var i = 0; i < form.length; i++ ) {\n\n\t\t\t\t// Skip non plan data from the form.\n\t\t\t\tif ( -1 === form[ i ].name.indexOf( '_llms_plans' ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tvar keys = form[ i ].name.replace( '_llms_plans[', '' ).split( '][' ),\n\t\t\t\t\tindex = ( keys[0] * 1 ) - 1,\n\t\t\t\t\tname = keys[1].replace( ']', '' ),\n\t\t\t\t\ttype = 3 === keys.length ? 'array' : 'single';\n\n\t\t\t\tif ( ! plans[ index ] ) {\n\t\t\t\t\tplans[ index ] = {};\n\t\t\t\t}\n\n\t\t\t\tif ( 'array' === type ) {\n\n\t\t\t\t\tif ( ! plans[ index ][ name ] ) {\n\t\t\t\t\t\tplans[ index ][ name ] = [];\n\t\t\t\t\t}\n\t\t\t\t\tplans[ index ][ name ].push( form[ i ].value );\n\n\t\t\t\t} else {\n\n\t\t\t\t\tplans[ index ][ name ] = form[ i ].value;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn plans;\n\n\t\t};\n\n\t\t/**\n\t\t * Determine if the access plan limit has been reached\n\t\t *\n\t\t * @return Boolean\n\t\t * @since 3.0.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.has_plan_limit_been_reached = function() {\n\n\t\t\tvar limit = window.llms.product.access_plan_limit;\n\t\t\treturn this.get_current_plan_count() >= limit;\n\n\t\t};\n\n\t\t/**\n\t\t * Initializes a new plan and adds it to the list of plans in the DOM\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.30.0 Initialize select2 on checkout redirect fields.\n\t\t * @version 3.30.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.init_plan = function() {\n\n\t\t\t// don't do anything if we've reached the plan limit\n\t\t\tif ( this.has_plan_limit_been_reached() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar $clone = $( '#llms-new-access-plan-model' ).clone()\n\t\t\t\t$existing_plans = $( '#llms-access-plans .llms-access-plan' ),\n\t\t\t\t$editor = $clone.find( '#_llms_plans_content_llms-new-access-plan-model' );\n\n\t\t\t// remove ID from the item\n\t\t\t$clone.removeAttr( 'id' );\n\n\t\t\t// give a temporary id to the editor element\n\t\t\t$editor.removeAttr( 'id' ).attr( 'id', '_llms_plans_content_' + this.temp_id );\n\t\t\tthis.temp_id++; // increment the temp_id ID so we don't use it again\n\n\t\t\t// activate all elements\n\t\t\t$clone.find( 'select, input, textarea' ).each( function() {\n\t\t\t\t$( this ).removeAttr( 'disabled' ); // enabled the field\n\t\t\t} );\n\n\t\t\t$clone.find( '.llms-access-plan-datepicker' ).datepicker( {\n\t\t\t\tdateFormat: \"mm/dd/yy\"\n\t\t\t} );\n\n\t\t\t$clone.appendTo( '#llms-access-plans' );\n\n\t\t\t// rewrite the order of all elements\n\t\t\tthis.update_plan_orders();\n\n\t\t\t$clone.find( '.llms-collapsible-header' ).trigger( 'click' );\n\n\t\t\t// check if the limit has been reached and toggle the button if it has\n\t\t\tif ( this.has_plan_limit_been_reached() ) {\n\t\t\t\tthis.toggle_create_button( 'disable' );\n\t\t\t}\n\n\t\t\t// select2ify membership availability field\n\t\t\twindow.llms.metaboxes.post_select( $clone.find( '.llms-availability-restrictions' ) );\n\n\t\t\t// select2ify redirection page fields\n\t\t\twindow.llms.metaboxes.post_select( $clone.find( '.llms-checkout-redirect-page' ) );\n\n\t\t\t$clone.find( '[data-controller-id]' ).trigger( 'change' );\n\t\t\t$( document ).trigger( 'llms-plan-init', $clone );\n\n\t\t};\n\n\t\t/**\n\t\t * Persist access plans to the DB if they pass validation\n\t\t *\n\t\t * @since 3.29.0\n\t\t * @since 3.30.3 Fixed typo in error message.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.save_plans = function() {\n\n\t\t\tvar self = this;\n\n\t\t\tself.$plans.find( '.llms-access-plan' ).not( '#llms-new-access-plan-model' ).each( function() {\n\t\t\t\t$( this ).trigger( 'llms-validate-plan' );\n\t\t\t} );\n\n\t\t\tif ( self.$plans.find( '.' + self.validation_class ).length ) {\n\t\t\t\tself.$plans.find( '.llms-access-plan.' + self.validation_class ).not( '.opened' ).first().find( '.llms-collapsible-header' ).trigger( 'click' );\n\t\t\t\t$( document ).trigger( 'llms-access-plan-validation-errors' );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tLLMS.Spinner.start( self.$plans );\n\t\t\tself.$save.attr( 'disabled', 'disabled' );\n\t\t\twindow.LLMS.Ajax.call( {\n\t\t\t\tdata: {\n\t\t\t\t\taction: 'llms_update_access_plans',\n\t\t\t\t\tplans: self.get_plans_array(),\n\t\t\t\t},\n\t\t\t\tcomplete: function() {\n\t\t\t\t\tLLMS.Spinner.stop( self.$plans );\n\t\t\t\t\tself.$save.removeAttr( 'disabled' );\n\t\t\t\t},\n\t\t\t\terror: function( jqXHR, textStatus, errorThrown ) {\n\t\t\t\t\tconsole.error( 'llms access plan save error encounterd:', jqXHR );\n\t\t\t\t\talert( LLMS.l10n.translate( 'An error was encountered during the save attempt. Please try again.' ) + ' [' + textStatus + ': ' + errorThrown + ']' );\n\t\t\t\t},\n\t\t\t\tsuccess: function( res ) {\n\n\t\t\t\t\tif ( ! res.success && res.code && 'error' === res.code ) {\n\t\t\t\t\t\talert( res.message );\n\t\t\t\t\t} else if ( res.data && res.data.html ) {\n\n\t\t\t\t\t\t// replace the metabox with updated data from the server.\n\t\t\t\t\t\t$( '#llms-product-options-access-plans' ).replaceWith( res.data.html );\n\n\t\t\t\t\t\t// reinit.\n\t\t\t\t\t\tself.init( true );\n\t\t\t\t\t\twindow.llms.metaboxes.init();\n\t\t\t\t\t\tself.update_plan_orders();\n\n\t\t\t\t\t\t// notify the block editor\n\t\t\t\t\t\tself.trigger_update_hook();\n\n\t\t\t\t\t}\n\n\t\t\t\t},\n\n\t\t\t} );\n\t\t};\n\n\t\t/**\n\t\t * Toggle the status of a button\n\t\t *\n\t\t * @param Object $btn jQuery selector of a button element\n\t\t * @param string status enable or disable\n\t\t * @return void\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.toggle_button = function( $btn, status ) {\n\n\t\t\tif ( 'disable' === status ) {\n\t\t\t\t$btn.attr( 'disabled', 'disabled' );\n\t\t\t} else {\n\t\t\t\t$btn.removeAttr( 'disabled' );\n\t\t\t}\n\n\t\t};\n\n\t\t/**\n\t\t * Control the status of the \"New Access Plan\" Button\n\t\t *\n\t\t * @param string status enable or disable\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @since 3.29.0\n\t\t */\n\t\tthis.toggle_create_button = function( status ) {\n\t\t\tthis.toggle_button( $( '#llms-new-access-plan' ), status );\n\t\t};\n\n\t\t/**\n\t\t * Control the status of the \"Save Access Plans\" Button\n\t\t *\n\t\t * @param string status enable or disable\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @since 3.29.0\n\t\t */\n\t\tthis.toggle_save_button = function( status ) {\n\t\t\tthis.toggle_button( this.$save, status );\n\t\t}\n\n\t\t/**\n\t\t * Visually hide and then physically remove a plan element from the DOM\n\t\t * Additionally determines if the New Plan Button should be re-enabled\n\t\t * after deletion\n\t\t *\n\t\t * @param obj $plan jQuery selector of the plan element\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.remove_plan_el = function( $plan ) {\n\n\t\t\tvar self = this;\n\n\t\t\t// fade out nicely\n\t\t\t$plan.fadeOut( 400 );\n\n\t\t\t// remove from dom after it's hidden visually\n\t\t\tsetTimeout(function() {\n\n\t\t\t\t$plan.remove();\n\n\t\t\t\t// check if we need to reenable the create button and hide the message\n\t\t\t\tif ( ! self.has_plan_limit_been_reached() ) {\n\t\t\t\t\tself.toggle_create_button( 'enable' );\n\t\t\t\t}\n\n\t\t\t\tif ( 0 === self.get_current_plan_count() ) {\n\t\t\t\t\tself.toggle_save_button( 'disable' );\n\t\t\t\t}\n\n\t\t\t}, 450 );\n\n\t\t};\n\n\t\t/**\n\t\t * Trigger WP Block Editor hook so the pricing table block can be re-rendered with new plan information.\n\t\t *\n\t\t * @return void\n\t\t * @since 3.29.0\n\t\t * @version 3.29.0\n\t\t */\n\t\tthis.trigger_update_hook = function() {\n\n\t\t\t$( document ).trigger( 'llms-access-plans-updated' );\n\n\t\t};\n\n\t\t/**\n\t\t * Reorder the array indexes and the menu order hidden inputs.\n\t\t * Called by jQuery UI Sortable on sort completion.\n\t\t * Also called after adding a new plan to the DOM so the newest item is always\n\t\t * persisted as the last in the database if no UX reorders the item.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.36.3 Fixed conflicts with the classic editor block.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.update_plan_orders = function() {\n\n\t\t\t$( '#llms-access-plans .llms-access-plan' ).each( function() {\n\n\t\t\t\tvar $p = $( this ),\n\t\t\t\t\t$order = $p.find( '.plan-order' ),\n\t\t\t\t\t$editor = $p.find( 'textarea[id^=\"_llms_plans_content_\"]' ),\n\t\t\t\t\teditor_id = $editor.attr( 'id' ),\n\t\t\t\t\torig = $order.val() * 1,\n\t\t\t\t\tcurr = $p.index(),\n\t\t\t\t\teditor = tinyMCE.EditorManager.get(editor_id),\n\t\t\t\t\tesettings = editor ? editor.settings : tinyMCE.EditorManager.settings;\n\n\t\t\t\t// make sure the editor settings have the right selector.\n\t\t\t\tesettings.selector = '#' + editor_id;\n\n\t\t\t\t// de-init tinyMCE from the editor.\n\t\t\t\ttinyMCE.EditorManager.execCommand( 'mceRemoveEditor', true, editor_id );\n\n\t\t\t\t// update the order of each field in the plan.\n\t\t\t\t$p.find( 'select, input, textarea' ).each( function() {\n\n\t\t\t\t\tvar name = $( this ).attr( 'name' );\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\t$( this ).attr( 'name', name.replace( orig, curr ) );\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t// re-init tinyMCE on the editor.\n\t\t\t\t// We used:\ttinyMCE.EditorManager.execCommand( 'mceAddEditor', true, editor_id );\n\t\t\t\t// but it turned out to create conflicts with the Classic Editor block.\n\t\t\t\ttinyMCE.EditorManager.init( esettings );\n\n\t\t\t\t$order.val( curr );\n\n\t\t\t} );\n\n\t\t};\n\n\t\t// go\n\t\tthis.init();\n\n\t};\n\n\tvar a = new window.llms.metabox_product();\n\n} )( jQuery );\n"],"names":["$","window","llms","metabox_product","this","$plans","$save","temp_id","Math","floor","random","validation_class","init","skip_dep_checks","counter","interval","self","$mb","bind_visibility","length","requiresAttention","bind","LLMS","Spinner","start","setInterval","html","l10n","translate","tinyMCE","clearInterval","stop","setTimeout","has_plan_limit_been_reached","toggle_create_button","get_current_plan_count","toggle_save_button","on","e","preventDefault","save_plans","controller_change","$plan_container","closest","$plan_redirect_forced","find","$plan_redirect_settings","val","prop","show","hide","toggle","off","datepicker","dateFormat","trigger","init_plan","sortable","handle","items","event","ui","addClass","removeClass","update_plan_orders","$input","$display","title","attr","text","data","checkValidity","type","reportValidity","cascade","original_event","$plan","selector","each","hasClass","stopPropagation","delete_plan","metaboxes","post_select","EditorManager","execCommand","$radios","$toggle","$cancel","slideDown","slideUp","toggleClass","$btn","plan_id","warning","confirm","Ajax","call","action","success","r","remove_plan_el","trigger_update_hook","message","alert","$el","id","$controls","is","operator","$c","$els","nodeName","equals","not_equals","removeAttr","get_plans_array","triggerSave","index","name","form","serializeArray","plans","i","indexOf","keys","replace","split","push","value","limit","product","access_plan_limit","$clone","clone","$existing_plans","$editor","appendTo","document","not","first","complete","error","jqXHR","textStatus","errorThrown","console","res","code","replaceWith","toggle_button","status","fadeOut","remove","$p","$order","editor_id","orig","curr","editor","get","esettings","settings","jQuery"],"mappings":"AAUA,CAAA,SAAYA,GAEXC,OAAOC,KAAOD,OAAOC,MAAQ,GAE7BD,OAAOC,KAAKC,gBAAkB,WAO7BC,KAAKC,OAAS,KAOdD,KAAKE,MAAQ,KAQbF,KAAKG,QAAUC,KAAKC,MAAyB,KAAhBD,KAAKE,OAAO,EAAa,GAAI,EAO1DN,KAAKO,iBAAmB,eAaxBP,KAAKQ,KAAO,SAAUC,GAErB,IAyBIC,EAGJC,EA5BIC,EAAOZ,KAOPa,GALJD,EAAKX,OAASL,EAAG,oBAAqB,EACtCgB,EAAKV,MAASN,EAAG,yBAA0B,EAE3CgB,EAAKE,gBAAgB,EAEXlB,EAAG,uDAAwD,GAE9DiB,EAAIE,SAKXH,EAAKI,kBAAkB,EAElBP,EACJG,EAAKK,KAAK,GAIXC,KAAKC,QAAQC,MAAOP,CAAI,EAIpBH,EAAU,EAGdC,EAAWU,YAAa,WAGvB,GAAgB,KAAXX,EAEJG,EAAIS,KAAMJ,KAAKK,KAAKC,UAAW,uEAAwE,CAAE,MAIrG,CAAA,GAAK,aAAgB,OAAOC,QAGhC,OADAf,KAAAA,CAAO,GAOPE,EAAKK,KAAK,CAEX,CAEAS,cAAef,CAAS,EACxBO,KAAKC,QAAQQ,KAAMd,CAAI,CAExB,EAAG,GAAI,GAER,EAUAb,KAAKiB,KAAO,WAEX,IAAIL,EAAOZ,KAEX4B,WAAY,WACNhB,EAAKiB,4BAA4B,GACrCjB,EAAKkB,qBAAsB,SAAU,CAEvC,EAAG,GAAI,EAEF,IAAMlB,EAAKmB,uBAAuB,GACtCnB,EAAKoB,mBAAoB,SAAU,EAIpCpB,EAAKV,MAAM+B,GAAI,QAAS,SAAUC,GACjCA,EAAEC,eAAe,EACjBvB,EAAKwB,WAAW,CACjB,CAAE,EAGFxB,EAAKX,OAAOgC,GAAI,SAAU,uBAAwB,WACjDrB,EAAKyB,kBAAmBzC,EAAGI,IAAK,CAAE,CACnC,CAAE,EAGFY,EAAKX,OAAOgC,GAAI,SAAU,iCAAkC,WAC3D,IAAIK,EAA0B1C,EAAGI,IAAK,EAAEuC,QAAS,mBAAoB,EACpEC,EAA0BF,EAAgBG,KAAM,2CAA4C,EAC5FC,EAA0BJ,EAAgBG,KAAM,kCAAmC,EAE/E,YAAc7C,EAAGI,IAAK,EAAE2C,IAAI,GACzBH,EAAsBI,KAAM,SAAU,EAG5CF,EAAwBG,KAAK,EAF7BH,EAAwBI,KAAK,EAK9BN,EAAsBP,GAAI,SAAU,WACnCS,EAAwBK,OAAO,CAChC,CAAE,IAGFP,EAAsBQ,IAAK,QAAS,EACpCN,EAAwBG,KAAK,EAG/B,CAAE,EAEFjD,EAAG,iDAAkD,EAAEqD,WAAY,CAClEC,WAAY,UACb,CAAE,EAGFtD,EAAG,yCAA0C,EAAEuD,QAAS,QAAS,EAGjEvD,EAAG,uBAAwB,EAAEqC,GAAI,QAAS,WACzCrB,EAAKwC,UAAU,EACfxC,EAAKkB,qBAAsB,SAAU,EACrClB,EAAKoB,mBAAoB,QAAS,EAClCJ,WAAY,WACJhB,EAAKiB,4BAA4B,GACvCjB,EAAKkB,qBAAsB,QAAS,CAEtC,EAAG,GAAI,CACR,CAAE,EAEFlB,EAAKX,OAAOoD,SAAU,CACrBC,OAAQ,oBACRC,MAAO,oBACPnC,MAAO,SAAUoC,EAAOC,GACvB7C,EAAKX,OAAOyD,SAAU,UAAW,CAClC,EACA/B,KAAM,SAAU6B,EAAOC,GACtB7C,EAAKX,OAAO0D,YAAa,UAAW,EACpC/C,EAAKgD,mBAAmB,CACzB,CACD,CAAE,EAGFhD,EAAKX,OAAOgC,GAAI,QAAS,wBAAyB,WAEjD,IAAI4B,EAAWjE,EAAGI,IAAK,EAEtB8D,EADWD,EAAOtB,QAAS,mBAAoB,EAC9BE,KAAM,sBAAuB,EAC9CE,EAAWkB,EAAOlB,IAAI,EACtBoB,EAAW,GAAgBD,EAASE,KAAM,cAAe,EAE1DF,EAASG,KAAMF,CAAM,CAEtB,CAAE,EAGFnD,EAAKX,OAAOgC,GAAI,UAAW,QAAS,SAAUC,EAAGgC,GAChDtE,EAAGI,IAAK,EAAE0D,SAAU,uBAAwB,CAC7C,CAAE,EAGF9C,EAAKX,OAAOgC,GAAI,0CAA2C,QAAS,SAAUC,EAAGgC,GAEhF,IAAIL,EAASjE,EAAGI,IAAK,EAEhB6D,EAAO,GAAGM,cAAc,EAC5BN,EAAOF,YAAa/C,EAAKL,gBAAiB,GAE1CsD,EAAOH,SAAU9C,EAAKL,gBAAiB,EAClC,UAAY2B,EAAEkC,MAClBP,EAAO,GAAGQ,eAAe,GAIpBH,GAAQA,CAAAA,EAAKI,SACnBT,EAAOtB,QAAS,mBAAoB,EAAEY,QAAS,qBAAsB,CAAEoB,eAAgBrC,EAAEkC,IAAK,CAAE,CAGlG,CAAE,EAEFxD,EAAKX,OAAOgC,GAAI,qBAAsB,oBAAqB,SAAUC,EAAGgC,GAEvEA,EAAOA,GAAQ,GAEf,IAAIM,EAAQ5E,EAAGI,IAAK,EAEnByE,EAAWP,EAAKK,eAAiB,8BAAgC,QAElEC,EAAM/B,KAAMgC,CAAS,EAAEC,KAAM,WAC5B9E,EAAGI,IAAK,EAAEmD,QAAS,2BAA4B,CAAEmB,QAAS,CAAA,CAAM,CAAE,CACnE,CAAE,EAEGE,EAAM/B,KAAM,IAAM7B,EAAKL,gBAAiB,EAAEQ,OAC9CyD,EAAMd,SAAU9C,EAAKL,gBAAiB,EAEtCiE,EAAMb,YAAa/C,EAAKL,gBAAiB,CAG3C,CAAE,EAEFK,EAAKX,OAAOgC,GAAI,2BAA4B,oBAAqB,WAEhE,IAAIuC,EAAQ5E,EAAGI,IAAK,EAEfwE,EAAMG,SAAU,QAAS,GAE7B/C,WAAY,WACX4C,EAAM/B,KAAM,oBAAqB,EAAEiC,KAAM,WACxC9E,EAAGI,IAAK,EAAE,GAAGqE,eAAe,CAC7B,CAAE,CACH,EAAG,GAAI,CAGT,CAAE,EAEFzD,EAAKX,OAAOgC,GAAI,QAAS,oBAAqB,SAAUC,GACvDA,EAAE0C,gBAAgB,EAClBhE,EAAKiE,YAAajF,EAAGI,IAAK,CAAE,CAC7B,CAAE,EAGFH,OAAOC,KAAKgF,UAAUC,YAAanF,EAAG,oDAAqD,CAAE,EAG7FC,OAAOC,KAAKgF,UAAUC,YAAanF,EAAG,iDAAkD,CAAE,EAI1FA,EAAG,iDAAkD,EAAEoE,KAAM,WAAY,UAAW,EACpFvC,QAAQuD,cAAcC,YAAa,kBAAmB,CAAA,EAAM,gDAAiD,CAE9G,EASAjF,KAAKc,gBAAkB,WAEtB,IAAIoE,EAAUtF,EAAG,iCAAkC,EAClDuF,EAAUvF,EAAG,gCAAiC,EAC9CM,EAAUN,EAAG,gCAAiC,EAC9CwF,EAAUxF,EAAG,kCAAmC,EAEjDuF,EAAQlD,GAAI,QAAS,SAAUC,GAC9BA,EAAEC,eAAe,EACjB+C,EAAQG,UAAW,MAAO,EAC1BF,EAAQrC,KAAK,CACd,CAAE,EAEF5C,EAAM+B,GAAI,QAAS,SAAUC,GAC5BA,EAAEC,eAAe,EACjB+C,EAAQI,QAAS,MAAO,EACxBH,EAAQtC,KAAK,EACbjD,EAAG,kCAAmC,EAAEqE,KAAMrE,EAAG,wCAAyC,EAAEoE,KAAM,YAAa,CAAE,CAClH,CAAE,EAEFoB,EAAQnD,GAAI,QAAS,SAAUC,GAC9BA,EAAEC,eAAe,EACjB+C,EAAQI,QAAS,MAAO,EACxBH,EAAQtC,KAAK,CACd,CAAE,CAEH,EAWA7C,KAAKgB,kBAAoB,WACbhB,KACNC,OAAOwC,KAAM,mBAAoB,EAAEiC,KACvC,WACC9E,EAAEI,IAAI,EAAEuF,YAAa,uBAA0D,EAAlC3F,EAAEI,IAAI,EAAEyC,KAAK,UAAU,EAAE1B,MAAW,CAClF,CACD,CACD,EAcAf,KAAK6E,YAAc,SAAUW,GAE5B,IAAI5E,EAAUZ,KACbwE,EAAUgB,EAAKjD,QAAS,mBAAoB,EAC5CkD,EAAUjB,EAAMR,KAAM,SAAU,EAChC0B,EAAUxE,KAAKK,KAAKC,UAAW,kRAAoR,EAG7SiE,EAKK5F,OAAO8F,QAASD,CAAQ,IAEnCxE,KAAKC,QAAQC,MAAOoD,CAAM,EAC1B3E,OAAOqB,KAAK0E,KAAKC,KAAM,CACtB3B,KAAM,CACL4B,OAAQ,qBACRL,QAASA,CACV,EACAM,QAAS,SAAUC,GAClBpE,WAAY,WACXV,KAAKC,QAAQQ,KAAM6C,CAAM,CAC1B,EAAG,GAAI,EACFwB,EAAED,SACNnF,EAAKqF,eAAgBzB,CAAM,EAC3B5D,EAAKsF,oBAAoB,EACzBtE,WAAY,WACXhB,EAAKgD,mBAAmB,CACzB,EAAG,GAAI,GACIoC,EAAEG,SACbC,MAAOJ,EAAEG,OAAQ,CAEnB,CAED,CAAE,GA1BFvF,EAAKqF,eAAgBzB,CAAM,CA8B7B,EAUAxE,KAAKqC,kBAAoB,SAAUgE,GAElC,IAAIC,EAAYD,EAAIrC,KAAM,oBAAqB,EAC9CrB,EAAY0D,EAAI1D,IAAI,EAEpB4D,EADYF,EAAI9D,QAAS,mBAAoB,EAC3BE,KAAM,qBAAuB6D,EAAK,IAAK,EAErD,aAAeD,EAAIrC,KAAM,MAAO,IACpCrB,EAAQ0D,EAAIG,GAAI,UAAa,EAAI7D,EAAM,MAGxC4D,EAAU7B,KAAM,WAEf,IAICoB,EAAQW,EAJLC,EAAa9G,EAAGI,IAAK,EACxB2G,EAAe,WAAaD,EAAG,GAAGE,UAAY,UAAYF,EAAG,GAAGE,UAAY,aAAeF,EAAG,GAAGE,SAAaF,EAAKA,EAAGjE,KAAM,yBAA0B,EACtJoE,EAAaH,EAAG1C,KAAM,eAAgB,EACtC8C,EAAaJ,EAAG1C,KAAM,mBAAoB,EAa3C,OAVuB,KAAA,IAAX6C,GAA0C,CAAA,IAAXA,EAE1CJ,EAAW,KAEsB,KAAA,IAAfK,GAAkD,CAAA,IAAfA,IAErDL,EAAW,MAIHA,GAER,IAAK,KAGHX,EADInD,GAAOkE,EACF,OAEA,OAGX,MAEA,IAAK,KAGHf,EADInD,GAAOmE,EACF,OAEA,MAKZ,CAEK,SAAWhB,GACfY,EAAG7D,KAAK,EACR8D,EAAKI,WAAY,UAAW,EAAE5D,QAAS,QAAS,GACrC,SAAW2C,IACtBY,EAAG5D,KAAK,EACR6D,EAAK3C,KAAM,WAAY,UAAW,EAGpC,CAAE,CAEH,EASAhE,KAAK+B,uBAAyB,WAC7B,OAAO/B,KAAKC,OAAOwC,KAAM,mBAAoB,EAAE1B,MAChD,EASAf,KAAKgH,gBAAkB,WAGtBvF,QAAQwF,YAAY,EAMpB,IAJA,IAYEC,EACAC,EACA/C,EAbDgD,EADWpH,KACEC,OAAOsC,QAAS,MAAO,EAAE8E,eAAe,EACrDC,EAAQ,GAECC,EAAI,EAAGA,EAAIH,EAAKrG,OAAQwG,CAAC,GAG7B,CAAC,IAAMH,EAAMG,GAAIJ,KAAKK,QAAS,aAAc,IAKjDN,EAAQ,EADLO,EAAQL,EAAMG,GAAIJ,KAAKO,QAAS,eAAgB,EAAG,EAAEC,MAAO,IAAK,GACrD,GAAW,EAC1BR,EAAQM,EAAK,GAAGC,QAAS,IAAK,EAAG,EACjCtD,EAAQ,IAAMqD,EAAK1G,OAAS,QAAU,SAEhCuG,EAAOJ,KACbI,EAAOJ,GAAU,IAGb,SAAY9C,GAETkD,EAAOJ,GAASC,KACtBG,EAAOJ,GAASC,GAAS,IAE1BG,EAAOJ,GAASC,GAAOS,KAAMR,EAAMG,GAAIM,KAAM,GAI7CP,EAAOJ,GAASC,GAASC,EAAMG,GAAIM,OAMrC,OAAOP,CAER,EASAtH,KAAK6B,4BAA8B,WAElC,IAAIiG,EAAQjI,OAAOC,KAAKiI,QAAQC,kBAChC,OAAOhI,KAAK+B,uBAAuB,GAAK+F,CAEzC,EAWA9H,KAAKoD,UAAY,WAGhB,IAII6E,EAJCjI,KAAK6B,4BAA4B,IAIlCoG,EAAkBrI,EAAG,6BAA8B,EAAEsI,MAAM,EAC9DC,gBAAkBvI,EAAG,sCAAuC,EAC5DwI,QAAkBH,EAAOxF,KAAM,iDAAkD,EAGlFwF,EAAOlB,WAAY,IAAK,EAGxBqB,QAAQrB,WAAY,IAAK,EAAE/C,KAAM,KAAM,uBAAyBhE,KAAKG,OAAQ,EAC7EH,KAAKG,OAAO,GAGZ8H,EAAOxF,KAAM,yBAA0B,EAAEiC,KAAM,WAC9C9E,EAAGI,IAAK,EAAE+G,WAAY,UAAW,CAClC,CAAE,EAEFkB,EAAOxF,KAAM,8BAA+B,EAAEQ,WAAY,CACzDC,WAAY,UACb,CAAE,EAEF+E,EAAOI,SAAU,oBAAqB,EAGtCrI,KAAK4D,mBAAmB,EAExBqE,EAAOxF,KAAM,0BAA2B,EAAEU,QAAS,OAAQ,EAGtDnD,KAAK6B,4BAA4B,GACrC7B,KAAK8B,qBAAsB,SAAU,EAItCjC,OAAOC,KAAKgF,UAAUC,YAAakD,EAAOxF,KAAM,iCAAkC,CAAE,EAGpF5C,OAAOC,KAAKgF,UAAUC,YAAakD,EAAOxF,KAAM,8BAA+B,CAAE,EAEjFwF,EAAOxF,KAAM,sBAAuB,EAAEU,QAAS,QAAS,EACxDvD,EAAG0I,QAAS,EAAEnF,QAAS,iBAAkB8E,CAAO,EAEjD,EAUAjI,KAAKoC,WAAa,WAEjB,IAAIxB,EAAOZ,KAEXY,EAAKX,OAAOwC,KAAM,mBAAoB,EAAE8F,IAAK,6BAA8B,EAAE7D,KAAM,WAClF9E,EAAGI,IAAK,EAAEmD,QAAS,oBAAqB,CACzC,CAAE,EAEGvC,EAAKX,OAAOwC,KAAM,IAAM7B,EAAKL,gBAAiB,EAAEQ,QACpDH,EAAKX,OAAOwC,KAAM,qBAAuB7B,EAAKL,gBAAiB,EAAEgI,IAAK,SAAU,EAAEC,MAAM,EAAE/F,KAAM,0BAA2B,EAAEU,QAAS,OAAQ,EAC9IvD,EAAG0I,QAAS,EAAEnF,QAAS,oCAAqC,IAI7DjC,KAAKC,QAAQC,MAAOR,EAAKX,MAAO,EAChCW,EAAKV,MAAM8D,KAAM,WAAY,UAAW,EACxCnE,OAAOqB,KAAK0E,KAAKC,KAAM,CACtB3B,KAAM,CACL4B,OAAQ,2BACRwB,MAAO1G,EAAKoG,gBAAgB,CAC7B,EACAyB,SAAU,WACTvH,KAAKC,QAAQQ,KAAMf,EAAKX,MAAO,EAC/BW,EAAKV,MAAM6G,WAAY,UAAW,CACnC,EACA2B,MAAO,SAAUC,EAAOC,EAAYC,GACnCC,QAAQJ,MAAO,0CAA2CC,CAAM,EAChEvC,MAAOlF,KAAKK,KAAKC,UAAW,qEAAsE,EAAI,KAAOoH,EAAa,KAAOC,EAAc,GAAI,CACpJ,EACA9C,QAAS,SAAUgD,GAEb,CAAEA,EAAIhD,SAAWgD,EAAIC,MAAQ,UAAYD,EAAIC,KACjD5C,MAAO2C,EAAI5C,OAAQ,EACR4C,EAAI7E,MAAQ6E,EAAI7E,KAAK5C,OAGhC1B,EAAG,oCAAqC,EAAEqJ,YAAaF,EAAI7E,KAAK5C,IAAK,EAGrEV,EAAKJ,KAAM,CAAA,CAAK,EAChBX,OAAOC,KAAKgF,UAAUtE,KAAK,EAC3BI,EAAKgD,mBAAmB,EAGxBhD,EAAKsF,oBAAoB,EAI3B,CAED,CAAE,EACH,EAWAlG,KAAKkJ,cAAgB,SAAU1D,EAAM2D,GAE/B,YAAcA,EAClB3D,EAAKxB,KAAM,WAAY,UAAW,EAElCwB,EAAKuB,WAAY,UAAW,CAG9B,EAUA/G,KAAK8B,qBAAuB,SAAUqH,GACrCnJ,KAAKkJ,cAAetJ,EAAG,uBAAwB,EAAGuJ,CAAO,CAC1D,EAUAnJ,KAAKgC,mBAAqB,SAAUmH,GACnCnJ,KAAKkJ,cAAelJ,KAAKE,MAAOiJ,CAAO,CACxC,EAYAnJ,KAAKiG,eAAiB,SAAUzB,GAE/B,IAAI5D,EAAOZ,KAGXwE,EAAM4E,QAAS,GAAI,EAGnBxH,WAAW,WAEV4C,EAAM6E,OAAO,EAGNzI,EAAKiB,4BAA4B,GACvCjB,EAAKkB,qBAAsB,QAAS,EAGhC,IAAMlB,EAAKmB,uBAAuB,GACtCnB,EAAKoB,mBAAoB,SAAU,CAGrC,EAAG,GAAI,CAER,EASAhC,KAAKkG,oBAAsB,WAE1BtG,EAAG0I,QAAS,EAAEnF,QAAS,2BAA4B,CAEpD,EAaAnD,KAAK4D,mBAAqB,WAEzBhE,EAAG,sCAAuC,EAAE8E,KAAM,WAEjD,IAAI4E,EAAY1J,EAAGI,IAAK,EACvBuJ,EAAYD,EAAG7G,KAAM,aAAc,EAEnC+G,EADYF,EAAG7G,KAAM,sCAAuC,EACxCuB,KAAM,IAAK,EAC/ByF,EAAYF,CAAAA,EAAO5G,IAAI,EACvB+G,EAAYJ,EAAGpC,MAAM,EACrByC,EAAYlI,QAAQuD,cAAc4E,IAAIJ,CAAS,EAC/CK,GAAYF,GAA2BlI,QAAQuD,eAAnB8E,SAG7BD,EAAUpF,SAAW,IAAM+E,EAG3B/H,QAAQuD,cAAcC,YAAa,kBAAmB,CAAA,EAAMuE,CAAU,EAGtEF,EAAG7G,KAAM,yBAA0B,EAAEiC,KAAM,WAE1C,IAAIyC,EAAOvH,EAAGI,IAAK,EAAEgE,KAAM,MAAO,EAC7BmD,GACJvH,EAAGI,IAAK,EAAEgE,KAAM,OAAQmD,EAAKO,QAAS+B,EAAMC,CAAK,CAAE,CAGrD,CAAE,EAKFjI,QAAQuD,cAAcxE,KAAMqJ,CAAU,EAEtCN,EAAO5G,IAAK+G,CAAK,CAElB,CAAE,CAEH,EAGA1J,KAAKQ,KAAK,CAEX,EAEQ,IAAIX,OAAOC,KAAKC,eAEvB,EAAGgK,MAAO","sourceRoot":"../../js"} \ No newline at end of file diff --git a/assets/maps/js/llms.js.map b/assets/maps/js/llms.js.map index 8d835ddc4f..c6eebcf5e0 100644 --- a/assets/maps/js/llms.js.map +++ b/assets/maps/js/llms.js.map @@ -1 +1 @@ -{"version":3,"sources":["llms.js"],"names":[],"mappings":";;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"../../js/llms.js","sourcesContent":["/**\n * Main LLMS Namespace\n *\n * @since 1.0.0\n * @version 5.3.3\n */\n\nvar LLMS = window.LLMS || {};\n( function( $ ){\n\n\t'use strict';\n\n\t/**\n\t * Load all app modules\n\t */\n\t/**\n\t * Front End Achievements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.14.0\n\t * @version 6.10.2\n\t */\n\t\n\tLLMS.Achievements = {\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 4.5.1 Fix conditional loading check.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-achievement' ).length ) {\n\t\n\t\t\t\tvar self = this;\n\t\n\t\t\t\t$( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t\tself.maybe_open();\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t$( '.llms-achievement' ).each( function() {\n\t\n\t\t\t\tself.create_modal( $( this ) );\n\t\n\t\t\t} );\n\t\n\t\t\t$( '.llms-achievement' ).on( 'click', function() {\n\t\n\t\t\t\tvar $this = $( this ),\n\t\t\t\t\tid = 'achievement-' + $this.attr( 'data-id' ),\n\t\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\t\tif ( ! $modal.length ) {\n\t\t\t\t\tself.create_modal( $this );\n\t\t\t\t}\n\t\n\t\t\t\t$modal.iziModal( 'open' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Creates modal a modal for an achievement\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @param obj $el The jQuery selector for the modal card.\n\t\t * @return {void}\n\t\t */\n\t\tcreate_modal: function( $el ) {\n\t\n\t\t\tvar id = 'achievement-' + $el.attr( 'data-id' ),\n\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\tif ( ! $modal.length ) {\n\t\t\t\t$modal = $( '
    ' );\n\t\t\t\t$( 'body' ).append( $modal );\n\t\t\t}\n\t\n\t\t\t$modal.iziModal( {\n\t\t\t\theaderColor: '#3a3a3a',\n\t\t\t\tgroup: 'achievements',\n\t\t\t\thistory: true,\n\t\t\t\tloop: true,\n\t\t\t\toverlayColor: 'rgba( 0, 0, 0, 0.6 )',\n\t\t\t\ttransitionIn: 'fadeInDown',\n\t\t\t\ttransitionOut: 'fadeOutDown',\n\t\t\t\twidth: 340,\n\t\t\t\tonOpening: function( modal ) {\n\t\n\t\t\t\t\tmodal.setTitle( $el.find( '.llms-achievement-title' ).html() );\n\t\t\t\t\tmodal.setSubtitle( $el.find( '.llms-achievement-date' ).html() );\n\t\t\t\t\tmodal.setContent( '
    ' + $el.html() + '
    ' );\n\t\n\t\t\t\t},\n\t\n\t\t\t\tonClosing: function() {\n\t\t\t\t\twindow.history.pushState( '', document.title, window.location.pathname + window.location.search );\n\t\t\t\t},\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * On page load, opens a modal if the URL contains an achievement in the location hash\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 6.10.2 Sanitize achievement IDs before using window.location.hash to trigger the modal open.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tmaybe_open: function() {\n\t\n\t\t\tlet hash = window.location.hash.split( '-' );\n\t\t\tif ( 2 !== hash.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\thash[1] = parseInt( hash[1] );\n\t\t\tif ( '#achievement-' !== hash[0] || ! Number.isInteger( hash[1] ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tconst a = document.querySelector( `a[href=\"${ hash.join( '-' ) }\"]` )\n\t\t\tif ( ! a ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\ta.click();\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Main Ajax class\n\t * Handles Primary Ajax connection\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Ajax = {\n\t\n\t\t/**\n\t\t * Url\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\turl: window.ajaxurl || window.llms.ajaxurl,\n\t\n\t\t/**\n\t\t * Type\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\ttype: 'post',\n\t\n\t\t/**\n\t\t * Data\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tdata: [],\n\t\n\t\t/**\n\t\t * Cache\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tcache: false,\n\t\n\t\t/**\n\t\t * DataType\n\t\t * defaulted to json\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tdataType: 'json',\n\t\n\t\t/**\n\t\t * Async\n\t\t * default to false\n\t\t *\n\t\t * @type {Boolean}\n\t\t */\n\t\tasync: true,\n\t\n\t\tresponse:[],\n\t\n\t\t/**\n\t\t * Initialize Ajax methods\n\t\t *\n\t\t * @since Unknown\n\t\t * @since 4.4.0 Update ajax nonce source.\n\t\t *\n\t\t * @param {Object} obj Options object.\n\t\t * @return {Object}\n\t\t */\n\t\tinit: function( obj ) {\n\t\n\t\t\t// If obj is not of type object or null return false.\n\t\t\tif ( obj === null || typeof obj !== 'object' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\t// set object defaults if values are not supplied\n\t\t\tobj.url = 'url' in obj ? obj.url : this.url;\n\t\t\tobj.type = 'type' \t\tin obj ? obj.type : this.type;\n\t\t\tobj.data = 'data' \t\tin obj ? obj.data : this.data;\n\t\t\tobj.cache = 'cache' \t\tin obj ? obj.cache : this.cache;\n\t\t\tobj.dataType = 'dataType'\tin obj ? obj.dataType : this.dataType;\n\t\t\tobj.async = 'async'\t\tin obj ? obj.async : this.async;\n\t\n\t\t\t// Add nonce to data object.\n\t\t\tobj.data._ajax_nonce = window.llms.ajax_nonce || wp_ajax_data.nonce;\n\t\n\t\t\t// Add post id to data object.\n\t\t\tvar $R = LLMS.Rest,\n\t\t\tquery_vars = $R.get_query_vars();\n\t\t\tobj.data.post_id = 'post' in query_vars ? query_vars.post : null;\n\t\t\tif ( ! obj.data.post_id && $( 'input#post_ID' ).length ) {\n\t\t\t\tobj.data.post_id = $( 'input#post_ID' ).val();\n\t\t\t}\n\t\n\t\t\treturn obj;\n\t\t},\n\t\n\t\t/**\n\t\t * Call\n\t\t * Called by external classes\n\t\t * Sets up jQuery Ajax object\n\t\t *\n\t\t * @param {[object]} [object of ajax settings]\n\t\t * @return {[mixed]} [false if not object or this]\n\t\t */\n\t\tcall: function(obj) {\n\t\n\t\t\t// get default variables if not included in call\n\t\t\tvar settings = this.init( obj );\n\t\n\t\t\t// if init return a response of false\n\t\t\tif ( ! settings) {\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tthis.request( settings );\n\t\t\t}\n\t\n\t\t\treturn this;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Calls jQuery Ajax on settings object\n\t\t *\n\t\t * @return {[object]} [this]\n\t\t */\n\t\trequest: function(settings) {\n\t\n\t\t\t$.ajax( settings );\n\t\n\t\t\treturn this;\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Create a Donut Chart\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.9.0\n\t * @version 4.15.0\n\t *\n\t * @link https://gist.github.com/joeyinbox/8205962\n\t *\n\t * @param {Object} $el jQuery element to draw a chart within.\n\t */\n\t\n\tLLMS.Donut = function( $el ) {\n\t\n\t\t/**\n\t\t * Constructor\n\t\t *\n\t\t * @since 3.9.0\n\t\t * @since 4.15.0 Flip animation in RTL.\n\t\t *\n\t\t * @param {Object} options Donut options.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction Donut(options) {\n\t\n\t\t\tthis.settings = $.extend( {\n\t\t\t\telement: options.element,\n\t\t\t\tpercent: 100\n\t\t\t}, options );\n\t\n\t\t\tthis.circle = this.settings.element.find( 'path' );\n\t\t\tthis.settings.stroke_width = parseInt( this.circle.css( 'stroke-width' ) );\n\t\t\tthis.radius = ( parseInt( this.settings.element.css( 'width' ) ) - this.settings.stroke_width ) / 2;\n\t\t\tthis.angle = $( 'body' ).hasClass( 'rtl' ) ? 82.5 : 97.5; // Origin of the draw at the top of the circle\n\t\t\tthis.i = Math.round( 0.75 * this.settings.percent );\n\t\t\tthis.first = true;\n\t\t\tthis.increment = $( 'body' ).hasClass( 'rtl' ) ? -5 : 5;\n\t\n\t\t\tthis.animate = function() {\n\t\t\t\tthis.timer = setInterval( this.loop.bind( this ), 10 );\n\t\t\t};\n\t\n\t\t\tthis.loop = function() {\n\t\t\t\tthis.angle += this.increment;\n\t\t\t\tthis.angle %= 360;\n\t\t\t\tvar radians = ( this.angle / 180 ) * Math.PI,\n\t\t\t\t\tx = this.radius + this.settings.stroke_width / 2 + Math.cos( radians ) * this.radius,\n\t\t\t\t\ty = this.radius + this.settings.stroke_width / 2 + Math.sin( radians ) * this.radius,\n\t\t\t\t\td;\n\t\t\t\tif (this.first === true) {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' M ' + x + ' ' + y;\n\t\t\t\t\tthis.first = false;\n\t\t\t\t} else {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' L ' + x + ' ' + y;\n\t\t\t\t}\n\t\t\t\tthis.circle.attr( 'd', d );\n\t\t\t\tthis.i--;\n\t\n\t\t\t\tif (this.i <= 0) {\n\t\t\t\t\tclearInterval( this.timer );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\n\t\t/**\n\t\t * Draw donut element\n\t\t *\n\t\t * @since 3.9.0\n\t\t *\n\t\t * @param {Object} $el jQuery element to draw a chart within.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction draw( $el ) {\n\t\t\tvar path = '';\n\t\t\t$el.append( '' + path + '' );\n\t\t\tvar donut = new Donut( {\n\t\t\t\telement: $el,\n\t\t\t\tpercent: $el.attr( 'data-perc' )\n\t\t\t} );\n\t\t\tdonut.animate();\n\t\t}\n\t\n\t\tdraw( $el );\n\t\n\t};\n\t\n\t\t/**\n\t * Forms\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 5.0.0\n\t * @version 7.0.0\n\t */\n\t\n\tLLMS.Forms = {\n\t\n\t\t/**\n\t\t * Stores locale information.\n\t\t *\n\t\t * Added via PHP.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\taddress_info: {},\n\t\n\t\t/**\n\t\t * jQuery ref. to the city text field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$cities: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the countries select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$countries: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the states select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the hidden states holder field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states_holder: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t \t * @since 5.0.0\n\t \t * @since 5.3.3 Move select2 dependency check into the `bind_l10_selects()` method.\n\t \t *\n\t \t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\tif ( ! ( $( 'body' ).hasClass( 'profile-php' ) || $( 'body' ).hasClass( 'user-edit-php' ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.bind_matching_fields();\n\t\t\tself.bind_voucher_field();\n\t\t\tself.bind_edit_account();\n\t\t\tself.bind_l10n_selects();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for the edit account screen.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_edit_account: function() {\n\t\n\t\t\t// Not an edit account form.\n\t\t\tif ( ! $( 'form.llms-person-form.edit-account' ).length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t$( '.llms-toggle-fields' ).on( 'click', this.handle_toggle_click );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events fields with dynamic localization values and language.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 5.3.3 Bind select2-related events after ensuring select2 is available.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_l10n_selects: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.$cities = $( '#llms_billing_city' );\n\t\t\tself.$countries = $( '.llms-l10n-country-select select' );\n\t\t\tself.$states = $( '.llms-l10n-state-select select' );\n\t\t\tself.$zips = $( '#llms_billing_zip' );\n\t\n\t\t\tif ( ! self.$countries.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar isSelect2Available = function() {\n\t\t\t\treturn ( undefined !== $.fn.llmsSelect2 );\n\t\t\t};\n\t\n\t\t\tLLMS.wait_for( isSelect2Available, function() {\n\t\n\t\t\t\tif ( self.$states.length ) {\n\t\t\t\t\tself.prep_state_field();\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.add( self.$states ).llmsSelect2( { width: '100%' } );\n\t\n\t\t\t\tif ( window.llms.address_info ) {\n\t\t\t\t\tself.address_info = JSON.parse( window.llms.address_info );\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.on( 'change', function() {\n\t\n\t\t\t\t\tvar val = $( this ).val();\n\t\t\t\t\tself.update_locale_info( val );\n\t\n\t\t\t\t} ).trigger( 'change' );\n\t\n\t\t\t}, 'llmsSelect2' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Ensure \"matching\" fields match.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tbind_matching_fields: function() {\n\t\n\t\t\tvar $fields = $( 'input[data-match]' ).not( '[type=\"password\"]' );\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\tvar $field = $( this ),\n\t\t\t\t\t$match = $( '#' + $field.attr( 'data-match' ) ),\n\t\t\t\t\t$parents;\n\t\n\t\t\t\tif ( $match.length ) {\n\t\n\t\t\t\t\t$parents = $field.closest( '.llms-form-field' ).add( $match.closest( '.llms-form-field' ) );\n\t\n\t\t\t\t\t$field.on( 'input change', function() {\n\t\n\t\t\t\t\t\tvar val_1 = $field.val(),\n\t\t\t\t\t\t\tval_2 = $match.val();\n\t\n\t\t\t\t\t\tif ( val_1 && val_2 && val_1 !== val_2 ) {\n\t\t\t\t\t\t\t$parents.addClass( 'invalid' );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$parents.removeClass( 'invalid' );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for voucher toggles UX.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_voucher_field: function() {\n\t\n\t\t\t$( '#llms-voucher-toggle' ).on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$( '#llms_voucher' ).toggle();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the parent element for a given field.\n\t\t *\n\t\t * The parent element is hidden when the field isn't required.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 7.0.0 Do not look for a WP column wrapper anymore, always return the field's wrapper div.\n\t\t *\n\t\t * @param {Object} $field jQuery dom object.\n\t\t * @return {Object}\n\t\t */\n\t\tget_field_parent: function( $field ) {\n\t\n\t\t\treturn $field.closest( '.llms-form-field' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the text of a label\n\t\t *\n\t\t * Removes any children HTML elements (eg: required span elements) and returns only the labels text.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $label jQuery object for a label element.\n\t\t * @return {String}\n\t\t */\n\t\tget_label_text: function( $label ) {\n\t\n\t\t\tvar $clone = $label.clone();\n\t\t\t$clone.find( '*' ).remove();\n\t\t\treturn $clone.text().trim();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Callback function to handle the \"toggle\" button links for changing email address and password on account edit forms\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} event Native JS event object.\n\t\t * @return {void}\n\t\t */\n\t\thandle_toggle_click: function( event ) {\n\t\n\t\t\tevent.preventDefault();\n\t\n\t\t\tvar $this = $( this ),\n\t\t\t\t$fields = $( $( this ).attr( 'data-fields' ) ),\n\t\t\t\tisShowing = $this.attr( 'data-is-showing' ) || 'no',\n\t\t\t\tdisplayFunc = 'yes' === isShowing ? 'hide' : 'show',\n\t\t\t\tdisabled = 'yes' === isShowing ? 'disabled' : null,\n\t\t\t\ttextAttr = 'yes' === isShowing ? 'data-change-text' : 'data-cancel-text';\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\t$( this ).closest( '.llms-form-field' )[ displayFunc ]();\n\t\t\t\t$( this ).attr( 'disabled', disabled );\n\t\n\t\t\t} );\n\t\n\t\t\t$this.text( $this.attr( textAttr ) );\n\t\t\t$this.attr( 'data-is-showing', 'yes' === isShowing ? 'no' : 'yes' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Prepares the state select field.\n\t\t *\n\t\t * Moves All optgroup elements into a hidden & disabled select element.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tprep_state_field: function() {\n\t\n\t\t\tvar $parent = this.$states.closest( '.llms-form-field' );\n\t\n\t\t\tthis.$holder = $( '',\n\t\t\t\t{ name: $field.attr('name'), class: $field.attr( 'class' ) + ' hidden', type: 'hidden' }\n\t\t\t).insertAfter( $field );\n\t\t\t$field.attr( 'disabled', 'disabled' );\n\t\t\tthis.get_field_parent( $field ).hide();\n\t\t},\n\t\n\t\t/**\n\t\t * Enable a given field\n\t\t *\n\t\t * It also shows the parent element, and removes the empty hidden input field\n\t\t * previously added by disable_field().\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $field The jQuery object for the field.\n\t\t */\n\t\tenable_field: function( $field ) {\n\t\t\t$field.removeAttr( 'disabled' );\n\t\t\t$field.next( '.hidden[name='+$field.attr('name')+']' ).detach();\n\t\t\tthis.get_field_parent( $field ).show();\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Instructors List\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Instructors = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-instructors' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-instructors .llms-author' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Localization functions for LifterLMS Javascript\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 2.7.3\n\t * @version 2.7.3\n\t *\n\t * @todo we need more robust translation functions to handle sprintf and pluralization\n\t * at this moment we don't need those and haven't stubbed them out\n\t * those will be added when they're needed\n\t */\n\t\n\tLLMS.l10n = LLMS.l10n || {};\n\t\n\tLLMS.l10n.translate = function ( string ) {\n\t\n\t\tvar self = this;\n\t\n\t\tif ( self.strings[string] ) {\n\t\n\t\t\treturn self.strings[string];\n\t\n\t\t} else {\n\t\n\t\t\treturn string;\n\t\n\t\t}\n\t\n\t};\n\t\n\t/**\n\t * Translate and replace placeholders in a string\n\t *\n\t * @example LLMS.l10n.replace( 'This is a %2$s %1$s String', {\n\t * \t'%1$s': 'cool',\n\t * \t\t\t'%2$s': 'very'\n\t * \t\t} );\n\t * \t\tOutput: \"This is a very cool String\"\n\t *\n\t * @param string string text string\n\t * @param object replacements object containing token => replacement pairs\n\t * @return string\n\t * @since 3.16.0\n\t * @version 3.16.0\n\t */\n\tLLMS.l10n.replace = function( string, replacements ) {\n\t\n\t\tvar str = this.translate( string );\n\t\n\t\t$.each( replacements, function( token, value ) {\n\t\n\t\t\tif ( -1 !== token.indexOf( 's' ) ) {\n\t\t\t\tvalue = value.toString();\n\t\t\t} else if ( -1 !== token.indexOf( 'd' ) ) {\n\t\t\t\tvalue = value * 1;\n\t\t\t}\n\t\n\t\t\tstr = str.replace( token, value );\n\t\n\t\t} );\n\t\n\t\treturn str;\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Lesson Preview Elements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.16.12\n\t */\n\t\n\tLLMS.LessonPreview = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$els: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked = $( 'a[href=\"#llms-lesson-locked\"]' );\n\t\n\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\tself.bind();\n\t\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-course-navigation' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.16.12\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked.on( 'click', function() {\n\t\t\t\treturn false;\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseenter', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\tif ( ! $tip.length ) {\n\t\t\t\t\tvar msg = $( this ).attr( 'data-tooltip-msg' );\n\t\t\t\t\tif ( ! msg ) {\n\t\t\t\t\t\tmsg = LLMS.l10n.translate( 'You do not have permission to access this content' );\n\t\t\t\t\t}\n\t\t\t\t\t$tip = self.get_tooltip( msg );\n\t\t\t\t\t$( this ).append( $tip );\n\t\t\t\t}\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t$tip.addClass( 'show' );\n\t\t\t\t}, 10 );\n\t\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseleave', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\t$tip.removeClass( 'show' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of lesson preview items in course navigation blocks\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-course-navigation .llms-lesson-link' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get a tooltip element\n\t\t *\n\t\t * @param string msg message to display inside the tooltip\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.2.4\n\t\t */\n\t\tget_tooltip: function( msg ) {\n\t\t\tvar $el = $( '
    ' );\n\t\t\t$el.append( '
    ' + msg + '
    ' );\n\t\t\treturn $el;\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * LifterLMS Loops JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.14.0\n\t */\n\t\n\tLLMS.Loops = {\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( '.llms-loop' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of .llms-loop-item\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.14.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-loop-item .llms-loop-item-content' ).matchHeight();\n\t\t\t$( '.llms-achievement-loop-item .llms-achievement' ).matchHeight();\n\t\t\t$( '.llms-certificate-loop-item .llms-certificate' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Handle the Collapsible Syllabus Widget / Shortcode\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.OutlineCollapse = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$outlines: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tthis.$outlines = $( '.llms-widget-syllabus--collapsible' );\n\t\n\t\t\tif ( this.$outlines.length ) {\n\t\n\t\t\t\tthis.bind();\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$outlines.each( function() {\n\t\n\t\t\t\tvar $outline = $( this ),\n\t\t\t\t\t$headers = $outline.find( '.llms-section .section-header' );\n\t\n\t\t\t\t// bind header clicks\n\t\t\t\t$headers.on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $toggle = $( this ),\n\t\t\t\t\t\t$section = $toggle.closest( '.llms-section' ),\n\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t\t// bind optional toggle \"buttons\"\n\t\t\t\t$outline.find( '.llms-collapse-toggle' ).on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $btn = $( this ),\n\t\t\t\t\t\taction = $btn.attr( 'data-action' ),\n\t\t\t\t\t\topposite_action = ( 'close' === action ) ? 'opened' : 'closed';\n\t\n\t\t\t\t\t$headers.each( function() {\n\t\n\t\t\t\t\t\tvar $section = $( this ).closest( '.llms-section' ),\n\t\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\t\tif ( opposite_action !== state ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t$( this ).trigger( 'click' );\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Close an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\tclose_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--opened' ).addClass( 'llms-section--closed' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Open an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\topen_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--closed' ).addClass( 'llms-section--opened' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current state (open or closed) of an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return string 'opened' or 'closed'\n\t\t */\n\t\tget_section_state: function( $section ) {\n\t\n\t\t\treturn $section.hasClass( 'llms-section--opened' ) ? 'opened' : 'closed';\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Password Strength Meter for registration and password update fields\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 5.0.0\n\t */\n\t\n\t$.extend( LLMS.PasswordStrength, {\n\t\n\t\t/**\n\t\t * jQuery ref for the password strength meter object.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$meter: $( '.llms-password-strength-meter' ),\n\t\n\t\t/**\n\t\t * jQuery ref for the password field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$pass: null,\n\t\n\t\t/**\n\t\t * jQuery ref for the password confirmation field\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$conf: null,\n\t\n\t\t/**\n\t\t * jQuery ref for form element.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$form: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.7.0 Unknown\n\t\t * @since 5.0.0 Move reference setup to `setup_references()`.\n\t\t * Use `LLMS.wait_for()` for dependency waiting.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( ! this.setup_references() ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tLLMS.wait_for( function() {\n\t\t\t\treturn ( 'undefined' !== typeof wp && 'undefined' !== typeof wp.passwordStrength );\n\t\t\t}, function() {\n\t\t\t\tself.bind();\n\t\t\t\tself.$form.trigger( 'llms-password-strength-ready' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t// add submission event handlers when not on a checkout form\n\t\t\tif ( ! this.$form.hasClass( 'llms-checkout' ) ) {\n\t\t\t\tself.$form.on( 'submit', self, self.submit );\n\t\t\t}\n\t\n\t\t\t// check password strength on keyup\n\t\t\tself.$pass.add( self.$conf ).on( 'keyup', function() {\n\t\t\t\tself.check_strength();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Check the strength of a user entered password\n\t\t * and update elements depending on the current strength\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tcheck_strength: function() {\n\t\n\t\t\tvar $pass_field = this.$pass.closest( '.llms-form-field' ),\n\t\t\t\t$conf_field = this.$conf && this.$conf.length ? this.$conf.closest( '.llms-form-field' ) : null,\n\t\t\t\tpass_length = this.$pass.val().length,\n\t\t\t\tconf_length = this.$conf && this.$conf.length ? this.$conf.val().length : 0;\n\t\n\t\t\t// hide the meter if both fields are empty\n\t\t\tif ( ! pass_length && ! conf_length ) {\n\t\t\t\t$pass_field.removeClass( 'valid invalid' );\n\t\t\t\tif ( $conf_field ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid invalid' );\n\t\t\t\t}\n\t\t\t\tthis.$meter.hide();\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( this.get_current_strength_status() ) {\n\t\t\t\t$pass_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$pass_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tthis.$meter.removeClass( 'too-short very-weak weak medium strong mismatch' );\n\t\t\tthis.$meter.show().addClass( this.get_current_strength( 'slug' ) );\n\t\t\tthis.$meter.html( this.get_current_strength( 'text' ) );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission action called during registration on checkout screen\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param obj self instance of this class\n\t\t * @param Function callback callback function, passes error message or success back to checkout handler\n\t\t * @return void\n\t\t */\n\t\tcheckout: function( self, callback ) {\n\t\n\t\t\tif ( self.get_current_strength_status() ) {\n\t\n\t\t\t\tcallback( true );\n\t\n\t\t\t} else {\n\t\n\t\t\t\tcallback( LLMS.l10n.translate( 'There is an issue with your chosen password.' ) );\n\t\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklisted strings\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blocklist: function() {\n\t\n\t\t\t// Default values from WP Core + any values added via settings filter..\n\t\t\tvar blocklist = wp.passwordStrength.userInputDisallowedList().concat( this.get_setting( 'blocklist', [] ) );\n\t\n\t\t\t// Add values from all text fields in the form.\n\t\t\tthis.$form.find( 'input[type=\"text\"], input[type=\"email\"], input[type=\"tel\"], input[type=\"number\"]' ).each( function() {\n\t\t\t\tvar val = $( this ).val();\n\t\t\t\tif ( val ) {\n\t\t\t\t\tblocklist.push( val );\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\treturn blocklist;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve current strength as a number, a slug, or a translated text string\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @param {String} format Derived return format [int|slug|text] defaults to int.\n\t\t * @return mixed\n\t\t */\n\t\tget_current_strength: function( format ) {\n\t\n\t\t\tformat = format || 'int';\n\t\t\tvar pass = this.$pass.val(),\n\t\t\t\tconf = this.$conf && this.$conf.length ? this.$conf.val() : '',\n\t\t\t\tval;\n\t\n\t\t\t// enforce custom length requirement\n\t\t\tif ( pass.length < this.get_setting( 'min_length', 6 ) ) {\n\t\t\t\tval = -1;\n\t\t\t} else {\n\t\t\t\tval = wp.passwordStrength.meter( pass, this.get_blocklist(), conf );\n\t\t\t\t// 0 & 1 are both very-weak\n\t\t\t\tif ( 0 === val ) {\n\t\t\t\t\tval = 1;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tif ( 'slug' === format ) {\n\t\t\t\treturn this.get_strength_slug( val );\n\t\t\t} else if ( 'text' === format ) {\n\t\t\t\treturn this.get_strength_text( val );\n\t\t\t} else {\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Determines if the current password strength meets the user-defined\n\t\t * minimum password strength requirements\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return boolean\n\t\t */\n\t\tget_current_strength_status: function() {\n\t\t\tvar curr = this.get_current_strength(),\n\t\t\t\tmin = this.get_strength_value( this.get_minimum_strength() );\n\t\t\treturn ( 5 === curr ) ? false : ( curr >= min );\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the minimum password strength for the current form.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Replaces the version output via an inline PHP script in favor of utilizing values configured in the settings object.\n\t\t *\n\t\t * @return {string}\n\t\t */\n\t\tget_minimum_strength: function() {\n\t\t\treturn this.get_setting( 'min_strength', 'strong' );\n\t\t},\n\t\n\t\t/**\n\t\t * Get a setting and fallback to a default value.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {String} key Setting key.\n\t\t * @param {mixed} default_val Default value when the requested setting cannot be located.\n\t\t * @return {mixed}\n\t\t */\n\t\tget_setting: function( key, default_val ) {\n\t\t\tvar settings = this.get_settings();\n\t\t\treturn settings[ key ] ? settings[ key ] : default_val;\n\t\t},\n\t\n\t\t/**\n\t\t * Get the slug associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param int strength_val Strength value number.\n\t\t * @return string\n\t\t */\n\t\tget_strength_slug: function( strength_val ) {\n\t\n\t\t\tvar slugs = {\n\t\t\t\t'-1': 'too-short',\n\t\t\t\t1: 'very-weak',\n\t\t\t\t2: 'weak',\n\t\t\t\t3: 'medium',\n\t\t\t\t4: 'strong',\n\t\t\t\t5: 'mismatch',\n\t\t\t};\n\t\n\t\t\treturn ( slugs[ strength_val ] ) ? slugs[ strength_val ] : slugs[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Gets the translated text associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param {Integer} strength_val Strength value\n\t\t * @return {String}\n\t\t */\n\t\tget_strength_text: function( strength_val ) {\n\t\n\t\t\tvar texts = {\n\t\t\t\t'-1': LLMS.l10n.translate( 'Too Short' ),\n\t\t\t\t1: LLMS.l10n.translate( 'Very Weak' ),\n\t\t\t\t2: LLMS.l10n.translate( 'Weak' ),\n\t\t\t\t3: LLMS.l10n.translate( 'Medium' ),\n\t\t\t\t4: LLMS.l10n.translate( 'Strong' ),\n\t\t\t\t5: LLMS.l10n.translate( 'Mismatch' ),\n\t\t\t};\n\t\n\t\t\treturn ( texts[ strength_val ] ) ? texts[ strength_val ] : texts[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the value associated with a strength slug\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param string strength_slug A strength slug.\n\t\t * @return {Integer}\n\t\t */\n\t\tget_strength_value: function( strength_slug ) {\n\t\n\t\t\tvar values = {\n\t\t\t\t'too-short': -1,\n\t\t\t\t'very-weak': 1,\n\t\t\t\tweak: 2,\n\t\t\t\tmedium: 3,\n\t\t\t\tstrong: 4,\n\t\t\t\tmismatch: 5,\n\t\t\t};\n\t\n\t\t\treturn ( values[ strength_slug ] ) ? values[ strength_slug ] : values.mismatch;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup jQuery references to DOM elements needed to power the password meter.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Boolean} Returns `true` if a meter element and password field are found, otherwise returns `false`.\n\t\t */\n\t\tsetup_references: function() {\n\t\n\t\t\tif ( ! this.$meter.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\tthis.$form = this.$meter.closest( 'form' );\n\t\t\tthis.$pass = this.$form.find( 'input#password' );\n\t\n\t\t\tif ( this.$pass.length && this.$pass.attr( 'data-match' ) ) {\n\t\t\t\tthis.$conf = this.$form.find( '#' + this.$pass.attr( 'data-match' ) );\n\t\t\t}\n\t\n\t\t\treturn ( this.$pass.length > 0 );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission handler for registration and update forms\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow the account edit for to bypass strength checking when the password field is disabled (not being submitted).\n\t\t *\n\t\t * @param obj e Event data.\n\t\t * @return void\n\t\t */\n\t\tsubmit: function( e ) {\n\t\n\t\t\tvar self = e.data;\n\t\t\te.preventDefault();\n\t\t\tself.$pass.trigger( 'keyup' );\n\t\n\t\t\t// Meets the status requirements OR we're on the account edit form and the password field is disabled.\n\t\t\tif ( self.get_current_strength_status() || ( self.$form.hasClass( 'edit-account' ) && 'disabled' === self.$pass.attr( 'disabled' ) ) ) {\n\t\t\t\tself.$form.off( 'submit', self.submit );\n\t\t\t\tself.$form.trigger( 'submit' );\n\t\t\t} else {\n\t\t\t\t$( 'html, body' ).animate( {\n\t\t\t\t\tscrollTop: self.$meter.offset().top - 100,\n\t\t\t\t}, 200 );\n\t\t\t\tself.$meter.hide();\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tself.$meter.fadeIn( 400 );\n\t\t\t\t}, 220 );\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklist strings\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @deprecated 5.0.0 `LLMS.PasswordStrength.get_blacklist()` is deprecated in favor of `LLMS.PasswordStrength.get_blocklist()`.\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blacklist: function() {\n\t\t\tconsole.log( 'Method `get_blacklist()` is deprecated in favor of `get_blocklist()`.' );\n\t\t\treturn this.get_blacklist();\n\t\t},\n\t\n\t} );\n\t\n\t\t/**\n\t * Pricing Table UI\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown.\n\t * @version Unknown.\n\t */\n\t\n\tLLMS.Pricing_Tables = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-access-plans' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t\tthis.$locked = $( 'a[href=\"#llms-plan-locked\"]' );\n\t\n\t\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\t\tLLMS.wait_for_popover( function() {\n\t\t\t\t\t\tself.bind_locked();\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-access-plan-content' ).matchHeight();\n\t\t\t$( '.llms-access-plan-pricing.trial' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup a popover for members-only restricted plans\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.9.1\n\t\t */\n\t\tbind_locked: function() {\n\t\n\t\t\tthis.$locked.each( function() {\n\t\n\t\t\t\t$( this ).webuiPopover( {\n\t\t\t\t\tanimation: 'pop',\n\t\t\t\t\tcloseable: true,\n\t\t\t\t\tcontent: function( e ) {\n\t\t\t\t\t\tvar $content = $( '
    ' );\n\t\t\t\t\t\t$content.append( e.$element.closest( '.llms-access-plan' ).find( '.llms-access-plan-restrictions ul' ).clone() );\n\t\t\t\t\t\treturn $content;\n\t\t\t\t\t},\n\t\t\t\t\tplacement: 'top',\n\t\t\t\t\tstyle: 'inverse',\n\t\t\t\t\ttitle: LLMS.l10n.translate( 'Members Only Pricing' ),\n\t\t\t\t\twidth: '280px',\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * LifterLMS Reviews JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Review = {\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\t// console.log('Initializing Review ');\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * This function binds actions to the appropriate hooks\n\t\t */\n\t\tbind: function() {\n\t\t\t$( '#llms_review_submit_button' ).click(function()\n\t\t\t\t{\n\t\t\t\tif ($( '#review_title' ).val() !== '' && $( '#review_text' ).val() !== '') {\n\t\t\t\t\tjQuery.ajax({\n\t\t\t\t\t\ttype : 'post',\n\t\t\t\t\t\tdataType : 'json',\n\t\t\t\t\t\turl : window.llms.ajaxurl,\n\t\t\t\t\t\tdata : {\n\t\t\t\t\t\t\taction : 'LLMSSubmitReview',\n\t\t\t\t\t\t\treview_title: $( '#review_title' ).val(),\n\t\t\t\t\t\t\treview_text: $( '#review_text' ).val(),\n\t\t\t\t\t\t\tpageID : $( '#post_ID' ).val()\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function()\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( 'Review success' );\n\t\t\t\t\t\t\t$( '#review_box' ).hide( 'swing' );\n\t\t\t\t\t\t\t$( '#thank_you_box' ).show( 'swing' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function(jqXHR, textStatus, errorThrown )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( jqXHR );\n\t\t\t\t\t\t\tconsole.log( textStatus );\n\t\t\t\t\t\t\tconsole.log( errorThrown );\n\t\t\t\t\t\t},\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tif ($( '#review_title' ).val() === '') {\n\t\t\t\t\t\t$( '#review_title_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_title_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t\tif ($( '#review_text' ).val() === '') {\n\t\t\t\t\t\t$( '#review_text_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_text_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\n\t\t\t} else {\n\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t}\n\t\t\t$( '#_llms_display_reviews' ).change(function() {\n\t\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\t\t\t} else {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).removeClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t\t}\n\t\t\t});\n\t\n\t\t},\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/*!\n\t * JavaScript Cookie v2.2.1\n\t * https://github.com/js-cookie/js-cookie\n\t *\n\t * Copyright 2006, 2015 Klaus Hartl & Fagner Brack\n\t * Released under the MIT license\n\t */\n\t;(function (factory) {\n\t\tvar registeredInModuleLoader;\n\t\tif (typeof define === 'function' && define.amd) {\n\t\t\tdefine(factory);\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (typeof exports === 'object') {\n\t\t\tmodule.exports = factory();\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (!registeredInModuleLoader) {\n\t\t\tvar OldCookies = window.Cookies;\n\t\t\tvar api = window.Cookies = factory();\n\t\t\tapi.noConflict = function () {\n\t\t\t\twindow.Cookies = OldCookies;\n\t\t\t\treturn api;\n\t\t\t};\n\t\t}\n\t}(function () {\n\t\tfunction extend () {\n\t\t\tvar i = 0;\n\t\t\tvar result = {};\n\t\t\tfor (; i < arguments.length; i++) {\n\t\t\t\tvar attributes = arguments[ i ];\n\t\t\t\tfor (var key in attributes) {\n\t\t\t\t\tresult[key] = attributes[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t\n\t\tfunction decode (s) {\n\t\t\treturn s.replace(/(%[0-9A-Z]{2})+/g, decodeURIComponent);\n\t\t}\n\t\n\t\tfunction init (converter) {\n\t\t\tfunction api() {}\n\t\n\t\t\tfunction set (key, value, attributes) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tattributes = extend({\n\t\t\t\t\tpath: '/'\n\t\t\t\t}, api.defaults, attributes);\n\t\n\t\t\t\tif (typeof attributes.expires === 'number') {\n\t\t\t\t\tattributes.expires = new Date(new Date() * 1 + attributes.expires * 864e+5);\n\t\t\t\t}\n\t\n\t\t\t\t// We're using \"expires\" because \"max-age\" is not supported by IE\n\t\t\t\tattributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';\n\t\n\t\t\t\ttry {\n\t\t\t\t\tvar result = JSON.stringify(value);\n\t\t\t\t\tif (/^[\\{\\[]/.test(result)) {\n\t\t\t\t\t\tvalue = result;\n\t\t\t\t\t}\n\t\t\t\t} catch (e) {}\n\t\n\t\t\t\tvalue = converter.write ?\n\t\t\t\t\tconverter.write(value, key) :\n\t\t\t\t\tencodeURIComponent(String(value))\n\t\t\t\t\t\t.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);\n\t\n\t\t\t\tkey = encodeURIComponent(String(key))\n\t\t\t\t\t.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent)\n\t\t\t\t\t.replace(/[\\(\\)]/g, escape);\n\t\n\t\t\t\tvar stringifiedAttributes = '';\n\t\t\t\tfor (var attributeName in attributes) {\n\t\t\t\t\tif (!attributes[attributeName]) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tstringifiedAttributes += '; ' + attributeName;\n\t\t\t\t\tif (attributes[attributeName] === true) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Considers RFC 6265 section 5.2:\n\t\t\t\t\t// ...\n\t\t\t\t\t// 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n\t\t\t\t\t// character:\n\t\t\t\t\t// Consume the characters of the unparsed-attributes up to,\n\t\t\t\t\t// not including, the first %x3B (\";\") character.\n\t\t\t\t\t// ...\n\t\t\t\t\tstringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n\t\t\t\t}\n\t\n\t\t\t\treturn (document.cookie = key + '=' + value + stringifiedAttributes);\n\t\t\t}\n\t\n\t\t\tfunction get (key, json) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tvar jar = {};\n\t\t\t\t// To prevent the for loop in the first place assign an empty array\n\t\t\t\t// in case there are no cookies at all.\n\t\t\t\tvar cookies = document.cookie ? document.cookie.split('; ') : [];\n\t\t\t\tvar i = 0;\n\t\n\t\t\t\tfor (; i < cookies.length; i++) {\n\t\t\t\t\tvar parts = cookies[i].split('=');\n\t\t\t\t\tvar cookie = parts.slice(1).join('=');\n\t\n\t\t\t\t\tif (!json && cookie.charAt(0) === '\"') {\n\t\t\t\t\t\tcookie = cookie.slice(1, -1);\n\t\t\t\t\t}\n\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\tvar name = decode(parts[0]);\n\t\t\t\t\t\tcookie = (converter.read || converter)(cookie, name) ||\n\t\t\t\t\t\t\tdecode(cookie);\n\t\n\t\t\t\t\t\tif (json) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tcookie = JSON.parse(cookie);\n\t\t\t\t\t\t\t} catch (e) {}\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tjar[name] = cookie;\n\t\n\t\t\t\t\t\tif (key === name) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch (e) {}\n\t\t\t\t}\n\t\n\t\t\t\treturn key ? jar[key] : jar;\n\t\t\t}\n\t\n\t\t\tapi.set = set;\n\t\t\tapi.get = function (key) {\n\t\t\t\treturn get(key, false /* read as raw */);\n\t\t\t};\n\t\t\tapi.getJSON = function (key) {\n\t\t\t\treturn get(key, true /* read as json */);\n\t\t\t};\n\t\t\tapi.remove = function (key, attributes) {\n\t\t\t\tset(key, '', extend(attributes, {\n\t\t\t\t\texpires: -1\n\t\t\t\t}));\n\t\t\t};\n\t\n\t\t\tapi.defaults = {};\n\t\n\t\t\tapi.withConverter = init;\n\t\n\t\t\treturn api;\n\t\t}\n\t\n\t\treturn init(function () {});\n\t}));\n\t\n\t/**\n\t * Create a no conflict reference to JS Cookies.\n\t *\n\t * @type {Object}\n\t */\n\tLLMS.CookieStore = Cookies.noConflict();\n\t\n\t/**\n\t * Store information in Local Storage by group.\n\t *\n\t * @since 3.36.0\n\t * @since 3.37.14 Use persistent reference to JS Cookies.\n\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t *\n\t * @param string group Storage group id/name.\n\t */\n\tLLMS.Storage = function( group ) {\n\t\n\t\tvar self = this,\n\t\t\tstore = LLMS.CookieStore;\n\t\n\t\t/**\n\t\t * Clear all data for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.clearAll = function() {\n\t\t\tstore.remove( group );\n\t\t};\n\t\n\t\t/**\n\t\t * Clear a single item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.clear = function( key ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdelete data[ key ];\n\t\t\treturn store.set( group, data );\n\t\t};\n\t\n\t\t/**\n\t\t * Retrieve (and parse) all data stored for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getAll = function() {\n\t\t\treturn store.getJSON( group ) || {};\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve an item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param string key Item key/name.\n\t\t * @param mixed default_val Item default value to be returned when item not found in the group.\n\t\t * @return mixed\n\t\t */\n\t\tthis.get = function( key, default_val ) {\n\t\t\tvar data = self.getAll();\n\t\t\treturn data[ key ] ? data[ key ] : default_val;\n\t\t}\n\t\n\t\t/**\n\t\t * Store an item in the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t\t *\n\t\t * @param string key Item key name.\n\t\t * @param mixed val Item value\n\t\t * @return obj\n\t\t */\n\t\tthis.set = function( key, val ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdata[ key ] = val;\n\t\t\treturn store.set( group, data, { sameSite: 'strict' } );\n\t\t};\n\t\n\t}\n\t\n\t\t/**\n\t * Student Dashboard related JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.7.0\n\t * @since 3.10.0 Bind events on the orders screen.\n\t * @since 5.0.0 Removed redundant password toggle logic for edit account screen.\n\t * @version 5.0.0\n\t */\n\tLLMS.StudentDashboard = {\n\t\n\t\t/**\n\t\t * Slug for the current screen/endpoint\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tscreen: '',\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.10.0 Unknown\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-student-dashboard' ).length ) {\n\t\t\t\tthis.bind();\n\t\t\t\tif ( 'orders' === this.get_screen() ) {\n\t\t\t\t\tthis.bind_orders();\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.7.4 Unknown.\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-donut' ).each( function() {\n\t\t\t\tLLMS.Donut( $( this ) );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind events related to the orders screen on the dashboard\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind_orders: function() {\n\t\n\t\t\t$( '#llms-cancel-subscription-form' ).on( 'submit', this.order_cancel_warning );\n\t\t\t$( '#llms_update_payment_method' ).on( 'click', function() {\n\t\t\t\t$( 'input[name=\"llms_payment_gateway\"]:checked' ).trigger( 'change' );\n\t\t\t\t$( this ).closest( 'form' ).find( '.llms-switch-payment-source-main' ).slideToggle( '200' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current dashboard endpoint/tab slug\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tget_screen: function() {\n\t\t\tif ( ! this.screen ) {\n\t\t\t\tthis.screen = $( '.llms-student-dashboard' ).attr( 'data-current' );\n\t\t\t}\n\t\t\treturn this.screen;\n\t\t},\n\t\n\t\t/**\n\t\t * Show a confirmation warning when Cancel Subscription form is submitted\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @param obj e JS event data.\n\t\t * @return void\n\t\t */\n\t\torder_cancel_warning: function( e ) {\n\t\t\te.preventDefault();\n\t\t\tvar msg = LLMS.l10n.translate( 'Are you sure you want to cancel your subscription?' );\n\t\t\tif ( window.confirm( LLMS.l10n.translate( msg ) ) ) {\n\t\t\t\t$( this ).off( 'submit', this.order_cancel_warning );\n\t\t\t\t$( this ).submit();\n\t\t\t}\n\t\t},\n\t\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/**\n\t * User event/interaction tracking.\n\t *\n\t * @since 3.36.0\n\t * @since 3.36.2 Fix JS error when settings aren't loaded.\n\t * @since 3.37.2 When adding an event to the storae also make sure the nonce is set for server-side verification.\n\t * @since 3.37.9 Fix IE compatibility issue related to usage of `Object.assign()`.\n\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t * @since 5.0.0 Set `settings` as an empty object when no settings supplied.\n\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t */\n\tLLMS.Tracking = function( settings ) {\n\t\n\t\tsettings = settings || {};\n\t\n\t\tvar self = this,\n\t\t\tstore = new LLMS.Storage( 'llms-tracking' );\n\t\n\t\tsettings = 'string' === typeof settings ? JSON.parse( settings ) : settings;\n\t\n\t\t/**\n\t\t * Initialize / Bind all tracking event listeners.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 5.0.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t * @since 7.1.0 Do not add a nonce to the datastore by default, will be added/updated\n\t\t * when storing an event to track.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tfunction init() {\n\t\n\t\t\tself.addEvent( 'page.load' );\n\t\n\t\t\twindow.addEventListener( 'beforeunload', onBeforeUnload );\n\t\t\twindow.addEventListener( 'unload', onUnload );\n\t\n\t\t\tdocument.addEventListener( 'visibilitychange', onVisibilityChange );\n\t\n\t\t};\n\t\n\t\t/**\n\t\t * Add an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.36.2 Fix error when settings aren't loaded.\n\t\t * @since 3.37.2 Always make sure the nonce is set for server-side verification.\n\t\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t *\n\t\t * @param string|obj event Event Id (type.event) or a full event object from `this.makeEventObj()`.\n\t\t * @param int args Optional additional arguments to pass to `this.makeEventObj()`.\n\t\t * @return {void}\n\t\t */\n\t\tthis.addEvent = function( event, args ) {\n\t\n\t\t\targs = args || {};\n\t\t\tif ( 'string' === typeof event ) {\n\t\t\t\targs.event = event;\n\t\t\t}\n\t\n\t\t\t// If the event isn't registered in the settings don't proceed.\n\t\t\tif ( !settings.events || -1 === settings.events.indexOf( args.event ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t// Make sure the nonce is set for server-side verification.\n\t\t\tif ( settings.nonce ) {\n\t\t\t\tstore.set( 'nonce', settings.nonce );\n\t\t\t}\n\t\n\t\t\tevent = self.makeEventObj( args );\n\t\n\t\t\tvar all = store.get( 'events', [] );\n\t\t\tall.push( event );\n\t\t\tstore.set( 'events', all );\n\t\n\t\t\t// If couldn't store the latest event because of size limits.\n\t\t\tif ( all.length > store.get( 'events', [] ).length ) {\n\t\n\t\t\t\t// Copy the cookie in a temporary variable.\n\t\t\t\tvar _temp = store.getAll();\n\t\t\t\t// Clear the events from the cookie.\n\t\t\t\tstore.clear('events');\n\t\n\t\t\t\t// Add the latest event to the temporary variable.\n\t\t\t\t_temp['events'].push( event );\n\t\n\t\t\t\t// Send the temporary variable as string via ajax.\n\t\t\t\tLLMS.Ajax.call( {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taction: 'persist_tracking_events',\n\t\t\t\t\t\t'llms-tracking': JSON.stringify(_temp)\n\t\t\t\t\t},\n\t\n\t\t\t\t\terror: function( xhr, status, error ) {\n\t\n\t\t\t\t\t\tconsole.log( xhr, status, error );\n\t\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function( r ) {\n\t\n\t\t\t\t\t\tif ( 'error' === r.code ) {\n\t\t\t\t\t\t\tconsole.log(r.code, r.message);\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve initialization settings.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getSettings = function() {\n\t\t\treturn settings;\n\t\t}\n\t\n\t\t/**\n\t\t * Create an event object suitable to save as an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.37.9 Use `$.extend()` in favor of `Object.assign()`.\n\t\t *\n\t\t * @param obj event {\n\t\t * Event hash\n\t\t *\n\t\t * @param {string} event (Required) Event ID, eg: \"page.load\".\n\t\t * @param {url} url Event URL. (Optional, added automatically) Stored as metadata and used to infer an object_id for post events.\n\t\t * @param {time} float (Optional, added automatically) Timestamp (in milliseconds). Used for the event creation date.\n\t\t * @param {int} obj_id (Optional). The object ID. Inferred automatically via `url` if not provided.\n\t\t * @param {obj} meta (Optional) Hash of metadata to store with the event.\n\t\t * }\n\t\t * @return obj\n\t\t */\n\t\tthis.makeEventObj = function( event ) {\n\t\t\treturn $.extend( event, {\n\t\t\t\turl: window.location.href,\n\t\t\t\ttime: Math.round( new Date().getTime() / 1000 ),\n\t\t\t} );\n\t\t}\n\t\n\t\n\t\t/**\n\t\t * Remove the visibility change event listener on window.beforeunload\n\t\t *\n\t\t * Prevents actual unloading from recording a blur event from the visibility change listener\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onBeforeUnload( e ) {\n\t\t\tdocument.removeEventListener( 'visibilitychange', onVisibilityChange );\n\t\t}\n\t\n\t\t/**\n\t\t * Record a `page.exit` event on window.unload.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onUnload( e ) {\n\t\t\tself.addEvent( 'page.exit' );\n\t\t}\n\t\n\t\t/**\n\t\t * Record `page.blur` and `page.focus` events via document.visilibitychange events.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onVisibilityChange( e ) {\n\t\n\t\t\tvar event = document.hidden ? 'page.blur' : 'page.focus';\n\t\t\tself.addEvent( event );\n\t\n\t\t}\n\t\n\t\t// Initialize on the frontend only.\n\t\tif ( ! $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\tinit();\n\t\t}\n\t\n\t};\n\t\n\tllms.tracking = new LLMS.Tracking( llms.tracking );\n\t\n\t\t/**\n\t * Rest Methods\n\t * Manages URL and Rest object parsing\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Rest = {\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\t},\n\t\n\t\t/**\n\t\t * Searches for string matches in url path\n\t\t *\n\t\t * @param {Array} strings [Array of strings to search for matches]\n\t\t * @return {Boolean} [Was a match found?]\n\t\t */\n\t\tis_path: function( strings ) {\n\t\n\t\t\tvar path_exists = false,\n\t\t\t\turl = window.location.href;\n\t\n\t\t\tfor ( var i = 0; i < strings.length; i++ ) {\n\t\n\t\t\t\tif ( url.search( strings[i] ) > 0 && ! path_exists ) {\n\t\n\t\t\t\t\tpath_exists = true;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn path_exists;\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieves query variables\n\t\t *\n\t\t * @return {[Array]} [array object of query variable key=>value pairs]\n\t\t */\n\t\tget_query_vars: function() {\n\t\n\t\t\tvar vars = [], hash,\n\t\t\t\thashes = window.location.href.slice( window.location.href.indexOf( '?' ) + 1 ).split( '&' );\n\t\n\t\t\tfor (var i = 0; i < hashes.length; i++) {\n\t\t\t\thash = hashes[i].split( '=' );\n\t\t\t\tvars.push( hash[0] );\n\t\t\t\tvars[hash[0]] = hash[1];\n\t\t\t}\n\t\n\t\t\treturn vars;\n\t\t}\n\t\n\t};\n\t\n\n\t!function(){\"use strict\";var t={d:function(n,e){for(var r in e)t.o(e,r)&&!t.o(n,r)&&Object.defineProperty(n,r,{enumerable:!0,get:e[r]})},o:function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r:function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})}},n={};t.r(n),t.d(n,{get:function(){return d},start:function(){return c},stop:function(){return u}});const e=\"llms-spinning\",r=\"default\";var o=window.wp.i18n;function i(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;const i=document.createElement(\"div\"),l=(0,o.__)(\"Loading…\",\"lifterlms\");return i.innerHTML=`${l}`,i.classList.add(e),t.appendChild(i),i}function l(t){if((t=\"string\"==typeof t?document.querySelectorAll(t):t)instanceof NodeList)return Array.from(t);const n=[];return t instanceof Element?n.push(t):\"undefined\"!=typeof jQuery&&t instanceof jQuery&&t.toArray().forEach((t=>n.push(t))),n}function s(t){const n=t.querySelectorAll(\".llms-spinning\");return n.length?Array.from(n).find((n=>t===n.parentNode)):null}function a(){const t=\"llms-spinner-styles\";if(!document.getElementById(t)){const n=document.createElement(\"style\");n.textContent=\"\\n\\t.llms-spinning {\\n\\t\\tbackground: rgba( 250, 250, 250, 0.7 );\\n\\t\\tbottom: 0;\\n\\t\\tdisplay: none;\\n\\t\\tleft: 0;\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\ttop: 0;\\n\\t\\tz-index: 2;\\n\\t}\\n\\n\\t.llms-spinner {\\n\\t\\tanimation: llms-spinning 1.5s linear infinite;\\n\\t\\tbox-sizing: border-box;\\n\\t\\tborder: 4px solid #313131;\\n\\t\\tborder-radius: 50%;\\n\\t\\theight: 40px;\\n\\t\\tleft: 50%;\\n\\t\\tmargin-left: -20px;\\n\\t\\tmargin-top: -20px;\\n\\t\\tposition: absolute;\\n\\t\\ttop: 50%;\\n\\t\\twidth: 40px;\\n\\n\\t}\\n\\n\\t.llms-spinner.small {\\n\\t\\tborder-width: 2px;\\n\\t\\theight: 20px;\\n\\t\\tmargin-left: -10px;\\n\\t\\tmargin-top: -10px;\\n\\t\\twidth: 20px;\\n\\t}\\n\\n\\t@keyframes llms-spinning {\\n\\t\\t0% {\\n\\t\\t\\ttransform: rotate( 0deg )\\n\\t\\t}\\n\\t\\t50% {\\n\\t\\t\\tborder-radius: 5%;\\n\\t\\t}\\n\\t\\t100% {\\n\\t\\t\\ttransform: rotate( 220deg) \\n\\t\\t}\\n\\t}\\n\".replace(/\\n/g,\"\").replace(/\\t/g,\" \").replace(/\\s\\s+/g,\" \"),n.id=t,document.head.appendChild(n)}}function d(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r,e=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];a();const o=l(t);if(!o.length)return null;const d=o[0],c=s(d)||i(d,n);return e&&\"undefined\"!=typeof jQuery?jQuery(c):c}function c(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;l(t).forEach((t=>{const e=d(t,n,!1);e&&(e.style.display=\"block\")}))}function u(t){l(t).forEach((t=>{const n=d(t,r,!1);n&&(n.style.display=\"none\")}))}window.LLMS=window.LLMS||{},window.LLMS.Spinner=n}();\n\n\t/**\n\t * Initializes all classes within the LLMS Namespace\n\t *\n\t * @since Unknown\n\t *\n\t * @return {void}\n\t */\n\tLLMS.init = function() {\n\n\t\tfor (var func in LLMS) {\n\n\t\t\tif ( typeof LLMS[func] === 'object' && LLMS[func] !== null ) {\n\n\t\t\t\tif ( LLMS[func].init !== undefined ) {\n\n\t\t\t\t\tif ( typeof LLMS[func].init === 'function') {\n\t\t\t\t\t\tLLMS[func].init();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t};\n\n\t/**\n\t * Determine if the current device is touch-enabled\n\t *\n\t * @since 3.24.3\n\t *\n\t * @see {@link https://stackoverflow.com/a/4819886/400568}\n\t *\n\t * @return {Boolean} Whether or not the device is touch-enabled.\n\t */\n\tLLMS.is_touch_device = function() {\n\n\t\tvar prefixes = ' -webkit- -moz- -o- -ms- '.split( ' ' );\n\t\tvar mq = function( query ) {\n\t\t\treturn window.matchMedia( query ).matches;\n\t\t}\n\n\t\tif ( ( 'ontouchstart' in window ) || window.DocumentTouch && document instanceof DocumentTouch ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t/**\n\t\t * Include the 'heartz' as a way to have a non matching MQ to help terminate the join.\n\t\t *\n\t\t * @see {@link https://git.io/vznFH}\n\t\t */\n\t\tvar query = ['(', prefixes.join( 'touch-enabled),(' ), 'heartz', ')'].join( '' );\n\t\treturn mq( query );\n\n\t};\n\n\t/**\n\t * Wait for matchHeight to load\n\t *\n\t * @since 3.0.0\n\t * @since 3.16.6 Unknown.\n\t * @since 5.3.3 Pass a dependency name to `wait_for()`.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_matchHeight = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.matchHeight );\n\t\t}, cb, 'matchHeight' );\n\t}\n\n\t/**\n\t * Wait for webuiPopover to load\n\t *\n\t * @since 3.9.1\n\t * @since 3.16.6 Unknown.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_popover = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.webuiPopover );\n\t\t}, cb, 'webuiPopover' );\n\t}\n\n\t/**\n\t * Wait for a dependency to load and then run a callback once it has\n\t *\n\t * Temporary fix for a less-than-optimal assets loading function on the PHP side of things.\n\t *\n\t * @since 3.9.1\n\t * @since 5.3.3 Added optional `name` parameter.\n\t *\n\t * @param {Function} test A function that returns a truthy if the dependency is loaded.\n\t * @param {Function} cb A callback function executed once the dependency is loaded.\n\t * @param {string} name The dependency name.\n\t * @return {void}\n\t */\n\tLLMS.wait_for = function( test, cb, name ) {\n\n\t\tvar counter = 0,\n\t\t\tinterval;\n\n\t\tname = name ? name : 'unnamed';\n\n\t\tinterval = setInterval( function() {\n\n\t\t\t// If we get to 30 seconds log an error message.\n\t\t\tif ( counter >= 300 ) {\n\n\t\t\t\tconsole.log( 'Unable to load dependency: ' + name );\n\n\t\t\t\t// If we can't access yet, increment and wait...\n\t\t\t} else {\n\n\t\t\t\t// Bind the events, we're good!\n\t\t\t\tif ( test() ) {\n\t\t\t\t\tcb();\n\t\t\t\t} else {\n\t\t\t\t\t// console.log( 'Waiting for dependency: ' + name );\n\t\t\t\t\tcounter++;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tclearInterval( interval );\n\n\t\t}, 100 );\n\n\t};\n\n\tLLMS.init( $ );\n\n} )( jQuery );\n"],"sourceRoot":"../../js/private"} \ No newline at end of file +{"version":3,"sources":["llms.js"],"names":[],"mappings":";;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"../../js/llms.js","sourcesContent":["/**\n * Main LLMS Namespace\n *\n * @since 1.0.0\n * @version 5.3.3\n */\n\nvar LLMS = window.LLMS || {};\n( function( $ ){\n\n\t'use strict';\n\n\t/**\n\t * Load all app modules\n\t */\n\t/**\n\t * Front End Achievements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.14.0\n\t * @version 6.10.2\n\t */\n\t\n\tLLMS.Achievements = {\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 4.5.1 Fix conditional loading check.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-achievement' ).length ) {\n\t\n\t\t\t\tvar self = this;\n\t\n\t\t\t\t$( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t\tself.maybe_open();\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t$( '.llms-achievement' ).each( function() {\n\t\n\t\t\t\tself.create_modal( $( this ) );\n\t\n\t\t\t} );\n\t\n\t\t\t$( '.llms-achievement' ).on( 'click', function() {\n\t\n\t\t\t\tvar $this = $( this ),\n\t\t\t\t\tid = 'achievement-' + $this.attr( 'data-id' ),\n\t\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\t\tif ( ! $modal.length ) {\n\t\t\t\t\tself.create_modal( $this );\n\t\t\t\t}\n\t\n\t\t\t\t$modal.iziModal( 'open' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Creates modal a modal for an achievement\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @param obj $el The jQuery selector for the modal card.\n\t\t * @return {void}\n\t\t */\n\t\tcreate_modal: function( $el ) {\n\t\n\t\t\tvar id = 'achievement-' + $el.attr( 'data-id' ),\n\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\tif ( ! $modal.length ) {\n\t\t\t\t$modal = $( '
    ' );\n\t\t\t\t$( 'body' ).append( $modal );\n\t\t\t}\n\t\n\t\t\t$modal.iziModal( {\n\t\t\t\theaderColor: '#3a3a3a',\n\t\t\t\tgroup: 'achievements',\n\t\t\t\thistory: true,\n\t\t\t\tloop: true,\n\t\t\t\toverlayColor: 'rgba( 0, 0, 0, 0.6 )',\n\t\t\t\ttransitionIn: 'fadeInDown',\n\t\t\t\ttransitionOut: 'fadeOutDown',\n\t\t\t\twidth: 340,\n\t\t\t\tonOpening: function( modal ) {\n\t\n\t\t\t\t\tmodal.setTitle( $el.find( '.llms-achievement-title' ).html() );\n\t\t\t\t\tmodal.setSubtitle( $el.find( '.llms-achievement-date' ).html() );\n\t\t\t\t\tmodal.setContent( '
    ' + $el.html() + '
    ' );\n\t\n\t\t\t\t},\n\t\n\t\t\t\tonClosing: function() {\n\t\t\t\t\twindow.history.pushState( '', document.title, window.location.pathname + window.location.search );\n\t\t\t\t},\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * On page load, opens a modal if the URL contains an achievement in the location hash\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 6.10.2 Sanitize achievement IDs before using window.location.hash to trigger the modal open.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tmaybe_open: function() {\n\t\n\t\t\tlet hash = window.location.hash.split( '-' );\n\t\t\tif ( 2 !== hash.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\thash[1] = parseInt( hash[1] );\n\t\t\tif ( '#achievement-' !== hash[0] || ! Number.isInteger( hash[1] ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tconst a = document.querySelector( `a[href=\"${ hash.join( '-' ) }\"]` )\n\t\t\tif ( ! a ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\ta.click();\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Main Ajax class\n\t * Handles Primary Ajax connection\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Ajax = {\n\t\n\t\t/**\n\t\t * Url\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\turl: window.ajaxurl || window.llms.ajaxurl,\n\t\n\t\t/**\n\t\t * Type\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\ttype: 'post',\n\t\n\t\t/**\n\t\t * Data\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tdata: [],\n\t\n\t\t/**\n\t\t * Cache\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tcache: false,\n\t\n\t\t/**\n\t\t * DataType\n\t\t * defaulted to json\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tdataType: 'json',\n\t\n\t\t/**\n\t\t * Async\n\t\t * default to false\n\t\t *\n\t\t * @type {Boolean}\n\t\t */\n\t\tasync: true,\n\t\n\t\tresponse:[],\n\t\n\t\t/**\n\t\t * Initialize Ajax methods\n\t\t *\n\t\t * @since Unknown\n\t\t * @since 4.4.0 Update ajax nonce source.\n\t\t *\n\t\t * @param {Object} obj Options object.\n\t\t * @return {Object}\n\t\t */\n\t\tinit: function( obj ) {\n\t\n\t\t\t// If obj is not of type object or null return false.\n\t\t\tif ( obj === null || typeof obj !== 'object' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\t// set object defaults if values are not supplied\n\t\t\tobj.url = 'url' in obj ? obj.url : this.url;\n\t\t\tobj.type = 'type' \t\tin obj ? obj.type : this.type;\n\t\t\tobj.data = 'data' \t\tin obj ? obj.data : this.data;\n\t\t\tobj.cache = 'cache' \t\tin obj ? obj.cache : this.cache;\n\t\t\tobj.dataType = 'dataType'\tin obj ? obj.dataType : this.dataType;\n\t\t\tobj.async = 'async'\t\tin obj ? obj.async : this.async;\n\t\n\t\t\t// Add nonce to data object.\n\t\t\tobj.data._ajax_nonce = window.llms.ajax_nonce || wp_ajax_data.nonce;\n\t\n\t\t\t// Add post id to data object.\n\t\t\tvar $R = LLMS.Rest,\n\t\t\tquery_vars = $R.get_query_vars();\n\t\t\tobj.data.post_id = 'post' in query_vars ? query_vars.post : null;\n\t\t\tif ( ! obj.data.post_id && $( 'input#post_ID' ).length ) {\n\t\t\t\tobj.data.post_id = $( 'input#post_ID' ).val();\n\t\t\t}\n\t\n\t\t\treturn obj;\n\t\t},\n\t\n\t\t/**\n\t\t * Call\n\t\t * Called by external classes\n\t\t * Sets up jQuery Ajax object\n\t\t *\n\t\t * @param {[object]} [object of ajax settings]\n\t\t * @return {[mixed]} [false if not object or this]\n\t\t */\n\t\tcall: function(obj) {\n\t\n\t\t\t// get default variables if not included in call\n\t\t\tvar settings = this.init( obj );\n\t\n\t\t\t// if init return a response of false\n\t\t\tif ( ! settings) {\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tthis.request( settings );\n\t\t\t}\n\t\n\t\t\treturn this;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Calls jQuery Ajax on settings object\n\t\t *\n\t\t * @return {[object]} [this]\n\t\t */\n\t\trequest: function(settings) {\n\t\n\t\t\t$.ajax( settings );\n\t\n\t\t\treturn this;\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Create a Donut Chart\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.9.0\n\t * @version 4.15.0\n\t *\n\t * @link https://gist.github.com/joeyinbox/8205962\n\t *\n\t * @param {Object} $el jQuery element to draw a chart within.\n\t */\n\t\n\tLLMS.Donut = function( $el ) {\n\t\n\t\t/**\n\t\t * Constructor\n\t\t *\n\t\t * @since 3.9.0\n\t\t * @since 4.15.0 Flip animation in RTL.\n\t\t *\n\t\t * @param {Object} options Donut options.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction Donut(options) {\n\t\n\t\t\tthis.settings = $.extend( {\n\t\t\t\telement: options.element,\n\t\t\t\tpercent: 100\n\t\t\t}, options );\n\t\n\t\t\tthis.circle = this.settings.element.find( 'path' );\n\t\t\tthis.settings.stroke_width = parseInt( this.circle.css( 'stroke-width' ) );\n\t\t\tthis.radius = ( parseInt( this.settings.element.css( 'width' ) ) - this.settings.stroke_width ) / 2;\n\t\t\tthis.angle = $( 'body' ).hasClass( 'rtl' ) ? 82.5 : 97.5; // Origin of the draw at the top of the circle\n\t\t\tthis.i = Math.round( 0.75 * this.settings.percent );\n\t\t\tthis.first = true;\n\t\t\tthis.increment = $( 'body' ).hasClass( 'rtl' ) ? -5 : 5;\n\t\n\t\t\tthis.animate = function() {\n\t\t\t\tthis.timer = setInterval( this.loop.bind( this ), 10 );\n\t\t\t};\n\t\n\t\t\tthis.loop = function() {\n\t\t\t\tthis.angle += this.increment;\n\t\t\t\tthis.angle %= 360;\n\t\t\t\tvar radians = ( this.angle / 180 ) * Math.PI,\n\t\t\t\t\tx = this.radius + this.settings.stroke_width / 2 + Math.cos( radians ) * this.radius,\n\t\t\t\t\ty = this.radius + this.settings.stroke_width / 2 + Math.sin( radians ) * this.radius,\n\t\t\t\t\td;\n\t\t\t\tif (this.first === true) {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' M ' + x + ' ' + y;\n\t\t\t\t\tthis.first = false;\n\t\t\t\t} else {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' L ' + x + ' ' + y;\n\t\t\t\t}\n\t\t\t\tthis.circle.attr( 'd', d );\n\t\t\t\tthis.i--;\n\t\n\t\t\t\tif (this.i <= 0) {\n\t\t\t\t\tclearInterval( this.timer );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\n\t\t/**\n\t\t * Draw donut element\n\t\t *\n\t\t * @since 3.9.0\n\t\t *\n\t\t * @param {Object} $el jQuery element to draw a chart within.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction draw( $el ) {\n\t\t\tvar path = '';\n\t\t\t$el.append( '' + path + '' );\n\t\t\tvar donut = new Donut( {\n\t\t\t\telement: $el,\n\t\t\t\tpercent: $el.attr( 'data-perc' )\n\t\t\t} );\n\t\t\tdonut.animate();\n\t\t}\n\t\n\t\tdraw( $el );\n\t\n\t};\n\t\n\t\t/**\n\t * Forms\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 5.0.0\n\t * @version 7.0.0\n\t */\n\t\n\tLLMS.Forms = {\n\t\n\t\t/**\n\t\t * Stores locale information.\n\t\t *\n\t\t * Added via PHP.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\taddress_info: {},\n\t\n\t\t/**\n\t\t * jQuery ref. to the city text field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$cities: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the countries select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$countries: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the states select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the hidden states holder field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states_holder: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t \t * @since 5.0.0\n\t \t * @since 5.3.3 Move select2 dependency check into the `bind_l10_selects()` method.\n\t \t *\n\t \t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\tif ( ! ( $( 'body' ).hasClass( 'profile-php' ) || $( 'body' ).hasClass( 'user-edit-php' ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.bind_matching_fields();\n\t\t\tself.bind_voucher_field();\n\t\t\tself.bind_edit_account();\n\t\t\tself.bind_l10n_selects();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for the edit account screen.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_edit_account: function() {\n\t\n\t\t\t// Not an edit account form.\n\t\t\tif ( ! $( 'form.llms-person-form.edit-account' ).length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t$( '.llms-toggle-fields' ).on( 'click', this.handle_toggle_click );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events fields with dynamic localization values and language.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 5.3.3 Bind select2-related events after ensuring select2 is available.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_l10n_selects: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.$cities = $( '#llms_billing_city' );\n\t\t\tself.$countries = $( '.llms-l10n-country-select select' );\n\t\t\tself.$states = $( '.llms-l10n-state-select select' );\n\t\t\tself.$zips = $( '#llms_billing_zip' );\n\t\n\t\t\tif ( ! self.$countries.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar isSelect2Available = function() {\n\t\t\t\treturn ( undefined !== $.fn.llmsSelect2 );\n\t\t\t};\n\t\n\t\t\tLLMS.wait_for( isSelect2Available, function() {\n\t\n\t\t\t\tif ( self.$states.length ) {\n\t\t\t\t\tself.prep_state_field();\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.add( self.$states ).llmsSelect2( { width: '100%' } );\n\t\n\t\t\t\tif ( window.llms.address_info ) {\n\t\t\t\t\tself.address_info = JSON.parse( window.llms.address_info );\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.on( 'change', function() {\n\t\n\t\t\t\t\tvar val = $( this ).val();\n\t\t\t\t\tself.update_locale_info( val );\n\t\n\t\t\t\t} ).trigger( 'change' );\n\t\n\t\t\t}, 'llmsSelect2' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Ensure \"matching\" fields match.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tbind_matching_fields: function() {\n\t\n\t\t\tvar $fields = $( 'input[data-match]' ).not( '[type=\"password\"]' );\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\tvar $field = $( this ),\n\t\t\t\t\t$match = $( '#' + $field.attr( 'data-match' ) ),\n\t\t\t\t\t$parents;\n\t\n\t\t\t\tif ( $match.length ) {\n\t\n\t\t\t\t\t$parents = $field.closest( '.llms-form-field' ).add( $match.closest( '.llms-form-field' ) );\n\t\n\t\t\t\t\t$field.on( 'input change', function() {\n\t\n\t\t\t\t\t\tvar val_1 = $field.val(),\n\t\t\t\t\t\t\tval_2 = $match.val();\n\t\n\t\t\t\t\t\tif ( val_1 && val_2 && val_1 !== val_2 ) {\n\t\t\t\t\t\t\t$parents.addClass( 'invalid' );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$parents.removeClass( 'invalid' );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for voucher toggles UX.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_voucher_field: function() {\n\t\n\t\t\t$( '#llms-voucher-toggle' ).on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$( '#llms_voucher' ).toggle();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the parent element for a given field.\n\t\t *\n\t\t * The parent element is hidden when the field isn't required.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 7.0.0 Do not look for a WP column wrapper anymore, always return the field's wrapper div.\n\t\t *\n\t\t * @param {Object} $field jQuery dom object.\n\t\t * @return {Object}\n\t\t */\n\t\tget_field_parent: function( $field ) {\n\t\n\t\t\treturn $field.closest( '.llms-form-field' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the text of a label\n\t\t *\n\t\t * Removes any children HTML elements (eg: required span elements) and returns only the labels text.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $label jQuery object for a label element.\n\t\t * @return {String}\n\t\t */\n\t\tget_label_text: function( $label ) {\n\t\n\t\t\tvar $clone = $label.clone();\n\t\t\t$clone.find( '*' ).remove();\n\t\t\treturn $clone.text().trim();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Callback function to handle the \"toggle\" button links for changing email address and password on account edit forms\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} event Native JS event object.\n\t\t * @return {void}\n\t\t */\n\t\thandle_toggle_click: function( event ) {\n\t\n\t\t\tevent.preventDefault();\n\t\n\t\t\tvar $this = $( this ),\n\t\t\t\t$fields = $( $( this ).attr( 'data-fields' ) ),\n\t\t\t\tisShowing = $this.attr( 'data-is-showing' ) || 'no',\n\t\t\t\tdisplayFunc = 'yes' === isShowing ? 'hide' : 'show',\n\t\t\t\tdisabled = 'yes' === isShowing ? 'disabled' : null,\n\t\t\t\ttextAttr = 'yes' === isShowing ? 'data-change-text' : 'data-cancel-text';\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\t$( this ).closest( '.llms-form-field' )[ displayFunc ]();\n\t\t\t\t$( this ).attr( 'disabled', disabled );\n\t\n\t\t\t} );\n\t\n\t\t\t$this.text( $this.attr( textAttr ) );\n\t\t\t$this.attr( 'data-is-showing', 'yes' === isShowing ? 'no' : 'yes' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Prepares the state select field.\n\t\t *\n\t\t * Moves All optgroup elements into a hidden & disabled select element.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tprep_state_field: function() {\n\t\n\t\t\tvar $parent = this.$states.closest( '.llms-form-field' );\n\t\n\t\t\tthis.$holder = $( '',\n\t\t\t\t{ name: $field.attr('name'), class: $field.attr( 'class' ) + ' hidden', type: 'hidden' }\n\t\t\t).insertAfter( $field );\n\t\t\t$field.attr( 'disabled', 'disabled' );\n\t\t\tthis.get_field_parent( $field ).hide();\n\t\t},\n\t\n\t\t/**\n\t\t * Enable a given field\n\t\t *\n\t\t * It also shows the parent element, and removes the empty hidden input field\n\t\t * previously added by disable_field().\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $field The jQuery object for the field.\n\t\t */\n\t\tenable_field: function( $field ) {\n\t\t\t$field.removeAttr( 'disabled' );\n\t\t\t$field.next( '.hidden[name='+$field.attr('name')+']' ).detach();\n\t\t\tthis.get_field_parent( $field ).show();\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Instructors List\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Instructors = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-instructors' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-instructors .llms-author' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Localization functions for LifterLMS Javascript\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 2.7.3\n\t * @version 2.7.3\n\t *\n\t * @todo we need more robust translation functions to handle sprintf and pluralization\n\t * at this moment we don't need those and haven't stubbed them out\n\t * those will be added when they're needed\n\t */\n\t\n\tLLMS.l10n = LLMS.l10n || {};\n\t\n\tLLMS.l10n.translate = function ( string ) {\n\t\n\t\tvar self = this;\n\t\n\t\tif ( self.strings[string] ) {\n\t\n\t\t\treturn self.strings[string];\n\t\n\t\t} else {\n\t\n\t\t\treturn string;\n\t\n\t\t}\n\t\n\t};\n\t\n\t/**\n\t * Translate and replace placeholders in a string\n\t *\n\t * @example LLMS.l10n.replace( 'This is a %2$s %1$s String', {\n\t * \t'%1$s': 'cool',\n\t * \t\t\t'%2$s': 'very'\n\t * \t\t} );\n\t * \t\tOutput: \"This is a very cool String\"\n\t *\n\t * @param string string text string\n\t * @param object replacements object containing token => replacement pairs\n\t * @return string\n\t * @since 3.16.0\n\t * @version 3.16.0\n\t */\n\tLLMS.l10n.replace = function( string, replacements ) {\n\t\n\t\tvar str = this.translate( string );\n\t\n\t\t$.each( replacements, function( token, value ) {\n\t\n\t\t\tif ( -1 !== token.indexOf( 's' ) ) {\n\t\t\t\tvalue = value.toString();\n\t\t\t} else if ( -1 !== token.indexOf( 'd' ) ) {\n\t\t\t\tvalue = value * 1;\n\t\t\t}\n\t\n\t\t\tstr = str.replace( token, value );\n\t\n\t\t} );\n\t\n\t\treturn str;\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Lesson Preview Elements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.16.12\n\t */\n\t\n\tLLMS.LessonPreview = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$els: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked = $( 'a[href=\"#llms-lesson-locked\"]' );\n\t\n\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\tself.bind();\n\t\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-course-navigation' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.16.12\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked.on( 'click', function() {\n\t\t\t\treturn false;\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseenter', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\tif ( ! $tip.length ) {\n\t\t\t\t\tvar msg = $( this ).attr( 'data-tooltip-msg' );\n\t\t\t\t\tif ( ! msg ) {\n\t\t\t\t\t\tmsg = LLMS.l10n.translate( 'You do not have permission to access this content' );\n\t\t\t\t\t}\n\t\t\t\t\t$tip = self.get_tooltip( msg );\n\t\t\t\t\t$( this ).append( $tip );\n\t\t\t\t}\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t$tip.addClass( 'show' );\n\t\t\t\t}, 10 );\n\t\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseleave', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\t$tip.removeClass( 'show' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of lesson preview items in course navigation blocks\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-course-navigation .llms-lesson-link' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get a tooltip element\n\t\t *\n\t\t * @param string msg message to display inside the tooltip\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.2.4\n\t\t */\n\t\tget_tooltip: function( msg ) {\n\t\t\tvar $el = $( '
    ' );\n\t\t\t$el.append( '
    ' + msg + '
    ' );\n\t\t\treturn $el;\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * LifterLMS Loops JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.14.0\n\t */\n\t\n\tLLMS.Loops = {\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( '.llms-loop' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of .llms-loop-item\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.14.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-loop-item .llms-loop-item-content' ).matchHeight();\n\t\t\t$( '.llms-achievement-loop-item .llms-achievement' ).matchHeight();\n\t\t\t$( '.llms-certificate-loop-item .llms-certificate' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Handle the Collapsible Syllabus Widget / Shortcode\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.OutlineCollapse = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$outlines: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tthis.$outlines = $( '.llms-widget-syllabus--collapsible' );\n\t\n\t\t\tif ( this.$outlines.length ) {\n\t\n\t\t\t\tthis.bind();\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$outlines.each( function() {\n\t\n\t\t\t\tvar $outline = $( this ),\n\t\t\t\t\t$headers = $outline.find( '.llms-section .section-header' );\n\t\n\t\t\t\t// bind header clicks\n\t\t\t\t$headers.on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $toggle = $( this ),\n\t\t\t\t\t\t$section = $toggle.closest( '.llms-section' ),\n\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t\t// bind optional toggle \"buttons\"\n\t\t\t\t$outline.find( '.llms-collapse-toggle' ).on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $btn = $( this ),\n\t\t\t\t\t\taction = $btn.attr( 'data-action' ),\n\t\t\t\t\t\topposite_action = ( 'close' === action ) ? 'opened' : 'closed';\n\t\n\t\t\t\t\t$headers.each( function() {\n\t\n\t\t\t\t\t\tvar $section = $( this ).closest( '.llms-section' ),\n\t\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\t\tif ( opposite_action !== state ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t$( this ).trigger( 'click' );\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Close an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\tclose_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--opened' ).addClass( 'llms-section--closed' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Open an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\topen_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--closed' ).addClass( 'llms-section--opened' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current state (open or closed) of an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return string 'opened' or 'closed'\n\t\t */\n\t\tget_section_state: function( $section ) {\n\t\n\t\t\treturn $section.hasClass( 'llms-section--opened' ) ? 'opened' : 'closed';\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Password Strength Meter for registration and password update fields\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 5.0.0\n\t */\n\t\n\t$.extend( LLMS.PasswordStrength, {\n\t\n\t\t/**\n\t\t * jQuery ref for the password strength meter object.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$meter: $( '.llms-password-strength-meter' ),\n\t\n\t\t/**\n\t\t * jQuery ref for the password field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$pass: null,\n\t\n\t\t/**\n\t\t * jQuery ref for the password confirmation field\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$conf: null,\n\t\n\t\t/**\n\t\t * jQuery ref for form element.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$form: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.7.0 Unknown\n\t\t * @since 5.0.0 Move reference setup to `setup_references()`.\n\t\t * Use `LLMS.wait_for()` for dependency waiting.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( ! this.setup_references() ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tLLMS.wait_for( function() {\n\t\t\t\treturn ( 'undefined' !== typeof wp && 'undefined' !== typeof wp.passwordStrength );\n\t\t\t}, function() {\n\t\t\t\tself.bind();\n\t\t\t\tself.$form.trigger( 'llms-password-strength-ready' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t// add submission event handlers when not on a checkout form\n\t\t\tif ( ! this.$form.hasClass( 'llms-checkout' ) ) {\n\t\t\t\tself.$form.on( 'submit', self, self.submit );\n\t\t\t}\n\t\n\t\t\t// check password strength on keyup\n\t\t\tself.$pass.add( self.$conf ).on( 'keyup', function() {\n\t\t\t\tself.check_strength();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Check the strength of a user entered password\n\t\t * and update elements depending on the current strength\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tcheck_strength: function() {\n\t\n\t\t\tvar $pass_field = this.$pass.closest( '.llms-form-field' ),\n\t\t\t\t$conf_field = this.$conf && this.$conf.length ? this.$conf.closest( '.llms-form-field' ) : null,\n\t\t\t\tpass_length = this.$pass.val().length,\n\t\t\t\tconf_length = this.$conf && this.$conf.length ? this.$conf.val().length : 0;\n\t\n\t\t\t// hide the meter if both fields are empty\n\t\t\tif ( ! pass_length && ! conf_length ) {\n\t\t\t\t$pass_field.removeClass( 'valid invalid' );\n\t\t\t\tif ( $conf_field ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid invalid' );\n\t\t\t\t}\n\t\t\t\tthis.$meter.hide();\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( this.get_current_strength_status() ) {\n\t\t\t\t$pass_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$pass_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tthis.$meter.removeClass( 'too-short very-weak weak medium strong mismatch' );\n\t\t\tthis.$meter.show().addClass( this.get_current_strength( 'slug' ) );\n\t\t\tthis.$meter.html( this.get_current_strength( 'text' ) );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission action called during registration on checkout screen\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param obj self instance of this class\n\t\t * @param Function callback callback function, passes error message or success back to checkout handler\n\t\t * @return void\n\t\t */\n\t\tcheckout: function( self, callback ) {\n\t\n\t\t\tif ( self.get_current_strength_status() ) {\n\t\n\t\t\t\tcallback( true );\n\t\n\t\t\t} else {\n\t\n\t\t\t\tcallback( LLMS.l10n.translate( 'There is an issue with your chosen password.' ) );\n\t\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklisted strings\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blocklist: function() {\n\t\n\t\t\t// Default values from WP Core + any values added via settings filter..\n\t\t\tvar blocklist = wp.passwordStrength.userInputDisallowedList().concat( this.get_setting( 'blocklist', [] ) );\n\t\n\t\t\t// Add values from all text fields in the form.\n\t\t\tthis.$form.find( 'input[type=\"text\"], input[type=\"email\"], input[type=\"tel\"], input[type=\"number\"]' ).each( function() {\n\t\t\t\tvar val = $( this ).val();\n\t\t\t\tif ( val ) {\n\t\t\t\t\tblocklist.push( val );\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\treturn blocklist;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve current strength as a number, a slug, or a translated text string\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @param {String} format Derived return format [int|slug|text] defaults to int.\n\t\t * @return mixed\n\t\t */\n\t\tget_current_strength: function( format ) {\n\t\n\t\t\tformat = format || 'int';\n\t\t\tvar pass = this.$pass.val(),\n\t\t\t\tconf = this.$conf && this.$conf.length ? this.$conf.val() : '',\n\t\t\t\tval;\n\t\n\t\t\t// enforce custom length requirement\n\t\t\tif ( pass.length < this.get_setting( 'min_length', 6 ) ) {\n\t\t\t\tval = -1;\n\t\t\t} else {\n\t\t\t\tval = wp.passwordStrength.meter( pass, this.get_blocklist(), conf );\n\t\t\t\t// 0 & 1 are both very-weak\n\t\t\t\tif ( 0 === val ) {\n\t\t\t\t\tval = 1;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tif ( 'slug' === format ) {\n\t\t\t\treturn this.get_strength_slug( val );\n\t\t\t} else if ( 'text' === format ) {\n\t\t\t\treturn this.get_strength_text( val );\n\t\t\t} else {\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Determines if the current password strength meets the user-defined\n\t\t * minimum password strength requirements\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return boolean\n\t\t */\n\t\tget_current_strength_status: function() {\n\t\t\tvar curr = this.get_current_strength(),\n\t\t\t\tmin = this.get_strength_value( this.get_minimum_strength() );\n\t\t\treturn ( 5 === curr ) ? false : ( curr >= min );\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the minimum password strength for the current form.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Replaces the version output via an inline PHP script in favor of utilizing values configured in the settings object.\n\t\t *\n\t\t * @return {string}\n\t\t */\n\t\tget_minimum_strength: function() {\n\t\t\treturn this.get_setting( 'min_strength', 'strong' );\n\t\t},\n\t\n\t\t/**\n\t\t * Get a setting and fallback to a default value.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {String} key Setting key.\n\t\t * @param {mixed} default_val Default value when the requested setting cannot be located.\n\t\t * @return {mixed}\n\t\t */\n\t\tget_setting: function( key, default_val ) {\n\t\t\tvar settings = this.get_settings();\n\t\t\treturn settings[ key ] ? settings[ key ] : default_val;\n\t\t},\n\t\n\t\t/**\n\t\t * Get the slug associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param int strength_val Strength value number.\n\t\t * @return string\n\t\t */\n\t\tget_strength_slug: function( strength_val ) {\n\t\n\t\t\tvar slugs = {\n\t\t\t\t'-1': 'too-short',\n\t\t\t\t1: 'very-weak',\n\t\t\t\t2: 'weak',\n\t\t\t\t3: 'medium',\n\t\t\t\t4: 'strong',\n\t\t\t\t5: 'mismatch',\n\t\t\t};\n\t\n\t\t\treturn ( slugs[ strength_val ] ) ? slugs[ strength_val ] : slugs[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Gets the translated text associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param {Integer} strength_val Strength value\n\t\t * @return {String}\n\t\t */\n\t\tget_strength_text: function( strength_val ) {\n\t\n\t\t\tvar texts = {\n\t\t\t\t'-1': LLMS.l10n.translate( 'Too Short' ),\n\t\t\t\t1: LLMS.l10n.translate( 'Very Weak' ),\n\t\t\t\t2: LLMS.l10n.translate( 'Weak' ),\n\t\t\t\t3: LLMS.l10n.translate( 'Medium' ),\n\t\t\t\t4: LLMS.l10n.translate( 'Strong' ),\n\t\t\t\t5: LLMS.l10n.translate( 'Mismatch' ),\n\t\t\t};\n\t\n\t\t\treturn ( texts[ strength_val ] ) ? texts[ strength_val ] : texts[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the value associated with a strength slug\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param string strength_slug A strength slug.\n\t\t * @return {Integer}\n\t\t */\n\t\tget_strength_value: function( strength_slug ) {\n\t\n\t\t\tvar values = {\n\t\t\t\t'too-short': -1,\n\t\t\t\t'very-weak': 1,\n\t\t\t\tweak: 2,\n\t\t\t\tmedium: 3,\n\t\t\t\tstrong: 4,\n\t\t\t\tmismatch: 5,\n\t\t\t};\n\t\n\t\t\treturn ( values[ strength_slug ] ) ? values[ strength_slug ] : values.mismatch;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup jQuery references to DOM elements needed to power the password meter.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Boolean} Returns `true` if a meter element and password field are found, otherwise returns `false`.\n\t\t */\n\t\tsetup_references: function() {\n\t\n\t\t\tif ( ! this.$meter.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\tthis.$form = this.$meter.closest( 'form' );\n\t\t\tthis.$pass = this.$form.find( 'input#password' );\n\t\n\t\t\tif ( this.$pass.length && this.$pass.attr( 'data-match' ) ) {\n\t\t\t\tthis.$conf = this.$form.find( '#' + this.$pass.attr( 'data-match' ) );\n\t\t\t}\n\t\n\t\t\treturn ( this.$pass.length > 0 );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission handler for registration and update forms\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow the account edit for to bypass strength checking when the password field is disabled (not being submitted).\n\t\t *\n\t\t * @param obj e Event data.\n\t\t * @return void\n\t\t */\n\t\tsubmit: function( e ) {\n\t\n\t\t\tvar self = e.data;\n\t\t\te.preventDefault();\n\t\t\tself.$pass.trigger( 'keyup' );\n\t\n\t\t\t// Meets the status requirements OR we're on the account edit form and the password field is disabled.\n\t\t\tif ( self.get_current_strength_status() || ( self.$form.hasClass( 'edit-account' ) && 'disabled' === self.$pass.attr( 'disabled' ) ) ) {\n\t\t\t\tself.$form.off( 'submit', self.submit );\n\t\t\t\tself.$form.trigger( 'submit' );\n\t\t\t} else {\n\t\t\t\t$( 'html, body' ).animate( {\n\t\t\t\t\tscrollTop: self.$meter.offset().top - 100,\n\t\t\t\t}, 200 );\n\t\t\t\tself.$meter.hide();\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tself.$meter.fadeIn( 400 );\n\t\t\t\t}, 220 );\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklist strings\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @deprecated 5.0.0 `LLMS.PasswordStrength.get_blacklist()` is deprecated in favor of `LLMS.PasswordStrength.get_blocklist()`.\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blacklist: function() {\n\t\t\tconsole.log( 'Method `get_blacklist()` is deprecated in favor of `get_blocklist()`.' );\n\t\t\treturn this.get_blacklist();\n\t\t},\n\t\n\t} );\n\t\n\t\t/**\n\t * Pricing Table UI\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown.\n\t * @version Unknown.\n\t */\n\t\n\tLLMS.Pricing_Tables = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-access-plans' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t\tthis.$locked = $( 'a[href=\"#llms-plan-locked\"]' );\n\t\n\t\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\t\tLLMS.wait_for_popover( function() {\n\t\t\t\t\t\tself.bind_locked();\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-access-plan-content' ).matchHeight();\n\t\t\t$( '.llms-access-plan-pricing.trial' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup a popover for members-only restricted plans\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.9.1\n\t\t */\n\t\tbind_locked: function() {\n\t\n\t\t\tthis.$locked.each( function() {\n\t\n\t\t\t\t$( this ).webuiPopover( {\n\t\t\t\t\tanimation: 'pop',\n\t\t\t\t\tcloseable: true,\n\t\t\t\t\tcontent: function( e ) {\n\t\t\t\t\t\tvar $content = $( '
    ' );\n\t\t\t\t\t\t$content.append( e.$element.closest( '.llms-access-plan' ).find( '.llms-access-plan-restrictions ul' ).clone() );\n\t\t\t\t\t\treturn $content;\n\t\t\t\t\t},\n\t\t\t\t\tplacement: 'top',\n\t\t\t\t\tstyle: 'inverse',\n\t\t\t\t\ttitle: LLMS.l10n.translate( 'Members Only Pricing' ),\n\t\t\t\t\twidth: '280px',\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Quiz Attempt\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 7.3.0\n\t * @version 7.3.0\n\t */\n\t\n\tLLMS.Quiz_Attempt = {\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\t$( '.llms-quiz-attempt-question-header a.toggle-answer' ).on( 'click', function( e ) {\n\t\n\t\t\t\te.preventDefault();\n\t\n\t\t\t\tvar $curr = $( this ).closest( 'header' ).next( '.llms-quiz-attempt-question-main' );\n\t\n\t\t\t\t$( this ).closest( 'li' ).siblings().find( '.llms-quiz-attempt-question-main' ).slideUp( 200 );\n\t\n\t\t\t\tif ( $curr.is( ':visible' ) ) {\n\t\t\t\t\t$curr.slideUp( 200 );\n\t\t\t\t} else {\n\t\t\t\t\t$curr.slideDown( 200 );\n\t\t\t\t}\n\t\n\t\t\t} );\n\t\t}\n\t\n\t}\n\t\n\t\t/**\n\t * LifterLMS Reviews JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Review = {\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\t// console.log('Initializing Review ');\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * This function binds actions to the appropriate hooks\n\t\t */\n\t\tbind: function() {\n\t\t\t$( '#llms_review_submit_button' ).click(function()\n\t\t\t\t{\n\t\t\t\tif ($( '#review_title' ).val() !== '' && $( '#review_text' ).val() !== '') {\n\t\t\t\t\tjQuery.ajax({\n\t\t\t\t\t\ttype : 'post',\n\t\t\t\t\t\tdataType : 'json',\n\t\t\t\t\t\turl : window.llms.ajaxurl,\n\t\t\t\t\t\tdata : {\n\t\t\t\t\t\t\taction : 'LLMSSubmitReview',\n\t\t\t\t\t\t\treview_title: $( '#review_title' ).val(),\n\t\t\t\t\t\t\treview_text: $( '#review_text' ).val(),\n\t\t\t\t\t\t\tpageID : $( '#post_ID' ).val()\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function()\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( 'Review success' );\n\t\t\t\t\t\t\t$( '#review_box' ).hide( 'swing' );\n\t\t\t\t\t\t\t$( '#thank_you_box' ).show( 'swing' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function(jqXHR, textStatus, errorThrown )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( jqXHR );\n\t\t\t\t\t\t\tconsole.log( textStatus );\n\t\t\t\t\t\t\tconsole.log( errorThrown );\n\t\t\t\t\t\t},\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tif ($( '#review_title' ).val() === '') {\n\t\t\t\t\t\t$( '#review_title_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_title_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t\tif ($( '#review_text' ).val() === '') {\n\t\t\t\t\t\t$( '#review_text_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_text_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\n\t\t\t} else {\n\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t}\n\t\t\t$( '#_llms_display_reviews' ).change(function() {\n\t\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\t\t\t} else {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).removeClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t\t}\n\t\t\t});\n\t\n\t\t},\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/*!\n\t * JavaScript Cookie v2.2.1\n\t * https://github.com/js-cookie/js-cookie\n\t *\n\t * Copyright 2006, 2015 Klaus Hartl & Fagner Brack\n\t * Released under the MIT license\n\t */\n\t;(function (factory) {\n\t\tvar registeredInModuleLoader;\n\t\tif (typeof define === 'function' && define.amd) {\n\t\t\tdefine(factory);\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (typeof exports === 'object') {\n\t\t\tmodule.exports = factory();\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (!registeredInModuleLoader) {\n\t\t\tvar OldCookies = window.Cookies;\n\t\t\tvar api = window.Cookies = factory();\n\t\t\tapi.noConflict = function () {\n\t\t\t\twindow.Cookies = OldCookies;\n\t\t\t\treturn api;\n\t\t\t};\n\t\t}\n\t}(function () {\n\t\tfunction extend () {\n\t\t\tvar i = 0;\n\t\t\tvar result = {};\n\t\t\tfor (; i < arguments.length; i++) {\n\t\t\t\tvar attributes = arguments[ i ];\n\t\t\t\tfor (var key in attributes) {\n\t\t\t\t\tresult[key] = attributes[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t\n\t\tfunction decode (s) {\n\t\t\treturn s.replace(/(%[0-9A-Z]{2})+/g, decodeURIComponent);\n\t\t}\n\t\n\t\tfunction init (converter) {\n\t\t\tfunction api() {}\n\t\n\t\t\tfunction set (key, value, attributes) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tattributes = extend({\n\t\t\t\t\tpath: '/'\n\t\t\t\t}, api.defaults, attributes);\n\t\n\t\t\t\tif (typeof attributes.expires === 'number') {\n\t\t\t\t\tattributes.expires = new Date(new Date() * 1 + attributes.expires * 864e+5);\n\t\t\t\t}\n\t\n\t\t\t\t// We're using \"expires\" because \"max-age\" is not supported by IE\n\t\t\t\tattributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';\n\t\n\t\t\t\ttry {\n\t\t\t\t\tvar result = JSON.stringify(value);\n\t\t\t\t\tif (/^[\\{\\[]/.test(result)) {\n\t\t\t\t\t\tvalue = result;\n\t\t\t\t\t}\n\t\t\t\t} catch (e) {}\n\t\n\t\t\t\tvalue = converter.write ?\n\t\t\t\t\tconverter.write(value, key) :\n\t\t\t\t\tencodeURIComponent(String(value))\n\t\t\t\t\t\t.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);\n\t\n\t\t\t\tkey = encodeURIComponent(String(key))\n\t\t\t\t\t.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent)\n\t\t\t\t\t.replace(/[\\(\\)]/g, escape);\n\t\n\t\t\t\tvar stringifiedAttributes = '';\n\t\t\t\tfor (var attributeName in attributes) {\n\t\t\t\t\tif (!attributes[attributeName]) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tstringifiedAttributes += '; ' + attributeName;\n\t\t\t\t\tif (attributes[attributeName] === true) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Considers RFC 6265 section 5.2:\n\t\t\t\t\t// ...\n\t\t\t\t\t// 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n\t\t\t\t\t// character:\n\t\t\t\t\t// Consume the characters of the unparsed-attributes up to,\n\t\t\t\t\t// not including, the first %x3B (\";\") character.\n\t\t\t\t\t// ...\n\t\t\t\t\tstringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n\t\t\t\t}\n\t\n\t\t\t\treturn (document.cookie = key + '=' + value + stringifiedAttributes);\n\t\t\t}\n\t\n\t\t\tfunction get (key, json) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tvar jar = {};\n\t\t\t\t// To prevent the for loop in the first place assign an empty array\n\t\t\t\t// in case there are no cookies at all.\n\t\t\t\tvar cookies = document.cookie ? document.cookie.split('; ') : [];\n\t\t\t\tvar i = 0;\n\t\n\t\t\t\tfor (; i < cookies.length; i++) {\n\t\t\t\t\tvar parts = cookies[i].split('=');\n\t\t\t\t\tvar cookie = parts.slice(1).join('=');\n\t\n\t\t\t\t\tif (!json && cookie.charAt(0) === '\"') {\n\t\t\t\t\t\tcookie = cookie.slice(1, -1);\n\t\t\t\t\t}\n\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\tvar name = decode(parts[0]);\n\t\t\t\t\t\tcookie = (converter.read || converter)(cookie, name) ||\n\t\t\t\t\t\t\tdecode(cookie);\n\t\n\t\t\t\t\t\tif (json) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tcookie = JSON.parse(cookie);\n\t\t\t\t\t\t\t} catch (e) {}\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tjar[name] = cookie;\n\t\n\t\t\t\t\t\tif (key === name) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch (e) {}\n\t\t\t\t}\n\t\n\t\t\t\treturn key ? jar[key] : jar;\n\t\t\t}\n\t\n\t\t\tapi.set = set;\n\t\t\tapi.get = function (key) {\n\t\t\t\treturn get(key, false /* read as raw */);\n\t\t\t};\n\t\t\tapi.getJSON = function (key) {\n\t\t\t\treturn get(key, true /* read as json */);\n\t\t\t};\n\t\t\tapi.remove = function (key, attributes) {\n\t\t\t\tset(key, '', extend(attributes, {\n\t\t\t\t\texpires: -1\n\t\t\t\t}));\n\t\t\t};\n\t\n\t\t\tapi.defaults = {};\n\t\n\t\t\tapi.withConverter = init;\n\t\n\t\t\treturn api;\n\t\t}\n\t\n\t\treturn init(function () {});\n\t}));\n\t\n\t/**\n\t * Create a no conflict reference to JS Cookies.\n\t *\n\t * @type {Object}\n\t */\n\tLLMS.CookieStore = Cookies.noConflict();\n\t\n\t/**\n\t * Store information in Local Storage by group.\n\t *\n\t * @since 3.36.0\n\t * @since 3.37.14 Use persistent reference to JS Cookies.\n\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t *\n\t * @param string group Storage group id/name.\n\t */\n\tLLMS.Storage = function( group ) {\n\t\n\t\tvar self = this,\n\t\t\tstore = LLMS.CookieStore;\n\t\n\t\t/**\n\t\t * Clear all data for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.clearAll = function() {\n\t\t\tstore.remove( group );\n\t\t};\n\t\n\t\t/**\n\t\t * Clear a single item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.clear = function( key ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdelete data[ key ];\n\t\t\treturn store.set( group, data );\n\t\t};\n\t\n\t\t/**\n\t\t * Retrieve (and parse) all data stored for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getAll = function() {\n\t\t\treturn store.getJSON( group ) || {};\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve an item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param string key Item key/name.\n\t\t * @param mixed default_val Item default value to be returned when item not found in the group.\n\t\t * @return mixed\n\t\t */\n\t\tthis.get = function( key, default_val ) {\n\t\t\tvar data = self.getAll();\n\t\t\treturn data[ key ] ? data[ key ] : default_val;\n\t\t}\n\t\n\t\t/**\n\t\t * Store an item in the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t\t *\n\t\t * @param string key Item key name.\n\t\t * @param mixed val Item value\n\t\t * @return obj\n\t\t */\n\t\tthis.set = function( key, val ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdata[ key ] = val;\n\t\t\treturn store.set( group, data, { sameSite: 'strict' } );\n\t\t};\n\t\n\t}\n\t\n\t\t/**\n\t * Student Dashboard related JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.7.0\n\t * @since 3.10.0 Bind events on the orders screen.\n\t * @since 5.0.0 Removed redundant password toggle logic for edit account screen.\n\t * @version 5.0.0\n\t */\n\tLLMS.StudentDashboard = {\n\t\n\t\t/**\n\t\t * Slug for the current screen/endpoint\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tscreen: '',\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.10.0 Unknown\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-student-dashboard' ).length ) {\n\t\t\t\tthis.bind();\n\t\t\t\tif ( 'orders' === this.get_screen() ) {\n\t\t\t\t\tthis.bind_orders();\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.7.4 Unknown.\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-donut' ).each( function() {\n\t\t\t\tLLMS.Donut( $( this ) );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind events related to the orders screen on the dashboard\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind_orders: function() {\n\t\n\t\t\t$( '#llms-cancel-subscription-form' ).on( 'submit', this.order_cancel_warning );\n\t\t\t$( '#llms_update_payment_method' ).on( 'click', function() {\n\t\t\t\t$( 'input[name=\"llms_payment_gateway\"]:checked' ).trigger( 'change' );\n\t\t\t\t$( this ).closest( 'form' ).find( '.llms-switch-payment-source-main' ).slideToggle( '200' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current dashboard endpoint/tab slug\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tget_screen: function() {\n\t\t\tif ( ! this.screen ) {\n\t\t\t\tthis.screen = $( '.llms-student-dashboard' ).attr( 'data-current' );\n\t\t\t}\n\t\t\treturn this.screen;\n\t\t},\n\t\n\t\t/**\n\t\t * Show a confirmation warning when Cancel Subscription form is submitted\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @param obj e JS event data.\n\t\t * @return void\n\t\t */\n\t\torder_cancel_warning: function( e ) {\n\t\t\te.preventDefault();\n\t\t\tvar msg = LLMS.l10n.translate( 'Are you sure you want to cancel your subscription?' );\n\t\t\tif ( window.confirm( LLMS.l10n.translate( msg ) ) ) {\n\t\t\t\t$( this ).off( 'submit', this.order_cancel_warning );\n\t\t\t\t$( this ).submit();\n\t\t\t}\n\t\t},\n\t\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/**\n\t * User event/interaction tracking.\n\t *\n\t * @since 3.36.0\n\t * @since 3.36.2 Fix JS error when settings aren't loaded.\n\t * @since 3.37.2 When adding an event to the storae also make sure the nonce is set for server-side verification.\n\t * @since 3.37.9 Fix IE compatibility issue related to usage of `Object.assign()`.\n\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t * @since 5.0.0 Set `settings` as an empty object when no settings supplied.\n\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t */\n\tLLMS.Tracking = function( settings ) {\n\t\n\t\tsettings = settings || {};\n\t\n\t\tvar self = this,\n\t\t\tstore = new LLMS.Storage( 'llms-tracking' );\n\t\n\t\tsettings = 'string' === typeof settings ? JSON.parse( settings ) : settings;\n\t\n\t\t/**\n\t\t * Initialize / Bind all tracking event listeners.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 5.0.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t * @since 7.1.0 Do not add a nonce to the datastore by default, will be added/updated\n\t\t * when storing an event to track.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tfunction init() {\n\t\n\t\t\tself.addEvent( 'page.load' );\n\t\n\t\t\twindow.addEventListener( 'beforeunload', onBeforeUnload );\n\t\t\twindow.addEventListener( 'unload', onUnload );\n\t\n\t\t\tdocument.addEventListener( 'visibilitychange', onVisibilityChange );\n\t\n\t\t};\n\t\n\t\t/**\n\t\t * Add an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.36.2 Fix error when settings aren't loaded.\n\t\t * @since 3.37.2 Always make sure the nonce is set for server-side verification.\n\t\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t *\n\t\t * @param string|obj event Event Id (type.event) or a full event object from `this.makeEventObj()`.\n\t\t * @param int args Optional additional arguments to pass to `this.makeEventObj()`.\n\t\t * @return {void}\n\t\t */\n\t\tthis.addEvent = function( event, args ) {\n\t\n\t\t\targs = args || {};\n\t\t\tif ( 'string' === typeof event ) {\n\t\t\t\targs.event = event;\n\t\t\t}\n\t\n\t\t\t// If the event isn't registered in the settings don't proceed.\n\t\t\tif ( !settings.events || -1 === settings.events.indexOf( args.event ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t// Make sure the nonce is set for server-side verification.\n\t\t\tif ( settings.nonce ) {\n\t\t\t\tstore.set( 'nonce', settings.nonce );\n\t\t\t}\n\t\n\t\t\tevent = self.makeEventObj( args );\n\t\n\t\t\tvar all = store.get( 'events', [] );\n\t\t\tall.push( event );\n\t\t\tstore.set( 'events', all );\n\t\n\t\t\t// If couldn't store the latest event because of size limits.\n\t\t\tif ( all.length > store.get( 'events', [] ).length ) {\n\t\n\t\t\t\t// Copy the cookie in a temporary variable.\n\t\t\t\tvar _temp = store.getAll();\n\t\t\t\t// Clear the events from the cookie.\n\t\t\t\tstore.clear('events');\n\t\n\t\t\t\t// Add the latest event to the temporary variable.\n\t\t\t\t_temp['events'].push( event );\n\t\n\t\t\t\t// Send the temporary variable as string via ajax.\n\t\t\t\tLLMS.Ajax.call( {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taction: 'persist_tracking_events',\n\t\t\t\t\t\t'llms-tracking': JSON.stringify(_temp)\n\t\t\t\t\t},\n\t\n\t\t\t\t\terror: function( xhr, status, error ) {\n\t\n\t\t\t\t\t\tconsole.log( xhr, status, error );\n\t\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function( r ) {\n\t\n\t\t\t\t\t\tif ( 'error' === r.code ) {\n\t\t\t\t\t\t\tconsole.log(r.code, r.message);\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve initialization settings.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getSettings = function() {\n\t\t\treturn settings;\n\t\t}\n\t\n\t\t/**\n\t\t * Create an event object suitable to save as an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.37.9 Use `$.extend()` in favor of `Object.assign()`.\n\t\t *\n\t\t * @param obj event {\n\t\t * Event hash\n\t\t *\n\t\t * @param {string} event (Required) Event ID, eg: \"page.load\".\n\t\t * @param {url} url Event URL. (Optional, added automatically) Stored as metadata and used to infer an object_id for post events.\n\t\t * @param {time} float (Optional, added automatically) Timestamp (in milliseconds). Used for the event creation date.\n\t\t * @param {int} obj_id (Optional). The object ID. Inferred automatically via `url` if not provided.\n\t\t * @param {obj} meta (Optional) Hash of metadata to store with the event.\n\t\t * }\n\t\t * @return obj\n\t\t */\n\t\tthis.makeEventObj = function( event ) {\n\t\t\treturn $.extend( event, {\n\t\t\t\turl: window.location.href,\n\t\t\t\ttime: Math.round( new Date().getTime() / 1000 ),\n\t\t\t} );\n\t\t}\n\t\n\t\n\t\t/**\n\t\t * Remove the visibility change event listener on window.beforeunload\n\t\t *\n\t\t * Prevents actual unloading from recording a blur event from the visibility change listener\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onBeforeUnload( e ) {\n\t\t\tdocument.removeEventListener( 'visibilitychange', onVisibilityChange );\n\t\t}\n\t\n\t\t/**\n\t\t * Record a `page.exit` event on window.unload.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onUnload( e ) {\n\t\t\tself.addEvent( 'page.exit' );\n\t\t}\n\t\n\t\t/**\n\t\t * Record `page.blur` and `page.focus` events via document.visilibitychange events.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onVisibilityChange( e ) {\n\t\n\t\t\tvar event = document.hidden ? 'page.blur' : 'page.focus';\n\t\t\tself.addEvent( event );\n\t\n\t\t}\n\t\n\t\t// Initialize on the frontend only.\n\t\tif ( ! $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\tinit();\n\t\t}\n\t\n\t};\n\t\n\tllms.tracking = new LLMS.Tracking( llms.tracking );\n\t\n\t\t/**\n\t * Rest Methods\n\t * Manages URL and Rest object parsing\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Rest = {\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\t},\n\t\n\t\t/**\n\t\t * Searches for string matches in url path\n\t\t *\n\t\t * @param {Array} strings [Array of strings to search for matches]\n\t\t * @return {Boolean} [Was a match found?]\n\t\t */\n\t\tis_path: function( strings ) {\n\t\n\t\t\tvar path_exists = false,\n\t\t\t\turl = window.location.href;\n\t\n\t\t\tfor ( var i = 0; i < strings.length; i++ ) {\n\t\n\t\t\t\tif ( url.search( strings[i] ) > 0 && ! path_exists ) {\n\t\n\t\t\t\t\tpath_exists = true;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn path_exists;\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieves query variables\n\t\t *\n\t\t * @return {[Array]} [array object of query variable key=>value pairs]\n\t\t */\n\t\tget_query_vars: function() {\n\t\n\t\t\tvar vars = [], hash,\n\t\t\t\thashes = window.location.href.slice( window.location.href.indexOf( '?' ) + 1 ).split( '&' );\n\t\n\t\t\tfor (var i = 0; i < hashes.length; i++) {\n\t\t\t\thash = hashes[i].split( '=' );\n\t\t\t\tvars.push( hash[0] );\n\t\t\t\tvars[hash[0]] = hash[1];\n\t\t\t}\n\t\n\t\t\treturn vars;\n\t\t}\n\t\n\t};\n\t\n\n\t!function(){\"use strict\";var t={d:function(n,e){for(var r in e)t.o(e,r)&&!t.o(n,r)&&Object.defineProperty(n,r,{enumerable:!0,get:e[r]})},o:function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r:function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})}},n={};t.r(n),t.d(n,{get:function(){return d},start:function(){return c},stop:function(){return u}});const e=\"llms-spinning\",r=\"default\";var o=window.wp.i18n;function i(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;const i=document.createElement(\"div\"),l=(0,o.__)(\"Loading…\",\"lifterlms\");return i.innerHTML=`${l}`,i.classList.add(e),t.appendChild(i),i}function l(t){if((t=\"string\"==typeof t?document.querySelectorAll(t):t)instanceof NodeList)return Array.from(t);const n=[];return t instanceof Element?n.push(t):\"undefined\"!=typeof jQuery&&t instanceof jQuery&&t.toArray().forEach((t=>n.push(t))),n}function s(t){const n=t.querySelectorAll(\".llms-spinning\");return n.length?Array.from(n).find((n=>t===n.parentNode)):null}function a(){const t=\"llms-spinner-styles\";if(!document.getElementById(t)){const n=document.createElement(\"style\");n.textContent=\"\\n\\t.llms-spinning {\\n\\t\\tbackground: rgba( 250, 250, 250, 0.7 );\\n\\t\\tbottom: 0;\\n\\t\\tdisplay: none;\\n\\t\\tleft: 0;\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\ttop: 0;\\n\\t\\tz-index: 2;\\n\\t}\\n\\n\\t.llms-spinner {\\n\\t\\tanimation: llms-spinning 1.5s linear infinite;\\n\\t\\tbox-sizing: border-box;\\n\\t\\tborder: 4px solid #313131;\\n\\t\\tborder-radius: 50%;\\n\\t\\theight: 40px;\\n\\t\\tleft: 50%;\\n\\t\\tmargin-left: -20px;\\n\\t\\tmargin-top: -20px;\\n\\t\\tposition: absolute;\\n\\t\\ttop: 50%;\\n\\t\\twidth: 40px;\\n\\n\\t}\\n\\n\\t.llms-spinner.small {\\n\\t\\tborder-width: 2px;\\n\\t\\theight: 20px;\\n\\t\\tmargin-left: -10px;\\n\\t\\tmargin-top: -10px;\\n\\t\\twidth: 20px;\\n\\t}\\n\\n\\t@keyframes llms-spinning {\\n\\t\\t0% {\\n\\t\\t\\ttransform: rotate( 0deg )\\n\\t\\t}\\n\\t\\t50% {\\n\\t\\t\\tborder-radius: 5%;\\n\\t\\t}\\n\\t\\t100% {\\n\\t\\t\\ttransform: rotate( 220deg) \\n\\t\\t}\\n\\t}\\n\".replace(/\\n/g,\"\").replace(/\\t/g,\" \").replace(/\\s\\s+/g,\" \"),n.id=t,document.head.appendChild(n)}}function d(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r,e=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];a();const o=l(t);if(!o.length)return null;const d=o[0],c=s(d)||i(d,n);return e&&\"undefined\"!=typeof jQuery?jQuery(c):c}function c(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;l(t).forEach((t=>{const e=d(t,n,!1);e&&(e.style.display=\"block\")}))}function u(t){l(t).forEach((t=>{const n=d(t,r,!1);n&&(n.style.display=\"none\")}))}window.LLMS=window.LLMS||{},window.LLMS.Spinner=n}();\n\n\t/**\n\t * Initializes all classes within the LLMS Namespace\n\t *\n\t * @since Unknown\n\t *\n\t * @return {void}\n\t */\n\tLLMS.init = function() {\n\n\t\tfor (var func in LLMS) {\n\n\t\t\tif ( typeof LLMS[func] === 'object' && LLMS[func] !== null ) {\n\n\t\t\t\tif ( LLMS[func].init !== undefined ) {\n\n\t\t\t\t\tif ( typeof LLMS[func].init === 'function') {\n\t\t\t\t\t\tLLMS[func].init();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t};\n\n\t/**\n\t * Determine if the current device is touch-enabled\n\t *\n\t * @since 3.24.3\n\t *\n\t * @see {@link https://stackoverflow.com/a/4819886/400568}\n\t *\n\t * @return {Boolean} Whether or not the device is touch-enabled.\n\t */\n\tLLMS.is_touch_device = function() {\n\n\t\tvar prefixes = ' -webkit- -moz- -o- -ms- '.split( ' ' );\n\t\tvar mq = function( query ) {\n\t\t\treturn window.matchMedia( query ).matches;\n\t\t}\n\n\t\tif ( ( 'ontouchstart' in window ) || window.DocumentTouch && document instanceof DocumentTouch ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t/**\n\t\t * Include the 'heartz' as a way to have a non matching MQ to help terminate the join.\n\t\t *\n\t\t * @see {@link https://git.io/vznFH}\n\t\t */\n\t\tvar query = ['(', prefixes.join( 'touch-enabled),(' ), 'heartz', ')'].join( '' );\n\t\treturn mq( query );\n\n\t};\n\n\t/**\n\t * Wait for matchHeight to load\n\t *\n\t * @since 3.0.0\n\t * @since 3.16.6 Unknown.\n\t * @since 5.3.3 Pass a dependency name to `wait_for()`.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_matchHeight = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.matchHeight );\n\t\t}, cb, 'matchHeight' );\n\t}\n\n\t/**\n\t * Wait for webuiPopover to load\n\t *\n\t * @since 3.9.1\n\t * @since 3.16.6 Unknown.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_popover = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.webuiPopover );\n\t\t}, cb, 'webuiPopover' );\n\t}\n\n\t/**\n\t * Wait for a dependency to load and then run a callback once it has\n\t *\n\t * Temporary fix for a less-than-optimal assets loading function on the PHP side of things.\n\t *\n\t * @since 3.9.1\n\t * @since 5.3.3 Added optional `name` parameter.\n\t *\n\t * @param {Function} test A function that returns a truthy if the dependency is loaded.\n\t * @param {Function} cb A callback function executed once the dependency is loaded.\n\t * @param {string} name The dependency name.\n\t * @return {void}\n\t */\n\tLLMS.wait_for = function( test, cb, name ) {\n\n\t\tvar counter = 0,\n\t\t\tinterval;\n\n\t\tname = name ? name : 'unnamed';\n\n\t\tinterval = setInterval( function() {\n\n\t\t\t// If we get to 30 seconds log an error message.\n\t\t\tif ( counter >= 300 ) {\n\n\t\t\t\tconsole.log( 'Unable to load dependency: ' + name );\n\n\t\t\t\t// If we can't access yet, increment and wait...\n\t\t\t} else {\n\n\t\t\t\t// Bind the events, we're good!\n\t\t\t\tif ( test() ) {\n\t\t\t\t\tcb();\n\t\t\t\t} else {\n\t\t\t\t\t// console.log( 'Waiting for dependency: ' + name );\n\t\t\t\t\tcounter++;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tclearInterval( interval );\n\n\t\t}, 100 );\n\n\t};\n\n\tLLMS.init( $ );\n\n} )( jQuery );\n"],"sourceRoot":"../../js/private"} \ No newline at end of file diff --git a/assets/maps/js/llms.min.js.map b/assets/maps/js/llms.min.js.map index 07d54d9a63..bf89111063 100644 --- a/assets/maps/js/llms.min.js.map +++ b/assets/maps/js/llms.min.js.map @@ -1 +1 @@ -{"version":3,"sources":["llms.js"],"names":["LLMS","window","$","factory","OldCookies","api","Achievements","init","self","length","this","bind","maybe_open","each","create_modal","on","$this","id","attr","$modal","iziModal","$el","append","headerColor","group","history","loop","overlayColor","transitionIn","transitionOut","width","onOpening","modal","setTitle","find","html","setSubtitle","setContent","onClosing","pushState","document","title","location","pathname","search","let","hash","split","parseInt","Number","isInteger","a","querySelector","join","click","Ajax","url","ajaxurl","llms","type","data","cache","dataType","async","response","obj","_ajax_nonce","ajax_nonce","wp_ajax_data","nonce","query_vars","Rest","get_query_vars","post_id","post","val","call","settings","request","ajax","Donut","options","extend","element","percent","circle","stroke_width","css","radius","angle","hasClass","i","Math","round","first","increment","animate","timer","setInterval","d","radians","PI","x","cos","y","sin","clearInterval","Forms","address_info","$cities","$countries","$states","$states_holder","bind_matching_fields","bind_voucher_field","bind_edit_account","bind_l10n_selects","handle_toggle_click","$zips","wait_for","undefined","fn","llmsSelect2","prep_state_field","add","JSON","parse","update_locale_info","trigger","not","$parents","$field","$match","closest","val_1","val_2","addClass","removeClass","e","preventDefault","toggle","get_field_parent","get_label_text","$label","$clone","clone","remove","text","trim","event","$fields","isShowing","displayFunc","disabled","textAttr","$parent","$holder","appendTo","update_label","$required","country_code","info","update_state_options","state","update_locale_info_for_field","city","postcode","label","enable_field","disable_field","opts","name","class","insertAfter","hide","removeAttr","next","detach","show","Instructors","wait_for_matchHeight","matchHeight","l10n","translate","string","strings","replace","replacements","str","token","value","indexOf","toString","LessonPreview","$els","$locked","match_height","msg","$tip","get_tooltip","setTimeout","Loops","OutlineCollapse","$outlines","$outline","$headers","$section","get_section_state","open_section","close_section","opposite_action","PasswordStrength","$meter","$pass","$conf","$form","setup_references","wp","passwordStrength","submit","check_strength","$pass_field","$conf_field","pass_length","conf_length","get_current_strength_status","get_current_strength","checkout","callback","get_blocklist","blocklist","userInputDisallowedList","concat","get_setting","push","format","pass","conf","meter","get_strength_slug","get_strength_text","curr","min","get_strength_value","get_minimum_strength","key","default_val","get_settings","strength_val","slugs","-1","1","2","3","4","5","texts","strength_slug","values","too-short","very-weak","weak","medium","strong","mismatch","off","scrollTop","offset","top","fadeIn","get_blacklist","console","log","Pricing_Tables","wait_for_popover","bind_locked","webuiPopover","animation","closeable","content","$content","$element","placement","style","Review","jQuery","action","review_title","review_text","pageID","success","error","jqXHR","textStatus","errorThrown","change","result","arguments","attributes","decode","s","decodeURIComponent","converter","set","path","defaults","expires","Date","toUTCString","stringify","test","write","encodeURIComponent","String","escape","attributeName","stringifiedAttributes","cookie","get","json","jar","cookies","parts","slice","charAt","read","getJSON","withConverter","define","amd","registeredInModuleLoader","exports","module","Cookies","noConflict","CookieStore","Storage","store","clearAll","clear","getAll","sameSite","StudentDashboard","screen","get_screen","bind_orders","order_cancel_warning","slideToggle","confirm","Tracking","onBeforeUnload","removeEventListener","onVisibilityChange","onUnload","addEvent","hidden","args","events","makeEventObj","all","_temp","llms-tracking","xhr","status","r","code","message","getSettings","href","time","getTime","addEventListener","tracking","is_path","path_exists","vars","hashes","t","n","o","Object","defineProperty","enumerable","prototype","hasOwnProperty","Symbol","toStringTag","start","c","stop","u","i18n","l","querySelectorAll","NodeList","Array","from","Element","toArray","forEach","getElementById","createElement","textContent","head","appendChild","parentNode","__","innerHTML","classList","display","Spinner","func","is_touch_device","prefixes","DocumentTouch","query","matchMedia","matches","cb","interval","counter"],"mappings":"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","file":"../../js/llms.min.js","sourcesContent":["/**\n * Main LLMS Namespace\n *\n * @since 1.0.0\n * @version 5.3.3\n */\n\nvar LLMS = window.LLMS || {};\n( function( $ ){\n\n\t'use strict';\n\n\t/**\n\t * Load all app modules\n\t */\n\t/**\n\t * Front End Achievements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.14.0\n\t * @version 6.10.2\n\t */\n\t\n\tLLMS.Achievements = {\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 4.5.1 Fix conditional loading check.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-achievement' ).length ) {\n\t\n\t\t\t\tvar self = this;\n\t\n\t\t\t\t$( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t\tself.maybe_open();\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t$( '.llms-achievement' ).each( function() {\n\t\n\t\t\t\tself.create_modal( $( this ) );\n\t\n\t\t\t} );\n\t\n\t\t\t$( '.llms-achievement' ).on( 'click', function() {\n\t\n\t\t\t\tvar $this = $( this ),\n\t\t\t\t\tid = 'achievement-' + $this.attr( 'data-id' ),\n\t\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\t\tif ( ! $modal.length ) {\n\t\t\t\t\tself.create_modal( $this );\n\t\t\t\t}\n\t\n\t\t\t\t$modal.iziModal( 'open' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Creates modal a modal for an achievement\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @param obj $el The jQuery selector for the modal card.\n\t\t * @return {void}\n\t\t */\n\t\tcreate_modal: function( $el ) {\n\t\n\t\t\tvar id = 'achievement-' + $el.attr( 'data-id' ),\n\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\tif ( ! $modal.length ) {\n\t\t\t\t$modal = $( '
    ' );\n\t\t\t\t$( 'body' ).append( $modal );\n\t\t\t}\n\t\n\t\t\t$modal.iziModal( {\n\t\t\t\theaderColor: '#3a3a3a',\n\t\t\t\tgroup: 'achievements',\n\t\t\t\thistory: true,\n\t\t\t\tloop: true,\n\t\t\t\toverlayColor: 'rgba( 0, 0, 0, 0.6 )',\n\t\t\t\ttransitionIn: 'fadeInDown',\n\t\t\t\ttransitionOut: 'fadeOutDown',\n\t\t\t\twidth: 340,\n\t\t\t\tonOpening: function( modal ) {\n\t\n\t\t\t\t\tmodal.setTitle( $el.find( '.llms-achievement-title' ).html() );\n\t\t\t\t\tmodal.setSubtitle( $el.find( '.llms-achievement-date' ).html() );\n\t\t\t\t\tmodal.setContent( '
    ' + $el.html() + '
    ' );\n\t\n\t\t\t\t},\n\t\n\t\t\t\tonClosing: function() {\n\t\t\t\t\twindow.history.pushState( '', document.title, window.location.pathname + window.location.search );\n\t\t\t\t},\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * On page load, opens a modal if the URL contains an achievement in the location hash\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 6.10.2 Sanitize achievement IDs before using window.location.hash to trigger the modal open.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tmaybe_open: function() {\n\t\n\t\t\tlet hash = window.location.hash.split( '-' );\n\t\t\tif ( 2 !== hash.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\thash[1] = parseInt( hash[1] );\n\t\t\tif ( '#achievement-' !== hash[0] || ! Number.isInteger( hash[1] ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tconst a = document.querySelector( `a[href=\"${ hash.join( '-' ) }\"]` )\n\t\t\tif ( ! a ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\ta.click();\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Main Ajax class\n\t * Handles Primary Ajax connection\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Ajax = {\n\t\n\t\t/**\n\t\t * Url\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\turl: window.ajaxurl || window.llms.ajaxurl,\n\t\n\t\t/**\n\t\t * Type\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\ttype: 'post',\n\t\n\t\t/**\n\t\t * Data\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tdata: [],\n\t\n\t\t/**\n\t\t * Cache\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tcache: false,\n\t\n\t\t/**\n\t\t * DataType\n\t\t * defaulted to json\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tdataType: 'json',\n\t\n\t\t/**\n\t\t * Async\n\t\t * default to false\n\t\t *\n\t\t * @type {Boolean}\n\t\t */\n\t\tasync: true,\n\t\n\t\tresponse:[],\n\t\n\t\t/**\n\t\t * Initialize Ajax methods\n\t\t *\n\t\t * @since Unknown\n\t\t * @since 4.4.0 Update ajax nonce source.\n\t\t *\n\t\t * @param {Object} obj Options object.\n\t\t * @return {Object}\n\t\t */\n\t\tinit: function( obj ) {\n\t\n\t\t\t// If obj is not of type object or null return false.\n\t\t\tif ( obj === null || typeof obj !== 'object' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\t// set object defaults if values are not supplied\n\t\t\tobj.url = 'url' in obj ? obj.url : this.url;\n\t\t\tobj.type = 'type' \t\tin obj ? obj.type : this.type;\n\t\t\tobj.data = 'data' \t\tin obj ? obj.data : this.data;\n\t\t\tobj.cache = 'cache' \t\tin obj ? obj.cache : this.cache;\n\t\t\tobj.dataType = 'dataType'\tin obj ? obj.dataType : this.dataType;\n\t\t\tobj.async = 'async'\t\tin obj ? obj.async : this.async;\n\t\n\t\t\t// Add nonce to data object.\n\t\t\tobj.data._ajax_nonce = window.llms.ajax_nonce || wp_ajax_data.nonce;\n\t\n\t\t\t// Add post id to data object.\n\t\t\tvar $R = LLMS.Rest,\n\t\t\tquery_vars = $R.get_query_vars();\n\t\t\tobj.data.post_id = 'post' in query_vars ? query_vars.post : null;\n\t\t\tif ( ! obj.data.post_id && $( 'input#post_ID' ).length ) {\n\t\t\t\tobj.data.post_id = $( 'input#post_ID' ).val();\n\t\t\t}\n\t\n\t\t\treturn obj;\n\t\t},\n\t\n\t\t/**\n\t\t * Call\n\t\t * Called by external classes\n\t\t * Sets up jQuery Ajax object\n\t\t *\n\t\t * @param {[object]} [object of ajax settings]\n\t\t * @return {[mixed]} [false if not object or this]\n\t\t */\n\t\tcall: function(obj) {\n\t\n\t\t\t// get default variables if not included in call\n\t\t\tvar settings = this.init( obj );\n\t\n\t\t\t// if init return a response of false\n\t\t\tif ( ! settings) {\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tthis.request( settings );\n\t\t\t}\n\t\n\t\t\treturn this;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Calls jQuery Ajax on settings object\n\t\t *\n\t\t * @return {[object]} [this]\n\t\t */\n\t\trequest: function(settings) {\n\t\n\t\t\t$.ajax( settings );\n\t\n\t\t\treturn this;\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Create a Donut Chart\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.9.0\n\t * @version 4.15.0\n\t *\n\t * @link https://gist.github.com/joeyinbox/8205962\n\t *\n\t * @param {Object} $el jQuery element to draw a chart within.\n\t */\n\t\n\tLLMS.Donut = function( $el ) {\n\t\n\t\t/**\n\t\t * Constructor\n\t\t *\n\t\t * @since 3.9.0\n\t\t * @since 4.15.0 Flip animation in RTL.\n\t\t *\n\t\t * @param {Object} options Donut options.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction Donut(options) {\n\t\n\t\t\tthis.settings = $.extend( {\n\t\t\t\telement: options.element,\n\t\t\t\tpercent: 100\n\t\t\t}, options );\n\t\n\t\t\tthis.circle = this.settings.element.find( 'path' );\n\t\t\tthis.settings.stroke_width = parseInt( this.circle.css( 'stroke-width' ) );\n\t\t\tthis.radius = ( parseInt( this.settings.element.css( 'width' ) ) - this.settings.stroke_width ) / 2;\n\t\t\tthis.angle = $( 'body' ).hasClass( 'rtl' ) ? 82.5 : 97.5; // Origin of the draw at the top of the circle\n\t\t\tthis.i = Math.round( 0.75 * this.settings.percent );\n\t\t\tthis.first = true;\n\t\t\tthis.increment = $( 'body' ).hasClass( 'rtl' ) ? -5 : 5;\n\t\n\t\t\tthis.animate = function() {\n\t\t\t\tthis.timer = setInterval( this.loop.bind( this ), 10 );\n\t\t\t};\n\t\n\t\t\tthis.loop = function() {\n\t\t\t\tthis.angle += this.increment;\n\t\t\t\tthis.angle %= 360;\n\t\t\t\tvar radians = ( this.angle / 180 ) * Math.PI,\n\t\t\t\t\tx = this.radius + this.settings.stroke_width / 2 + Math.cos( radians ) * this.radius,\n\t\t\t\t\ty = this.radius + this.settings.stroke_width / 2 + Math.sin( radians ) * this.radius,\n\t\t\t\t\td;\n\t\t\t\tif (this.first === true) {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' M ' + x + ' ' + y;\n\t\t\t\t\tthis.first = false;\n\t\t\t\t} else {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' L ' + x + ' ' + y;\n\t\t\t\t}\n\t\t\t\tthis.circle.attr( 'd', d );\n\t\t\t\tthis.i--;\n\t\n\t\t\t\tif (this.i <= 0) {\n\t\t\t\t\tclearInterval( this.timer );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\n\t\t/**\n\t\t * Draw donut element\n\t\t *\n\t\t * @since 3.9.0\n\t\t *\n\t\t * @param {Object} $el jQuery element to draw a chart within.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction draw( $el ) {\n\t\t\tvar path = '';\n\t\t\t$el.append( '' + path + '' );\n\t\t\tvar donut = new Donut( {\n\t\t\t\telement: $el,\n\t\t\t\tpercent: $el.attr( 'data-perc' )\n\t\t\t} );\n\t\t\tdonut.animate();\n\t\t}\n\t\n\t\tdraw( $el );\n\t\n\t};\n\t\n\t\t/**\n\t * Forms\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 5.0.0\n\t * @version 7.0.0\n\t */\n\t\n\tLLMS.Forms = {\n\t\n\t\t/**\n\t\t * Stores locale information.\n\t\t *\n\t\t * Added via PHP.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\taddress_info: {},\n\t\n\t\t/**\n\t\t * jQuery ref. to the city text field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$cities: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the countries select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$countries: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the states select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the hidden states holder field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states_holder: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t \t * @since 5.0.0\n\t \t * @since 5.3.3 Move select2 dependency check into the `bind_l10_selects()` method.\n\t \t *\n\t \t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\tif ( ! ( $( 'body' ).hasClass( 'profile-php' ) || $( 'body' ).hasClass( 'user-edit-php' ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.bind_matching_fields();\n\t\t\tself.bind_voucher_field();\n\t\t\tself.bind_edit_account();\n\t\t\tself.bind_l10n_selects();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for the edit account screen.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_edit_account: function() {\n\t\n\t\t\t// Not an edit account form.\n\t\t\tif ( ! $( 'form.llms-person-form.edit-account' ).length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t$( '.llms-toggle-fields' ).on( 'click', this.handle_toggle_click );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events fields with dynamic localization values and language.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 5.3.3 Bind select2-related events after ensuring select2 is available.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_l10n_selects: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.$cities = $( '#llms_billing_city' );\n\t\t\tself.$countries = $( '.llms-l10n-country-select select' );\n\t\t\tself.$states = $( '.llms-l10n-state-select select' );\n\t\t\tself.$zips = $( '#llms_billing_zip' );\n\t\n\t\t\tif ( ! self.$countries.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar isSelect2Available = function() {\n\t\t\t\treturn ( undefined !== $.fn.llmsSelect2 );\n\t\t\t};\n\t\n\t\t\tLLMS.wait_for( isSelect2Available, function() {\n\t\n\t\t\t\tif ( self.$states.length ) {\n\t\t\t\t\tself.prep_state_field();\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.add( self.$states ).llmsSelect2( { width: '100%' } );\n\t\n\t\t\t\tif ( window.llms.address_info ) {\n\t\t\t\t\tself.address_info = JSON.parse( window.llms.address_info );\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.on( 'change', function() {\n\t\n\t\t\t\t\tvar val = $( this ).val();\n\t\t\t\t\tself.update_locale_info( val );\n\t\n\t\t\t\t} ).trigger( 'change' );\n\t\n\t\t\t}, 'llmsSelect2' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Ensure \"matching\" fields match.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tbind_matching_fields: function() {\n\t\n\t\t\tvar $fields = $( 'input[data-match]' ).not( '[type=\"password\"]' );\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\tvar $field = $( this ),\n\t\t\t\t\t$match = $( '#' + $field.attr( 'data-match' ) ),\n\t\t\t\t\t$parents;\n\t\n\t\t\t\tif ( $match.length ) {\n\t\n\t\t\t\t\t$parents = $field.closest( '.llms-form-field' ).add( $match.closest( '.llms-form-field' ) );\n\t\n\t\t\t\t\t$field.on( 'input change', function() {\n\t\n\t\t\t\t\t\tvar val_1 = $field.val(),\n\t\t\t\t\t\t\tval_2 = $match.val();\n\t\n\t\t\t\t\t\tif ( val_1 && val_2 && val_1 !== val_2 ) {\n\t\t\t\t\t\t\t$parents.addClass( 'invalid' );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$parents.removeClass( 'invalid' );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for voucher toggles UX.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_voucher_field: function() {\n\t\n\t\t\t$( '#llms-voucher-toggle' ).on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$( '#llms_voucher' ).toggle();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the parent element for a given field.\n\t\t *\n\t\t * The parent element is hidden when the field isn't required.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 7.0.0 Do not look for a WP column wrapper anymore, always return the field's wrapper div.\n\t\t *\n\t\t * @param {Object} $field jQuery dom object.\n\t\t * @return {Object}\n\t\t */\n\t\tget_field_parent: function( $field ) {\n\t\n\t\t\treturn $field.closest( '.llms-form-field' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the text of a label\n\t\t *\n\t\t * Removes any children HTML elements (eg: required span elements) and returns only the labels text.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $label jQuery object for a label element.\n\t\t * @return {String}\n\t\t */\n\t\tget_label_text: function( $label ) {\n\t\n\t\t\tvar $clone = $label.clone();\n\t\t\t$clone.find( '*' ).remove();\n\t\t\treturn $clone.text().trim();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Callback function to handle the \"toggle\" button links for changing email address and password on account edit forms\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} event Native JS event object.\n\t\t * @return {void}\n\t\t */\n\t\thandle_toggle_click: function( event ) {\n\t\n\t\t\tevent.preventDefault();\n\t\n\t\t\tvar $this = $( this ),\n\t\t\t\t$fields = $( $( this ).attr( 'data-fields' ) ),\n\t\t\t\tisShowing = $this.attr( 'data-is-showing' ) || 'no',\n\t\t\t\tdisplayFunc = 'yes' === isShowing ? 'hide' : 'show',\n\t\t\t\tdisabled = 'yes' === isShowing ? 'disabled' : null,\n\t\t\t\ttextAttr = 'yes' === isShowing ? 'data-change-text' : 'data-cancel-text';\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\t$( this ).closest( '.llms-form-field' )[ displayFunc ]();\n\t\t\t\t$( this ).attr( 'disabled', disabled );\n\t\n\t\t\t} );\n\t\n\t\t\t$this.text( $this.attr( textAttr ) );\n\t\t\t$this.attr( 'data-is-showing', 'yes' === isShowing ? 'no' : 'yes' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Prepares the state select field.\n\t\t *\n\t\t * Moves All optgroup elements into a hidden & disabled select element.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tprep_state_field: function() {\n\t\n\t\t\tvar $parent = this.$states.closest( '.llms-form-field' );\n\t\n\t\t\tthis.$holder = $( '',\n\t\t\t\t{ name: $field.attr('name'), class: $field.attr( 'class' ) + ' hidden', type: 'hidden' }\n\t\t\t).insertAfter( $field );\n\t\t\t$field.attr( 'disabled', 'disabled' );\n\t\t\tthis.get_field_parent( $field ).hide();\n\t\t},\n\t\n\t\t/**\n\t\t * Enable a given field\n\t\t *\n\t\t * It also shows the parent element, and removes the empty hidden input field\n\t\t * previously added by disable_field().\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $field The jQuery object for the field.\n\t\t */\n\t\tenable_field: function( $field ) {\n\t\t\t$field.removeAttr( 'disabled' );\n\t\t\t$field.next( '.hidden[name='+$field.attr('name')+']' ).detach();\n\t\t\tthis.get_field_parent( $field ).show();\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Instructors List\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Instructors = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-instructors' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-instructors .llms-author' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Localization functions for LifterLMS Javascript\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 2.7.3\n\t * @version 2.7.3\n\t *\n\t * @todo we need more robust translation functions to handle sprintf and pluralization\n\t * at this moment we don't need those and haven't stubbed them out\n\t * those will be added when they're needed\n\t */\n\t\n\tLLMS.l10n = LLMS.l10n || {};\n\t\n\tLLMS.l10n.translate = function ( string ) {\n\t\n\t\tvar self = this;\n\t\n\t\tif ( self.strings[string] ) {\n\t\n\t\t\treturn self.strings[string];\n\t\n\t\t} else {\n\t\n\t\t\treturn string;\n\t\n\t\t}\n\t\n\t};\n\t\n\t/**\n\t * Translate and replace placeholders in a string\n\t *\n\t * @example LLMS.l10n.replace( 'This is a %2$s %1$s String', {\n\t * \t'%1$s': 'cool',\n\t * \t\t\t'%2$s': 'very'\n\t * \t\t} );\n\t * \t\tOutput: \"This is a very cool String\"\n\t *\n\t * @param string string text string\n\t * @param object replacements object containing token => replacement pairs\n\t * @return string\n\t * @since 3.16.0\n\t * @version 3.16.0\n\t */\n\tLLMS.l10n.replace = function( string, replacements ) {\n\t\n\t\tvar str = this.translate( string );\n\t\n\t\t$.each( replacements, function( token, value ) {\n\t\n\t\t\tif ( -1 !== token.indexOf( 's' ) ) {\n\t\t\t\tvalue = value.toString();\n\t\t\t} else if ( -1 !== token.indexOf( 'd' ) ) {\n\t\t\t\tvalue = value * 1;\n\t\t\t}\n\t\n\t\t\tstr = str.replace( token, value );\n\t\n\t\t} );\n\t\n\t\treturn str;\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Lesson Preview Elements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.16.12\n\t */\n\t\n\tLLMS.LessonPreview = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$els: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked = $( 'a[href=\"#llms-lesson-locked\"]' );\n\t\n\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\tself.bind();\n\t\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-course-navigation' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.16.12\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked.on( 'click', function() {\n\t\t\t\treturn false;\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseenter', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\tif ( ! $tip.length ) {\n\t\t\t\t\tvar msg = $( this ).attr( 'data-tooltip-msg' );\n\t\t\t\t\tif ( ! msg ) {\n\t\t\t\t\t\tmsg = LLMS.l10n.translate( 'You do not have permission to access this content' );\n\t\t\t\t\t}\n\t\t\t\t\t$tip = self.get_tooltip( msg );\n\t\t\t\t\t$( this ).append( $tip );\n\t\t\t\t}\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t$tip.addClass( 'show' );\n\t\t\t\t}, 10 );\n\t\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseleave', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\t$tip.removeClass( 'show' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of lesson preview items in course navigation blocks\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-course-navigation .llms-lesson-link' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get a tooltip element\n\t\t *\n\t\t * @param string msg message to display inside the tooltip\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.2.4\n\t\t */\n\t\tget_tooltip: function( msg ) {\n\t\t\tvar $el = $( '
    ' );\n\t\t\t$el.append( '
    ' + msg + '
    ' );\n\t\t\treturn $el;\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * LifterLMS Loops JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.14.0\n\t */\n\t\n\tLLMS.Loops = {\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( '.llms-loop' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of .llms-loop-item\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.14.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-loop-item .llms-loop-item-content' ).matchHeight();\n\t\t\t$( '.llms-achievement-loop-item .llms-achievement' ).matchHeight();\n\t\t\t$( '.llms-certificate-loop-item .llms-certificate' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Handle the Collapsible Syllabus Widget / Shortcode\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.OutlineCollapse = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$outlines: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tthis.$outlines = $( '.llms-widget-syllabus--collapsible' );\n\t\n\t\t\tif ( this.$outlines.length ) {\n\t\n\t\t\t\tthis.bind();\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$outlines.each( function() {\n\t\n\t\t\t\tvar $outline = $( this ),\n\t\t\t\t\t$headers = $outline.find( '.llms-section .section-header' );\n\t\n\t\t\t\t// bind header clicks\n\t\t\t\t$headers.on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $toggle = $( this ),\n\t\t\t\t\t\t$section = $toggle.closest( '.llms-section' ),\n\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t\t// bind optional toggle \"buttons\"\n\t\t\t\t$outline.find( '.llms-collapse-toggle' ).on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $btn = $( this ),\n\t\t\t\t\t\taction = $btn.attr( 'data-action' ),\n\t\t\t\t\t\topposite_action = ( 'close' === action ) ? 'opened' : 'closed';\n\t\n\t\t\t\t\t$headers.each( function() {\n\t\n\t\t\t\t\t\tvar $section = $( this ).closest( '.llms-section' ),\n\t\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\t\tif ( opposite_action !== state ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t$( this ).trigger( 'click' );\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Close an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\tclose_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--opened' ).addClass( 'llms-section--closed' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Open an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\topen_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--closed' ).addClass( 'llms-section--opened' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current state (open or closed) of an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return string 'opened' or 'closed'\n\t\t */\n\t\tget_section_state: function( $section ) {\n\t\n\t\t\treturn $section.hasClass( 'llms-section--opened' ) ? 'opened' : 'closed';\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Password Strength Meter for registration and password update fields\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 5.0.0\n\t */\n\t\n\t$.extend( LLMS.PasswordStrength, {\n\t\n\t\t/**\n\t\t * jQuery ref for the password strength meter object.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$meter: $( '.llms-password-strength-meter' ),\n\t\n\t\t/**\n\t\t * jQuery ref for the password field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$pass: null,\n\t\n\t\t/**\n\t\t * jQuery ref for the password confirmation field\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$conf: null,\n\t\n\t\t/**\n\t\t * jQuery ref for form element.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$form: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.7.0 Unknown\n\t\t * @since 5.0.0 Move reference setup to `setup_references()`.\n\t\t * Use `LLMS.wait_for()` for dependency waiting.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( ! this.setup_references() ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tLLMS.wait_for( function() {\n\t\t\t\treturn ( 'undefined' !== typeof wp && 'undefined' !== typeof wp.passwordStrength );\n\t\t\t}, function() {\n\t\t\t\tself.bind();\n\t\t\t\tself.$form.trigger( 'llms-password-strength-ready' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t// add submission event handlers when not on a checkout form\n\t\t\tif ( ! this.$form.hasClass( 'llms-checkout' ) ) {\n\t\t\t\tself.$form.on( 'submit', self, self.submit );\n\t\t\t}\n\t\n\t\t\t// check password strength on keyup\n\t\t\tself.$pass.add( self.$conf ).on( 'keyup', function() {\n\t\t\t\tself.check_strength();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Check the strength of a user entered password\n\t\t * and update elements depending on the current strength\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tcheck_strength: function() {\n\t\n\t\t\tvar $pass_field = this.$pass.closest( '.llms-form-field' ),\n\t\t\t\t$conf_field = this.$conf && this.$conf.length ? this.$conf.closest( '.llms-form-field' ) : null,\n\t\t\t\tpass_length = this.$pass.val().length,\n\t\t\t\tconf_length = this.$conf && this.$conf.length ? this.$conf.val().length : 0;\n\t\n\t\t\t// hide the meter if both fields are empty\n\t\t\tif ( ! pass_length && ! conf_length ) {\n\t\t\t\t$pass_field.removeClass( 'valid invalid' );\n\t\t\t\tif ( $conf_field ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid invalid' );\n\t\t\t\t}\n\t\t\t\tthis.$meter.hide();\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( this.get_current_strength_status() ) {\n\t\t\t\t$pass_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$pass_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tthis.$meter.removeClass( 'too-short very-weak weak medium strong mismatch' );\n\t\t\tthis.$meter.show().addClass( this.get_current_strength( 'slug' ) );\n\t\t\tthis.$meter.html( this.get_current_strength( 'text' ) );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission action called during registration on checkout screen\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param obj self instance of this class\n\t\t * @param Function callback callback function, passes error message or success back to checkout handler\n\t\t * @return void\n\t\t */\n\t\tcheckout: function( self, callback ) {\n\t\n\t\t\tif ( self.get_current_strength_status() ) {\n\t\n\t\t\t\tcallback( true );\n\t\n\t\t\t} else {\n\t\n\t\t\t\tcallback( LLMS.l10n.translate( 'There is an issue with your chosen password.' ) );\n\t\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklisted strings\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blocklist: function() {\n\t\n\t\t\t// Default values from WP Core + any values added via settings filter..\n\t\t\tvar blocklist = wp.passwordStrength.userInputDisallowedList().concat( this.get_setting( 'blocklist', [] ) );\n\t\n\t\t\t// Add values from all text fields in the form.\n\t\t\tthis.$form.find( 'input[type=\"text\"], input[type=\"email\"], input[type=\"tel\"], input[type=\"number\"]' ).each( function() {\n\t\t\t\tvar val = $( this ).val();\n\t\t\t\tif ( val ) {\n\t\t\t\t\tblocklist.push( val );\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\treturn blocklist;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve current strength as a number, a slug, or a translated text string\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @param {String} format Derived return format [int|slug|text] defaults to int.\n\t\t * @return mixed\n\t\t */\n\t\tget_current_strength: function( format ) {\n\t\n\t\t\tformat = format || 'int';\n\t\t\tvar pass = this.$pass.val(),\n\t\t\t\tconf = this.$conf && this.$conf.length ? this.$conf.val() : '',\n\t\t\t\tval;\n\t\n\t\t\t// enforce custom length requirement\n\t\t\tif ( pass.length < this.get_setting( 'min_length', 6 ) ) {\n\t\t\t\tval = -1;\n\t\t\t} else {\n\t\t\t\tval = wp.passwordStrength.meter( pass, this.get_blocklist(), conf );\n\t\t\t\t// 0 & 1 are both very-weak\n\t\t\t\tif ( 0 === val ) {\n\t\t\t\t\tval = 1;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tif ( 'slug' === format ) {\n\t\t\t\treturn this.get_strength_slug( val );\n\t\t\t} else if ( 'text' === format ) {\n\t\t\t\treturn this.get_strength_text( val );\n\t\t\t} else {\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Determines if the current password strength meets the user-defined\n\t\t * minimum password strength requirements\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return boolean\n\t\t */\n\t\tget_current_strength_status: function() {\n\t\t\tvar curr = this.get_current_strength(),\n\t\t\t\tmin = this.get_strength_value( this.get_minimum_strength() );\n\t\t\treturn ( 5 === curr ) ? false : ( curr >= min );\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the minimum password strength for the current form.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Replaces the version output via an inline PHP script in favor of utilizing values configured in the settings object.\n\t\t *\n\t\t * @return {string}\n\t\t */\n\t\tget_minimum_strength: function() {\n\t\t\treturn this.get_setting( 'min_strength', 'strong' );\n\t\t},\n\t\n\t\t/**\n\t\t * Get a setting and fallback to a default value.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {String} key Setting key.\n\t\t * @param {mixed} default_val Default value when the requested setting cannot be located.\n\t\t * @return {mixed}\n\t\t */\n\t\tget_setting: function( key, default_val ) {\n\t\t\tvar settings = this.get_settings();\n\t\t\treturn settings[ key ] ? settings[ key ] : default_val;\n\t\t},\n\t\n\t\t/**\n\t\t * Get the slug associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param int strength_val Strength value number.\n\t\t * @return string\n\t\t */\n\t\tget_strength_slug: function( strength_val ) {\n\t\n\t\t\tvar slugs = {\n\t\t\t\t'-1': 'too-short',\n\t\t\t\t1: 'very-weak',\n\t\t\t\t2: 'weak',\n\t\t\t\t3: 'medium',\n\t\t\t\t4: 'strong',\n\t\t\t\t5: 'mismatch',\n\t\t\t};\n\t\n\t\t\treturn ( slugs[ strength_val ] ) ? slugs[ strength_val ] : slugs[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Gets the translated text associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param {Integer} strength_val Strength value\n\t\t * @return {String}\n\t\t */\n\t\tget_strength_text: function( strength_val ) {\n\t\n\t\t\tvar texts = {\n\t\t\t\t'-1': LLMS.l10n.translate( 'Too Short' ),\n\t\t\t\t1: LLMS.l10n.translate( 'Very Weak' ),\n\t\t\t\t2: LLMS.l10n.translate( 'Weak' ),\n\t\t\t\t3: LLMS.l10n.translate( 'Medium' ),\n\t\t\t\t4: LLMS.l10n.translate( 'Strong' ),\n\t\t\t\t5: LLMS.l10n.translate( 'Mismatch' ),\n\t\t\t};\n\t\n\t\t\treturn ( texts[ strength_val ] ) ? texts[ strength_val ] : texts[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the value associated with a strength slug\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param string strength_slug A strength slug.\n\t\t * @return {Integer}\n\t\t */\n\t\tget_strength_value: function( strength_slug ) {\n\t\n\t\t\tvar values = {\n\t\t\t\t'too-short': -1,\n\t\t\t\t'very-weak': 1,\n\t\t\t\tweak: 2,\n\t\t\t\tmedium: 3,\n\t\t\t\tstrong: 4,\n\t\t\t\tmismatch: 5,\n\t\t\t};\n\t\n\t\t\treturn ( values[ strength_slug ] ) ? values[ strength_slug ] : values.mismatch;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup jQuery references to DOM elements needed to power the password meter.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Boolean} Returns `true` if a meter element and password field are found, otherwise returns `false`.\n\t\t */\n\t\tsetup_references: function() {\n\t\n\t\t\tif ( ! this.$meter.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\tthis.$form = this.$meter.closest( 'form' );\n\t\t\tthis.$pass = this.$form.find( 'input#password' );\n\t\n\t\t\tif ( this.$pass.length && this.$pass.attr( 'data-match' ) ) {\n\t\t\t\tthis.$conf = this.$form.find( '#' + this.$pass.attr( 'data-match' ) );\n\t\t\t}\n\t\n\t\t\treturn ( this.$pass.length > 0 );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission handler for registration and update forms\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow the account edit for to bypass strength checking when the password field is disabled (not being submitted).\n\t\t *\n\t\t * @param obj e Event data.\n\t\t * @return void\n\t\t */\n\t\tsubmit: function( e ) {\n\t\n\t\t\tvar self = e.data;\n\t\t\te.preventDefault();\n\t\t\tself.$pass.trigger( 'keyup' );\n\t\n\t\t\t// Meets the status requirements OR we're on the account edit form and the password field is disabled.\n\t\t\tif ( self.get_current_strength_status() || ( self.$form.hasClass( 'edit-account' ) && 'disabled' === self.$pass.attr( 'disabled' ) ) ) {\n\t\t\t\tself.$form.off( 'submit', self.submit );\n\t\t\t\tself.$form.trigger( 'submit' );\n\t\t\t} else {\n\t\t\t\t$( 'html, body' ).animate( {\n\t\t\t\t\tscrollTop: self.$meter.offset().top - 100,\n\t\t\t\t}, 200 );\n\t\t\t\tself.$meter.hide();\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tself.$meter.fadeIn( 400 );\n\t\t\t\t}, 220 );\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklist strings\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @deprecated 5.0.0 `LLMS.PasswordStrength.get_blacklist()` is deprecated in favor of `LLMS.PasswordStrength.get_blocklist()`.\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blacklist: function() {\n\t\t\tconsole.log( 'Method `get_blacklist()` is deprecated in favor of `get_blocklist()`.' );\n\t\t\treturn this.get_blacklist();\n\t\t},\n\t\n\t} );\n\t\n\t\t/**\n\t * Pricing Table UI\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown.\n\t * @version Unknown.\n\t */\n\t\n\tLLMS.Pricing_Tables = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-access-plans' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t\tthis.$locked = $( 'a[href=\"#llms-plan-locked\"]' );\n\t\n\t\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\t\tLLMS.wait_for_popover( function() {\n\t\t\t\t\t\tself.bind_locked();\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-access-plan-content' ).matchHeight();\n\t\t\t$( '.llms-access-plan-pricing.trial' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup a popover for members-only restricted plans\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.9.1\n\t\t */\n\t\tbind_locked: function() {\n\t\n\t\t\tthis.$locked.each( function() {\n\t\n\t\t\t\t$( this ).webuiPopover( {\n\t\t\t\t\tanimation: 'pop',\n\t\t\t\t\tcloseable: true,\n\t\t\t\t\tcontent: function( e ) {\n\t\t\t\t\t\tvar $content = $( '
    ' );\n\t\t\t\t\t\t$content.append( e.$element.closest( '.llms-access-plan' ).find( '.llms-access-plan-restrictions ul' ).clone() );\n\t\t\t\t\t\treturn $content;\n\t\t\t\t\t},\n\t\t\t\t\tplacement: 'top',\n\t\t\t\t\tstyle: 'inverse',\n\t\t\t\t\ttitle: LLMS.l10n.translate( 'Members Only Pricing' ),\n\t\t\t\t\twidth: '280px',\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * LifterLMS Reviews JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Review = {\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\t// console.log('Initializing Review ');\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * This function binds actions to the appropriate hooks\n\t\t */\n\t\tbind: function() {\n\t\t\t$( '#llms_review_submit_button' ).click(function()\n\t\t\t\t{\n\t\t\t\tif ($( '#review_title' ).val() !== '' && $( '#review_text' ).val() !== '') {\n\t\t\t\t\tjQuery.ajax({\n\t\t\t\t\t\ttype : 'post',\n\t\t\t\t\t\tdataType : 'json',\n\t\t\t\t\t\turl : window.llms.ajaxurl,\n\t\t\t\t\t\tdata : {\n\t\t\t\t\t\t\taction : 'LLMSSubmitReview',\n\t\t\t\t\t\t\treview_title: $( '#review_title' ).val(),\n\t\t\t\t\t\t\treview_text: $( '#review_text' ).val(),\n\t\t\t\t\t\t\tpageID : $( '#post_ID' ).val()\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function()\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( 'Review success' );\n\t\t\t\t\t\t\t$( '#review_box' ).hide( 'swing' );\n\t\t\t\t\t\t\t$( '#thank_you_box' ).show( 'swing' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function(jqXHR, textStatus, errorThrown )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( jqXHR );\n\t\t\t\t\t\t\tconsole.log( textStatus );\n\t\t\t\t\t\t\tconsole.log( errorThrown );\n\t\t\t\t\t\t},\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tif ($( '#review_title' ).val() === '') {\n\t\t\t\t\t\t$( '#review_title_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_title_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t\tif ($( '#review_text' ).val() === '') {\n\t\t\t\t\t\t$( '#review_text_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_text_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\n\t\t\t} else {\n\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t}\n\t\t\t$( '#_llms_display_reviews' ).change(function() {\n\t\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\t\t\t} else {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).removeClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t\t}\n\t\t\t});\n\t\n\t\t},\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/*!\n\t * JavaScript Cookie v2.2.1\n\t * https://github.com/js-cookie/js-cookie\n\t *\n\t * Copyright 2006, 2015 Klaus Hartl & Fagner Brack\n\t * Released under the MIT license\n\t */\n\t;(function (factory) {\n\t\tvar registeredInModuleLoader;\n\t\tif (typeof define === 'function' && define.amd) {\n\t\t\tdefine(factory);\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (typeof exports === 'object') {\n\t\t\tmodule.exports = factory();\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (!registeredInModuleLoader) {\n\t\t\tvar OldCookies = window.Cookies;\n\t\t\tvar api = window.Cookies = factory();\n\t\t\tapi.noConflict = function () {\n\t\t\t\twindow.Cookies = OldCookies;\n\t\t\t\treturn api;\n\t\t\t};\n\t\t}\n\t}(function () {\n\t\tfunction extend () {\n\t\t\tvar i = 0;\n\t\t\tvar result = {};\n\t\t\tfor (; i < arguments.length; i++) {\n\t\t\t\tvar attributes = arguments[ i ];\n\t\t\t\tfor (var key in attributes) {\n\t\t\t\t\tresult[key] = attributes[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t\n\t\tfunction decode (s) {\n\t\t\treturn s.replace(/(%[0-9A-Z]{2})+/g, decodeURIComponent);\n\t\t}\n\t\n\t\tfunction init (converter) {\n\t\t\tfunction api() {}\n\t\n\t\t\tfunction set (key, value, attributes) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tattributes = extend({\n\t\t\t\t\tpath: '/'\n\t\t\t\t}, api.defaults, attributes);\n\t\n\t\t\t\tif (typeof attributes.expires === 'number') {\n\t\t\t\t\tattributes.expires = new Date(new Date() * 1 + attributes.expires * 864e+5);\n\t\t\t\t}\n\t\n\t\t\t\t// We're using \"expires\" because \"max-age\" is not supported by IE\n\t\t\t\tattributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';\n\t\n\t\t\t\ttry {\n\t\t\t\t\tvar result = JSON.stringify(value);\n\t\t\t\t\tif (/^[\\{\\[]/.test(result)) {\n\t\t\t\t\t\tvalue = result;\n\t\t\t\t\t}\n\t\t\t\t} catch (e) {}\n\t\n\t\t\t\tvalue = converter.write ?\n\t\t\t\t\tconverter.write(value, key) :\n\t\t\t\t\tencodeURIComponent(String(value))\n\t\t\t\t\t\t.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);\n\t\n\t\t\t\tkey = encodeURIComponent(String(key))\n\t\t\t\t\t.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent)\n\t\t\t\t\t.replace(/[\\(\\)]/g, escape);\n\t\n\t\t\t\tvar stringifiedAttributes = '';\n\t\t\t\tfor (var attributeName in attributes) {\n\t\t\t\t\tif (!attributes[attributeName]) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tstringifiedAttributes += '; ' + attributeName;\n\t\t\t\t\tif (attributes[attributeName] === true) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Considers RFC 6265 section 5.2:\n\t\t\t\t\t// ...\n\t\t\t\t\t// 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n\t\t\t\t\t// character:\n\t\t\t\t\t// Consume the characters of the unparsed-attributes up to,\n\t\t\t\t\t// not including, the first %x3B (\";\") character.\n\t\t\t\t\t// ...\n\t\t\t\t\tstringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n\t\t\t\t}\n\t\n\t\t\t\treturn (document.cookie = key + '=' + value + stringifiedAttributes);\n\t\t\t}\n\t\n\t\t\tfunction get (key, json) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tvar jar = {};\n\t\t\t\t// To prevent the for loop in the first place assign an empty array\n\t\t\t\t// in case there are no cookies at all.\n\t\t\t\tvar cookies = document.cookie ? document.cookie.split('; ') : [];\n\t\t\t\tvar i = 0;\n\t\n\t\t\t\tfor (; i < cookies.length; i++) {\n\t\t\t\t\tvar parts = cookies[i].split('=');\n\t\t\t\t\tvar cookie = parts.slice(1).join('=');\n\t\n\t\t\t\t\tif (!json && cookie.charAt(0) === '\"') {\n\t\t\t\t\t\tcookie = cookie.slice(1, -1);\n\t\t\t\t\t}\n\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\tvar name = decode(parts[0]);\n\t\t\t\t\t\tcookie = (converter.read || converter)(cookie, name) ||\n\t\t\t\t\t\t\tdecode(cookie);\n\t\n\t\t\t\t\t\tif (json) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tcookie = JSON.parse(cookie);\n\t\t\t\t\t\t\t} catch (e) {}\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tjar[name] = cookie;\n\t\n\t\t\t\t\t\tif (key === name) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch (e) {}\n\t\t\t\t}\n\t\n\t\t\t\treturn key ? jar[key] : jar;\n\t\t\t}\n\t\n\t\t\tapi.set = set;\n\t\t\tapi.get = function (key) {\n\t\t\t\treturn get(key, false /* read as raw */);\n\t\t\t};\n\t\t\tapi.getJSON = function (key) {\n\t\t\t\treturn get(key, true /* read as json */);\n\t\t\t};\n\t\t\tapi.remove = function (key, attributes) {\n\t\t\t\tset(key, '', extend(attributes, {\n\t\t\t\t\texpires: -1\n\t\t\t\t}));\n\t\t\t};\n\t\n\t\t\tapi.defaults = {};\n\t\n\t\t\tapi.withConverter = init;\n\t\n\t\t\treturn api;\n\t\t}\n\t\n\t\treturn init(function () {});\n\t}));\n\t\n\t/**\n\t * Create a no conflict reference to JS Cookies.\n\t *\n\t * @type {Object}\n\t */\n\tLLMS.CookieStore = Cookies.noConflict();\n\t\n\t/**\n\t * Store information in Local Storage by group.\n\t *\n\t * @since 3.36.0\n\t * @since 3.37.14 Use persistent reference to JS Cookies.\n\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t *\n\t * @param string group Storage group id/name.\n\t */\n\tLLMS.Storage = function( group ) {\n\t\n\t\tvar self = this,\n\t\t\tstore = LLMS.CookieStore;\n\t\n\t\t/**\n\t\t * Clear all data for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.clearAll = function() {\n\t\t\tstore.remove( group );\n\t\t};\n\t\n\t\t/**\n\t\t * Clear a single item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.clear = function( key ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdelete data[ key ];\n\t\t\treturn store.set( group, data );\n\t\t};\n\t\n\t\t/**\n\t\t * Retrieve (and parse) all data stored for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getAll = function() {\n\t\t\treturn store.getJSON( group ) || {};\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve an item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param string key Item key/name.\n\t\t * @param mixed default_val Item default value to be returned when item not found in the group.\n\t\t * @return mixed\n\t\t */\n\t\tthis.get = function( key, default_val ) {\n\t\t\tvar data = self.getAll();\n\t\t\treturn data[ key ] ? data[ key ] : default_val;\n\t\t}\n\t\n\t\t/**\n\t\t * Store an item in the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t\t *\n\t\t * @param string key Item key name.\n\t\t * @param mixed val Item value\n\t\t * @return obj\n\t\t */\n\t\tthis.set = function( key, val ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdata[ key ] = val;\n\t\t\treturn store.set( group, data, { sameSite: 'strict' } );\n\t\t};\n\t\n\t}\n\t\n\t\t/**\n\t * Student Dashboard related JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.7.0\n\t * @since 3.10.0 Bind events on the orders screen.\n\t * @since 5.0.0 Removed redundant password toggle logic for edit account screen.\n\t * @version 5.0.0\n\t */\n\tLLMS.StudentDashboard = {\n\t\n\t\t/**\n\t\t * Slug for the current screen/endpoint\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tscreen: '',\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.10.0 Unknown\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-student-dashboard' ).length ) {\n\t\t\t\tthis.bind();\n\t\t\t\tif ( 'orders' === this.get_screen() ) {\n\t\t\t\t\tthis.bind_orders();\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.7.4 Unknown.\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-donut' ).each( function() {\n\t\t\t\tLLMS.Donut( $( this ) );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind events related to the orders screen on the dashboard\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind_orders: function() {\n\t\n\t\t\t$( '#llms-cancel-subscription-form' ).on( 'submit', this.order_cancel_warning );\n\t\t\t$( '#llms_update_payment_method' ).on( 'click', function() {\n\t\t\t\t$( 'input[name=\"llms_payment_gateway\"]:checked' ).trigger( 'change' );\n\t\t\t\t$( this ).closest( 'form' ).find( '.llms-switch-payment-source-main' ).slideToggle( '200' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current dashboard endpoint/tab slug\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tget_screen: function() {\n\t\t\tif ( ! this.screen ) {\n\t\t\t\tthis.screen = $( '.llms-student-dashboard' ).attr( 'data-current' );\n\t\t\t}\n\t\t\treturn this.screen;\n\t\t},\n\t\n\t\t/**\n\t\t * Show a confirmation warning when Cancel Subscription form is submitted\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @param obj e JS event data.\n\t\t * @return void\n\t\t */\n\t\torder_cancel_warning: function( e ) {\n\t\t\te.preventDefault();\n\t\t\tvar msg = LLMS.l10n.translate( 'Are you sure you want to cancel your subscription?' );\n\t\t\tif ( window.confirm( LLMS.l10n.translate( msg ) ) ) {\n\t\t\t\t$( this ).off( 'submit', this.order_cancel_warning );\n\t\t\t\t$( this ).submit();\n\t\t\t}\n\t\t},\n\t\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/**\n\t * User event/interaction tracking.\n\t *\n\t * @since 3.36.0\n\t * @since 3.36.2 Fix JS error when settings aren't loaded.\n\t * @since 3.37.2 When adding an event to the storae also make sure the nonce is set for server-side verification.\n\t * @since 3.37.9 Fix IE compatibility issue related to usage of `Object.assign()`.\n\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t * @since 5.0.0 Set `settings` as an empty object when no settings supplied.\n\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t */\n\tLLMS.Tracking = function( settings ) {\n\t\n\t\tsettings = settings || {};\n\t\n\t\tvar self = this,\n\t\t\tstore = new LLMS.Storage( 'llms-tracking' );\n\t\n\t\tsettings = 'string' === typeof settings ? JSON.parse( settings ) : settings;\n\t\n\t\t/**\n\t\t * Initialize / Bind all tracking event listeners.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 5.0.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t * @since 7.1.0 Do not add a nonce to the datastore by default, will be added/updated\n\t\t * when storing an event to track.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tfunction init() {\n\t\n\t\t\tself.addEvent( 'page.load' );\n\t\n\t\t\twindow.addEventListener( 'beforeunload', onBeforeUnload );\n\t\t\twindow.addEventListener( 'unload', onUnload );\n\t\n\t\t\tdocument.addEventListener( 'visibilitychange', onVisibilityChange );\n\t\n\t\t};\n\t\n\t\t/**\n\t\t * Add an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.36.2 Fix error when settings aren't loaded.\n\t\t * @since 3.37.2 Always make sure the nonce is set for server-side verification.\n\t\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t *\n\t\t * @param string|obj event Event Id (type.event) or a full event object from `this.makeEventObj()`.\n\t\t * @param int args Optional additional arguments to pass to `this.makeEventObj()`.\n\t\t * @return {void}\n\t\t */\n\t\tthis.addEvent = function( event, args ) {\n\t\n\t\t\targs = args || {};\n\t\t\tif ( 'string' === typeof event ) {\n\t\t\t\targs.event = event;\n\t\t\t}\n\t\n\t\t\t// If the event isn't registered in the settings don't proceed.\n\t\t\tif ( !settings.events || -1 === settings.events.indexOf( args.event ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t// Make sure the nonce is set for server-side verification.\n\t\t\tif ( settings.nonce ) {\n\t\t\t\tstore.set( 'nonce', settings.nonce );\n\t\t\t}\n\t\n\t\t\tevent = self.makeEventObj( args );\n\t\n\t\t\tvar all = store.get( 'events', [] );\n\t\t\tall.push( event );\n\t\t\tstore.set( 'events', all );\n\t\n\t\t\t// If couldn't store the latest event because of size limits.\n\t\t\tif ( all.length > store.get( 'events', [] ).length ) {\n\t\n\t\t\t\t// Copy the cookie in a temporary variable.\n\t\t\t\tvar _temp = store.getAll();\n\t\t\t\t// Clear the events from the cookie.\n\t\t\t\tstore.clear('events');\n\t\n\t\t\t\t// Add the latest event to the temporary variable.\n\t\t\t\t_temp['events'].push( event );\n\t\n\t\t\t\t// Send the temporary variable as string via ajax.\n\t\t\t\tLLMS.Ajax.call( {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taction: 'persist_tracking_events',\n\t\t\t\t\t\t'llms-tracking': JSON.stringify(_temp)\n\t\t\t\t\t},\n\t\n\t\t\t\t\terror: function( xhr, status, error ) {\n\t\n\t\t\t\t\t\tconsole.log( xhr, status, error );\n\t\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function( r ) {\n\t\n\t\t\t\t\t\tif ( 'error' === r.code ) {\n\t\t\t\t\t\t\tconsole.log(r.code, r.message);\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve initialization settings.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getSettings = function() {\n\t\t\treturn settings;\n\t\t}\n\t\n\t\t/**\n\t\t * Create an event object suitable to save as an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.37.9 Use `$.extend()` in favor of `Object.assign()`.\n\t\t *\n\t\t * @param obj event {\n\t\t * Event hash\n\t\t *\n\t\t * @param {string} event (Required) Event ID, eg: \"page.load\".\n\t\t * @param {url} url Event URL. (Optional, added automatically) Stored as metadata and used to infer an object_id for post events.\n\t\t * @param {time} float (Optional, added automatically) Timestamp (in milliseconds). Used for the event creation date.\n\t\t * @param {int} obj_id (Optional). The object ID. Inferred automatically via `url` if not provided.\n\t\t * @param {obj} meta (Optional) Hash of metadata to store with the event.\n\t\t * }\n\t\t * @return obj\n\t\t */\n\t\tthis.makeEventObj = function( event ) {\n\t\t\treturn $.extend( event, {\n\t\t\t\turl: window.location.href,\n\t\t\t\ttime: Math.round( new Date().getTime() / 1000 ),\n\t\t\t} );\n\t\t}\n\t\n\t\n\t\t/**\n\t\t * Remove the visibility change event listener on window.beforeunload\n\t\t *\n\t\t * Prevents actual unloading from recording a blur event from the visibility change listener\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onBeforeUnload( e ) {\n\t\t\tdocument.removeEventListener( 'visibilitychange', onVisibilityChange );\n\t\t}\n\t\n\t\t/**\n\t\t * Record a `page.exit` event on window.unload.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onUnload( e ) {\n\t\t\tself.addEvent( 'page.exit' );\n\t\t}\n\t\n\t\t/**\n\t\t * Record `page.blur` and `page.focus` events via document.visilibitychange events.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onVisibilityChange( e ) {\n\t\n\t\t\tvar event = document.hidden ? 'page.blur' : 'page.focus';\n\t\t\tself.addEvent( event );\n\t\n\t\t}\n\t\n\t\t// Initialize on the frontend only.\n\t\tif ( ! $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\tinit();\n\t\t}\n\t\n\t};\n\t\n\tllms.tracking = new LLMS.Tracking( llms.tracking );\n\t\n\t\t/**\n\t * Rest Methods\n\t * Manages URL and Rest object parsing\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Rest = {\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\t},\n\t\n\t\t/**\n\t\t * Searches for string matches in url path\n\t\t *\n\t\t * @param {Array} strings [Array of strings to search for matches]\n\t\t * @return {Boolean} [Was a match found?]\n\t\t */\n\t\tis_path: function( strings ) {\n\t\n\t\t\tvar path_exists = false,\n\t\t\t\turl = window.location.href;\n\t\n\t\t\tfor ( var i = 0; i < strings.length; i++ ) {\n\t\n\t\t\t\tif ( url.search( strings[i] ) > 0 && ! path_exists ) {\n\t\n\t\t\t\t\tpath_exists = true;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn path_exists;\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieves query variables\n\t\t *\n\t\t * @return {[Array]} [array object of query variable key=>value pairs]\n\t\t */\n\t\tget_query_vars: function() {\n\t\n\t\t\tvar vars = [], hash,\n\t\t\t\thashes = window.location.href.slice( window.location.href.indexOf( '?' ) + 1 ).split( '&' );\n\t\n\t\t\tfor (var i = 0; i < hashes.length; i++) {\n\t\t\t\thash = hashes[i].split( '=' );\n\t\t\t\tvars.push( hash[0] );\n\t\t\t\tvars[hash[0]] = hash[1];\n\t\t\t}\n\t\n\t\t\treturn vars;\n\t\t}\n\t\n\t};\n\t\n\n\t!function(){\"use strict\";var t={d:function(n,e){for(var r in e)t.o(e,r)&&!t.o(n,r)&&Object.defineProperty(n,r,{enumerable:!0,get:e[r]})},o:function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r:function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})}},n={};t.r(n),t.d(n,{get:function(){return d},start:function(){return c},stop:function(){return u}});const e=\"llms-spinning\",r=\"default\";var o=window.wp.i18n;function i(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;const i=document.createElement(\"div\"),l=(0,o.__)(\"Loading…\",\"lifterlms\");return i.innerHTML=`${l}`,i.classList.add(e),t.appendChild(i),i}function l(t){if((t=\"string\"==typeof t?document.querySelectorAll(t):t)instanceof NodeList)return Array.from(t);const n=[];return t instanceof Element?n.push(t):\"undefined\"!=typeof jQuery&&t instanceof jQuery&&t.toArray().forEach((t=>n.push(t))),n}function s(t){const n=t.querySelectorAll(\".llms-spinning\");return n.length?Array.from(n).find((n=>t===n.parentNode)):null}function a(){const t=\"llms-spinner-styles\";if(!document.getElementById(t)){const n=document.createElement(\"style\");n.textContent=\"\\n\\t.llms-spinning {\\n\\t\\tbackground: rgba( 250, 250, 250, 0.7 );\\n\\t\\tbottom: 0;\\n\\t\\tdisplay: none;\\n\\t\\tleft: 0;\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\ttop: 0;\\n\\t\\tz-index: 2;\\n\\t}\\n\\n\\t.llms-spinner {\\n\\t\\tanimation: llms-spinning 1.5s linear infinite;\\n\\t\\tbox-sizing: border-box;\\n\\t\\tborder: 4px solid #313131;\\n\\t\\tborder-radius: 50%;\\n\\t\\theight: 40px;\\n\\t\\tleft: 50%;\\n\\t\\tmargin-left: -20px;\\n\\t\\tmargin-top: -20px;\\n\\t\\tposition: absolute;\\n\\t\\ttop: 50%;\\n\\t\\twidth: 40px;\\n\\n\\t}\\n\\n\\t.llms-spinner.small {\\n\\t\\tborder-width: 2px;\\n\\t\\theight: 20px;\\n\\t\\tmargin-left: -10px;\\n\\t\\tmargin-top: -10px;\\n\\t\\twidth: 20px;\\n\\t}\\n\\n\\t@keyframes llms-spinning {\\n\\t\\t0% {\\n\\t\\t\\ttransform: rotate( 0deg )\\n\\t\\t}\\n\\t\\t50% {\\n\\t\\t\\tborder-radius: 5%;\\n\\t\\t}\\n\\t\\t100% {\\n\\t\\t\\ttransform: rotate( 220deg) \\n\\t\\t}\\n\\t}\\n\".replace(/\\n/g,\"\").replace(/\\t/g,\" \").replace(/\\s\\s+/g,\" \"),n.id=t,document.head.appendChild(n)}}function d(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r,e=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];a();const o=l(t);if(!o.length)return null;const d=o[0],c=s(d)||i(d,n);return e&&\"undefined\"!=typeof jQuery?jQuery(c):c}function c(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;l(t).forEach((t=>{const e=d(t,n,!1);e&&(e.style.display=\"block\")}))}function u(t){l(t).forEach((t=>{const n=d(t,r,!1);n&&(n.style.display=\"none\")}))}window.LLMS=window.LLMS||{},window.LLMS.Spinner=n}();\n\n\t/**\n\t * Initializes all classes within the LLMS Namespace\n\t *\n\t * @since Unknown\n\t *\n\t * @return {void}\n\t */\n\tLLMS.init = function() {\n\n\t\tfor (var func in LLMS) {\n\n\t\t\tif ( typeof LLMS[func] === 'object' && LLMS[func] !== null ) {\n\n\t\t\t\tif ( LLMS[func].init !== undefined ) {\n\n\t\t\t\t\tif ( typeof LLMS[func].init === 'function') {\n\t\t\t\t\t\tLLMS[func].init();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t};\n\n\t/**\n\t * Determine if the current device is touch-enabled\n\t *\n\t * @since 3.24.3\n\t *\n\t * @see {@link https://stackoverflow.com/a/4819886/400568}\n\t *\n\t * @return {Boolean} Whether or not the device is touch-enabled.\n\t */\n\tLLMS.is_touch_device = function() {\n\n\t\tvar prefixes = ' -webkit- -moz- -o- -ms- '.split( ' ' );\n\t\tvar mq = function( query ) {\n\t\t\treturn window.matchMedia( query ).matches;\n\t\t}\n\n\t\tif ( ( 'ontouchstart' in window ) || window.DocumentTouch && document instanceof DocumentTouch ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t/**\n\t\t * Include the 'heartz' as a way to have a non matching MQ to help terminate the join.\n\t\t *\n\t\t * @see {@link https://git.io/vznFH}\n\t\t */\n\t\tvar query = ['(', prefixes.join( 'touch-enabled),(' ), 'heartz', ')'].join( '' );\n\t\treturn mq( query );\n\n\t};\n\n\t/**\n\t * Wait for matchHeight to load\n\t *\n\t * @since 3.0.0\n\t * @since 3.16.6 Unknown.\n\t * @since 5.3.3 Pass a dependency name to `wait_for()`.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_matchHeight = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.matchHeight );\n\t\t}, cb, 'matchHeight' );\n\t}\n\n\t/**\n\t * Wait for webuiPopover to load\n\t *\n\t * @since 3.9.1\n\t * @since 3.16.6 Unknown.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_popover = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.webuiPopover );\n\t\t}, cb, 'webuiPopover' );\n\t}\n\n\t/**\n\t * Wait for a dependency to load and then run a callback once it has\n\t *\n\t * Temporary fix for a less-than-optimal assets loading function on the PHP side of things.\n\t *\n\t * @since 3.9.1\n\t * @since 5.3.3 Added optional `name` parameter.\n\t *\n\t * @param {Function} test A function that returns a truthy if the dependency is loaded.\n\t * @param {Function} cb A callback function executed once the dependency is loaded.\n\t * @param {string} name The dependency name.\n\t * @return {void}\n\t */\n\tLLMS.wait_for = function( test, cb, name ) {\n\n\t\tvar counter = 0,\n\t\t\tinterval;\n\n\t\tname = name ? name : 'unnamed';\n\n\t\tinterval = setInterval( function() {\n\n\t\t\t// If we get to 30 seconds log an error message.\n\t\t\tif ( counter >= 300 ) {\n\n\t\t\t\tconsole.log( 'Unable to load dependency: ' + name );\n\n\t\t\t\t// If we can't access yet, increment and wait...\n\t\t\t} else {\n\n\t\t\t\t// Bind the events, we're good!\n\t\t\t\tif ( test() ) {\n\t\t\t\t\tcb();\n\t\t\t\t} else {\n\t\t\t\t\t// console.log( 'Waiting for dependency: ' + name );\n\t\t\t\t\tcounter++;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tclearInterval( interval );\n\n\t\t}, 100 );\n\n\t};\n\n\tLLMS.init( $ );\n\n} )( jQuery );\n"],"sourceRoot":"../../js"} \ No newline at end of file +{"version":3,"sources":["llms.js"],"names":["LLMS","window","$","factory","OldCookies","api","Achievements","init","self","length","this","bind","maybe_open","each","create_modal","on","$this","id","attr","$modal","iziModal","$el","append","headerColor","group","history","loop","overlayColor","transitionIn","transitionOut","width","onOpening","modal","setTitle","find","html","setSubtitle","setContent","onClosing","pushState","document","title","location","pathname","search","let","hash","split","parseInt","Number","isInteger","a","querySelector","join","click","Ajax","url","ajaxurl","llms","type","data","cache","dataType","async","response","obj","_ajax_nonce","ajax_nonce","wp_ajax_data","nonce","query_vars","Rest","get_query_vars","post_id","post","val","call","settings","request","ajax","Donut","options","extend","element","percent","circle","stroke_width","css","radius","angle","hasClass","i","Math","round","first","increment","animate","timer","setInterval","d","radians","PI","x","cos","y","sin","clearInterval","Forms","address_info","$cities","$countries","$states","$states_holder","bind_matching_fields","bind_voucher_field","bind_edit_account","bind_l10n_selects","handle_toggle_click","$zips","wait_for","undefined","fn","llmsSelect2","prep_state_field","add","JSON","parse","update_locale_info","trigger","not","$parents","$field","$match","closest","val_1","val_2","addClass","removeClass","e","preventDefault","toggle","get_field_parent","get_label_text","$label","$clone","clone","remove","text","trim","event","$fields","isShowing","displayFunc","disabled","textAttr","$parent","$holder","appendTo","update_label","$required","country_code","info","update_state_options","state","update_locale_info_for_field","city","postcode","label","enable_field","disable_field","opts","name","class","insertAfter","hide","removeAttr","next","detach","show","Instructors","wait_for_matchHeight","matchHeight","l10n","translate","string","strings","replace","replacements","str","token","value","indexOf","toString","LessonPreview","$els","$locked","match_height","msg","$tip","get_tooltip","setTimeout","Loops","OutlineCollapse","$outlines","$outline","$headers","$section","get_section_state","open_section","close_section","opposite_action","PasswordStrength","$meter","$pass","$conf","$form","setup_references","wp","passwordStrength","submit","check_strength","$pass_field","$conf_field","pass_length","conf_length","get_current_strength_status","get_current_strength","checkout","callback","get_blocklist","blocklist","userInputDisallowedList","concat","get_setting","push","format","pass","conf","meter","get_strength_slug","get_strength_text","curr","min","get_strength_value","get_minimum_strength","key","default_val","get_settings","strength_val","slugs","-1","1","2","3","4","5","texts","strength_slug","values","too-short","very-weak","weak","medium","strong","mismatch","off","scrollTop","offset","top","fadeIn","get_blacklist","console","log","Pricing_Tables","wait_for_popover","bind_locked","webuiPopover","animation","closeable","content","$content","$element","placement","style","Quiz_Attempt","$curr","siblings","slideUp","is","slideDown","Review","jQuery","action","review_title","review_text","pageID","success","error","jqXHR","textStatus","errorThrown","change","result","arguments","attributes","decode","s","decodeURIComponent","converter","set","path","defaults","expires","Date","toUTCString","stringify","test","write","encodeURIComponent","String","escape","attributeName","stringifiedAttributes","cookie","get","json","jar","cookies","parts","slice","charAt","read","getJSON","withConverter","define","amd","registeredInModuleLoader","exports","module","Cookies","noConflict","CookieStore","Storage","store","clearAll","clear","getAll","sameSite","StudentDashboard","screen","get_screen","bind_orders","order_cancel_warning","slideToggle","confirm","Tracking","onBeforeUnload","removeEventListener","onVisibilityChange","onUnload","addEvent","hidden","args","events","makeEventObj","all","_temp","llms-tracking","xhr","status","r","code","message","getSettings","href","time","getTime","addEventListener","tracking","is_path","path_exists","vars","hashes","t","n","o","Object","defineProperty","enumerable","prototype","hasOwnProperty","Symbol","toStringTag","start","c","stop","u","i18n","l","querySelectorAll","NodeList","Array","from","Element","toArray","forEach","getElementById","createElement","textContent","head","appendChild","parentNode","__","innerHTML","classList","display","Spinner","func","is_touch_device","prefixes","DocumentTouch","query","matchMedia","matches","cb","interval","counter"],"mappings":"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","file":"../../js/llms.min.js","sourcesContent":["/**\n * Main LLMS Namespace\n *\n * @since 1.0.0\n * @version 5.3.3\n */\n\nvar LLMS = window.LLMS || {};\n( function( $ ){\n\n\t'use strict';\n\n\t/**\n\t * Load all app modules\n\t */\n\t/**\n\t * Front End Achievements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.14.0\n\t * @version 6.10.2\n\t */\n\t\n\tLLMS.Achievements = {\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 4.5.1 Fix conditional loading check.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-achievement' ).length ) {\n\t\n\t\t\t\tvar self = this;\n\t\n\t\t\t\t$( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t\tself.maybe_open();\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t$( '.llms-achievement' ).each( function() {\n\t\n\t\t\t\tself.create_modal( $( this ) );\n\t\n\t\t\t} );\n\t\n\t\t\t$( '.llms-achievement' ).on( 'click', function() {\n\t\n\t\t\t\tvar $this = $( this ),\n\t\t\t\t\tid = 'achievement-' + $this.attr( 'data-id' ),\n\t\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\t\tif ( ! $modal.length ) {\n\t\t\t\t\tself.create_modal( $this );\n\t\t\t\t}\n\t\n\t\t\t\t$modal.iziModal( 'open' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Creates modal a modal for an achievement\n\t\t *\n\t\t * @since 3.14.0\n\t\t *\n\t\t * @param obj $el The jQuery selector for the modal card.\n\t\t * @return {void}\n\t\t */\n\t\tcreate_modal: function( $el ) {\n\t\n\t\t\tvar id = 'achievement-' + $el.attr( 'data-id' ),\n\t\t\t\t$modal = $( '#' + id );\n\t\n\t\t\tif ( ! $modal.length ) {\n\t\t\t\t$modal = $( '
    ' );\n\t\t\t\t$( 'body' ).append( $modal );\n\t\t\t}\n\t\n\t\t\t$modal.iziModal( {\n\t\t\t\theaderColor: '#3a3a3a',\n\t\t\t\tgroup: 'achievements',\n\t\t\t\thistory: true,\n\t\t\t\tloop: true,\n\t\t\t\toverlayColor: 'rgba( 0, 0, 0, 0.6 )',\n\t\t\t\ttransitionIn: 'fadeInDown',\n\t\t\t\ttransitionOut: 'fadeOutDown',\n\t\t\t\twidth: 340,\n\t\t\t\tonOpening: function( modal ) {\n\t\n\t\t\t\t\tmodal.setTitle( $el.find( '.llms-achievement-title' ).html() );\n\t\t\t\t\tmodal.setSubtitle( $el.find( '.llms-achievement-date' ).html() );\n\t\t\t\t\tmodal.setContent( '
    ' + $el.html() + '
    ' );\n\t\n\t\t\t\t},\n\t\n\t\t\t\tonClosing: function() {\n\t\t\t\t\twindow.history.pushState( '', document.title, window.location.pathname + window.location.search );\n\t\t\t\t},\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * On page load, opens a modal if the URL contains an achievement in the location hash\n\t\t *\n\t\t * @since 3.14.0\n\t\t * @since 6.10.2 Sanitize achievement IDs before using window.location.hash to trigger the modal open.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tmaybe_open: function() {\n\t\n\t\t\tlet hash = window.location.hash.split( '-' );\n\t\t\tif ( 2 !== hash.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\thash[1] = parseInt( hash[1] );\n\t\t\tif ( '#achievement-' !== hash[0] || ! Number.isInteger( hash[1] ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tconst a = document.querySelector( `a[href=\"${ hash.join( '-' ) }\"]` )\n\t\t\tif ( ! a ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\ta.click();\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Main Ajax class\n\t * Handles Primary Ajax connection\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Ajax = {\n\t\n\t\t/**\n\t\t * Url\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\turl: window.ajaxurl || window.llms.ajaxurl,\n\t\n\t\t/**\n\t\t * Type\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\ttype: 'post',\n\t\n\t\t/**\n\t\t * Data\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tdata: [],\n\t\n\t\t/**\n\t\t * Cache\n\t\t *\n\t\t * @type {[type]}\n\t\t */\n\t\tcache: false,\n\t\n\t\t/**\n\t\t * DataType\n\t\t * defaulted to json\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tdataType: 'json',\n\t\n\t\t/**\n\t\t * Async\n\t\t * default to false\n\t\t *\n\t\t * @type {Boolean}\n\t\t */\n\t\tasync: true,\n\t\n\t\tresponse:[],\n\t\n\t\t/**\n\t\t * Initialize Ajax methods\n\t\t *\n\t\t * @since Unknown\n\t\t * @since 4.4.0 Update ajax nonce source.\n\t\t *\n\t\t * @param {Object} obj Options object.\n\t\t * @return {Object}\n\t\t */\n\t\tinit: function( obj ) {\n\t\n\t\t\t// If obj is not of type object or null return false.\n\t\t\tif ( obj === null || typeof obj !== 'object' ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\t// set object defaults if values are not supplied\n\t\t\tobj.url = 'url' in obj ? obj.url : this.url;\n\t\t\tobj.type = 'type' \t\tin obj ? obj.type : this.type;\n\t\t\tobj.data = 'data' \t\tin obj ? obj.data : this.data;\n\t\t\tobj.cache = 'cache' \t\tin obj ? obj.cache : this.cache;\n\t\t\tobj.dataType = 'dataType'\tin obj ? obj.dataType : this.dataType;\n\t\t\tobj.async = 'async'\t\tin obj ? obj.async : this.async;\n\t\n\t\t\t// Add nonce to data object.\n\t\t\tobj.data._ajax_nonce = window.llms.ajax_nonce || wp_ajax_data.nonce;\n\t\n\t\t\t// Add post id to data object.\n\t\t\tvar $R = LLMS.Rest,\n\t\t\tquery_vars = $R.get_query_vars();\n\t\t\tobj.data.post_id = 'post' in query_vars ? query_vars.post : null;\n\t\t\tif ( ! obj.data.post_id && $( 'input#post_ID' ).length ) {\n\t\t\t\tobj.data.post_id = $( 'input#post_ID' ).val();\n\t\t\t}\n\t\n\t\t\treturn obj;\n\t\t},\n\t\n\t\t/**\n\t\t * Call\n\t\t * Called by external classes\n\t\t * Sets up jQuery Ajax object\n\t\t *\n\t\t * @param {[object]} [object of ajax settings]\n\t\t * @return {[mixed]} [false if not object or this]\n\t\t */\n\t\tcall: function(obj) {\n\t\n\t\t\t// get default variables if not included in call\n\t\t\tvar settings = this.init( obj );\n\t\n\t\t\t// if init return a response of false\n\t\t\tif ( ! settings) {\n\t\t\t\treturn false;\n\t\t\t} else {\n\t\t\t\tthis.request( settings );\n\t\t\t}\n\t\n\t\t\treturn this;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Calls jQuery Ajax on settings object\n\t\t *\n\t\t * @return {[object]} [this]\n\t\t */\n\t\trequest: function(settings) {\n\t\n\t\t\t$.ajax( settings );\n\t\n\t\t\treturn this;\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Create a Donut Chart\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.9.0\n\t * @version 4.15.0\n\t *\n\t * @link https://gist.github.com/joeyinbox/8205962\n\t *\n\t * @param {Object} $el jQuery element to draw a chart within.\n\t */\n\t\n\tLLMS.Donut = function( $el ) {\n\t\n\t\t/**\n\t\t * Constructor\n\t\t *\n\t\t * @since 3.9.0\n\t\t * @since 4.15.0 Flip animation in RTL.\n\t\t *\n\t\t * @param {Object} options Donut options.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction Donut(options) {\n\t\n\t\t\tthis.settings = $.extend( {\n\t\t\t\telement: options.element,\n\t\t\t\tpercent: 100\n\t\t\t}, options );\n\t\n\t\t\tthis.circle = this.settings.element.find( 'path' );\n\t\t\tthis.settings.stroke_width = parseInt( this.circle.css( 'stroke-width' ) );\n\t\t\tthis.radius = ( parseInt( this.settings.element.css( 'width' ) ) - this.settings.stroke_width ) / 2;\n\t\t\tthis.angle = $( 'body' ).hasClass( 'rtl' ) ? 82.5 : 97.5; // Origin of the draw at the top of the circle\n\t\t\tthis.i = Math.round( 0.75 * this.settings.percent );\n\t\t\tthis.first = true;\n\t\t\tthis.increment = $( 'body' ).hasClass( 'rtl' ) ? -5 : 5;\n\t\n\t\t\tthis.animate = function() {\n\t\t\t\tthis.timer = setInterval( this.loop.bind( this ), 10 );\n\t\t\t};\n\t\n\t\t\tthis.loop = function() {\n\t\t\t\tthis.angle += this.increment;\n\t\t\t\tthis.angle %= 360;\n\t\t\t\tvar radians = ( this.angle / 180 ) * Math.PI,\n\t\t\t\t\tx = this.radius + this.settings.stroke_width / 2 + Math.cos( radians ) * this.radius,\n\t\t\t\t\ty = this.radius + this.settings.stroke_width / 2 + Math.sin( radians ) * this.radius,\n\t\t\t\t\td;\n\t\t\t\tif (this.first === true) {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' M ' + x + ' ' + y;\n\t\t\t\t\tthis.first = false;\n\t\t\t\t} else {\n\t\t\t\t\td = this.circle.attr( 'd' ) + ' L ' + x + ' ' + y;\n\t\t\t\t}\n\t\t\t\tthis.circle.attr( 'd', d );\n\t\t\t\tthis.i--;\n\t\n\t\t\t\tif (this.i <= 0) {\n\t\t\t\t\tclearInterval( this.timer );\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\n\t\t/**\n\t\t * Draw donut element\n\t\t *\n\t\t * @since 3.9.0\n\t\t *\n\t\t * @param {Object} $el jQuery element to draw a chart within.\n\t\t * @return {Void}\n\t\t */\n\t\tfunction draw( $el ) {\n\t\t\tvar path = '';\n\t\t\t$el.append( '' + path + '' );\n\t\t\tvar donut = new Donut( {\n\t\t\t\telement: $el,\n\t\t\t\tpercent: $el.attr( 'data-perc' )\n\t\t\t} );\n\t\t\tdonut.animate();\n\t\t}\n\t\n\t\tdraw( $el );\n\t\n\t};\n\t\n\t\t/**\n\t * Forms\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 5.0.0\n\t * @version 7.0.0\n\t */\n\t\n\tLLMS.Forms = {\n\t\n\t\t/**\n\t\t * Stores locale information.\n\t\t *\n\t\t * Added via PHP.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\taddress_info: {},\n\t\n\t\t/**\n\t\t * jQuery ref. to the city text field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$cities: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the countries select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$countries: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the states select field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states: null,\n\t\n\t\t/**\n\t\t * jQuery ref. to the hidden states holder field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$states_holder: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t \t * @since 5.0.0\n\t \t * @since 5.3.3 Move select2 dependency check into the `bind_l10_selects()` method.\n\t \t *\n\t \t * @return {void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\tif ( ! ( $( 'body' ).hasClass( 'profile-php' ) || $( 'body' ).hasClass( 'user-edit-php' ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.bind_matching_fields();\n\t\t\tself.bind_voucher_field();\n\t\t\tself.bind_edit_account();\n\t\t\tself.bind_l10n_selects();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for the edit account screen.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_edit_account: function() {\n\t\n\t\t\t// Not an edit account form.\n\t\t\tif ( ! $( 'form.llms-person-form.edit-account' ).length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t$( '.llms-toggle-fields' ).on( 'click', this.handle_toggle_click );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events fields with dynamic localization values and language.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 5.3.3 Bind select2-related events after ensuring select2 is available.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_l10n_selects: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tself.$cities = $( '#llms_billing_city' );\n\t\t\tself.$countries = $( '.llms-l10n-country-select select' );\n\t\t\tself.$states = $( '.llms-l10n-state-select select' );\n\t\t\tself.$zips = $( '#llms_billing_zip' );\n\t\n\t\t\tif ( ! self.$countries.length ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar isSelect2Available = function() {\n\t\t\t\treturn ( undefined !== $.fn.llmsSelect2 );\n\t\t\t};\n\t\n\t\t\tLLMS.wait_for( isSelect2Available, function() {\n\t\n\t\t\t\tif ( self.$states.length ) {\n\t\t\t\t\tself.prep_state_field();\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.add( self.$states ).llmsSelect2( { width: '100%' } );\n\t\n\t\t\t\tif ( window.llms.address_info ) {\n\t\t\t\t\tself.address_info = JSON.parse( window.llms.address_info );\n\t\t\t\t}\n\t\n\t\t\t\tself.$countries.on( 'change', function() {\n\t\n\t\t\t\t\tvar val = $( this ).val();\n\t\t\t\t\tself.update_locale_info( val );\n\t\n\t\t\t\t} ).trigger( 'change' );\n\t\n\t\t\t}, 'llmsSelect2' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Ensure \"matching\" fields match.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tbind_matching_fields: function() {\n\t\n\t\t\tvar $fields = $( 'input[data-match]' ).not( '[type=\"password\"]' );\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\tvar $field = $( this ),\n\t\t\t\t\t$match = $( '#' + $field.attr( 'data-match' ) ),\n\t\t\t\t\t$parents;\n\t\n\t\t\t\tif ( $match.length ) {\n\t\n\t\t\t\t\t$parents = $field.closest( '.llms-form-field' ).add( $match.closest( '.llms-form-field' ) );\n\t\n\t\t\t\t\t$field.on( 'input change', function() {\n\t\n\t\t\t\t\t\tvar val_1 = $field.val(),\n\t\t\t\t\t\t\tval_2 = $match.val();\n\t\n\t\t\t\t\t\tif ( val_1 && val_2 && val_1 !== val_2 ) {\n\t\t\t\t\t\t\t$parents.addClass( 'invalid' );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$parents.removeClass( 'invalid' );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events for voucher toggles UX.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tbind_voucher_field: function() {\n\t\n\t\t\t$( '#llms-voucher-toggle' ).on( 'click', function( e ) {\n\t\t\t\te.preventDefault();\n\t\t\t\t$( '#llms_voucher' ).toggle();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the parent element for a given field.\n\t\t *\n\t\t * The parent element is hidden when the field isn't required.\n\t\t *\n\t\t * @since 5.0.0\n\t\t * @since 7.0.0 Do not look for a WP column wrapper anymore, always return the field's wrapper div.\n\t\t *\n\t\t * @param {Object} $field jQuery dom object.\n\t\t * @return {Object}\n\t\t */\n\t\tget_field_parent: function( $field ) {\n\t\n\t\t\treturn $field.closest( '.llms-form-field' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the text of a label\n\t\t *\n\t\t * Removes any children HTML elements (eg: required span elements) and returns only the labels text.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $label jQuery object for a label element.\n\t\t * @return {String}\n\t\t */\n\t\tget_label_text: function( $label ) {\n\t\n\t\t\tvar $clone = $label.clone();\n\t\t\t$clone.find( '*' ).remove();\n\t\t\treturn $clone.text().trim();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Callback function to handle the \"toggle\" button links for changing email address and password on account edit forms\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} event Native JS event object.\n\t\t * @return {void}\n\t\t */\n\t\thandle_toggle_click: function( event ) {\n\t\n\t\t\tevent.preventDefault();\n\t\n\t\t\tvar $this = $( this ),\n\t\t\t\t$fields = $( $( this ).attr( 'data-fields' ) ),\n\t\t\t\tisShowing = $this.attr( 'data-is-showing' ) || 'no',\n\t\t\t\tdisplayFunc = 'yes' === isShowing ? 'hide' : 'show',\n\t\t\t\tdisabled = 'yes' === isShowing ? 'disabled' : null,\n\t\t\t\ttextAttr = 'yes' === isShowing ? 'data-change-text' : 'data-cancel-text';\n\t\n\t\t\t$fields.each( function() {\n\t\n\t\t\t\t$( this ).closest( '.llms-form-field' )[ displayFunc ]();\n\t\t\t\t$( this ).attr( 'disabled', disabled );\n\t\n\t\t\t} );\n\t\n\t\t\t$this.text( $this.attr( textAttr ) );\n\t\t\t$this.attr( 'data-is-showing', 'yes' === isShowing ? 'no' : 'yes' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Prepares the state select field.\n\t\t *\n\t\t * Moves All optgroup elements into a hidden & disabled select element.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tprep_state_field: function() {\n\t\n\t\t\tvar $parent = this.$states.closest( '.llms-form-field' );\n\t\n\t\t\tthis.$holder = $( '',\n\t\t\t\t{ name: $field.attr('name'), class: $field.attr( 'class' ) + ' hidden', type: 'hidden' }\n\t\t\t).insertAfter( $field );\n\t\t\t$field.attr( 'disabled', 'disabled' );\n\t\t\tthis.get_field_parent( $field ).hide();\n\t\t},\n\t\n\t\t/**\n\t\t * Enable a given field\n\t\t *\n\t\t * It also shows the parent element, and removes the empty hidden input field\n\t\t * previously added by disable_field().\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {Object} $field The jQuery object for the field.\n\t\t */\n\t\tenable_field: function( $field ) {\n\t\t\t$field.removeAttr( 'disabled' );\n\t\t\t$field.next( '.hidden[name='+$field.attr('name')+']' ).detach();\n\t\t\tthis.get_field_parent( $field ).show();\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Instructors List\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Instructors = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-instructors' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-instructors .llms-author' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Localization functions for LifterLMS Javascript\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 2.7.3\n\t * @version 2.7.3\n\t *\n\t * @todo we need more robust translation functions to handle sprintf and pluralization\n\t * at this moment we don't need those and haven't stubbed them out\n\t * those will be added when they're needed\n\t */\n\t\n\tLLMS.l10n = LLMS.l10n || {};\n\t\n\tLLMS.l10n.translate = function ( string ) {\n\t\n\t\tvar self = this;\n\t\n\t\tif ( self.strings[string] ) {\n\t\n\t\t\treturn self.strings[string];\n\t\n\t\t} else {\n\t\n\t\t\treturn string;\n\t\n\t\t}\n\t\n\t};\n\t\n\t/**\n\t * Translate and replace placeholders in a string\n\t *\n\t * @example LLMS.l10n.replace( 'This is a %2$s %1$s String', {\n\t * \t'%1$s': 'cool',\n\t * \t\t\t'%2$s': 'very'\n\t * \t\t} );\n\t * \t\tOutput: \"This is a very cool String\"\n\t *\n\t * @param string string text string\n\t * @param object replacements object containing token => replacement pairs\n\t * @return string\n\t * @since 3.16.0\n\t * @version 3.16.0\n\t */\n\tLLMS.l10n.replace = function( string, replacements ) {\n\t\n\t\tvar str = this.translate( string );\n\t\n\t\t$.each( replacements, function( token, value ) {\n\t\n\t\t\tif ( -1 !== token.indexOf( 's' ) ) {\n\t\t\t\tvalue = value.toString();\n\t\t\t} else if ( -1 !== token.indexOf( 'd' ) ) {\n\t\t\t\tvalue = value * 1;\n\t\t\t}\n\t\n\t\t\tstr = str.replace( token, value );\n\t\n\t\t} );\n\t\n\t\treturn str;\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Lesson Preview Elements\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.16.12\n\t */\n\t\n\tLLMS.LessonPreview = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$els: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked = $( 'a[href=\"#llms-lesson-locked\"]' );\n\t\n\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\tself.bind();\n\t\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-course-navigation' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.16.12\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$locked.on( 'click', function() {\n\t\t\t\treturn false;\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseenter', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\tif ( ! $tip.length ) {\n\t\t\t\t\tvar msg = $( this ).attr( 'data-tooltip-msg' );\n\t\t\t\t\tif ( ! msg ) {\n\t\t\t\t\t\tmsg = LLMS.l10n.translate( 'You do not have permission to access this content' );\n\t\t\t\t\t}\n\t\t\t\t\t$tip = self.get_tooltip( msg );\n\t\t\t\t\t$( this ).append( $tip );\n\t\t\t\t}\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t$tip.addClass( 'show' );\n\t\t\t\t}, 10 );\n\t\n\t\t\t} );\n\t\n\t\t\tthis.$locked.on( 'mouseleave', function() {\n\t\n\t\t\t\tvar $tip = $( this ).find( '.llms-tooltip' );\n\t\t\t\t$tip.removeClass( 'show' );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of lesson preview items in course navigation blocks\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.0.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-course-navigation .llms-lesson-link' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get a tooltip element\n\t\t *\n\t\t * @param string msg message to display inside the tooltip\n\t\t * @return obj\n\t\t * @since 3.0.0\n\t\t * @version 3.2.4\n\t\t */\n\t\tget_tooltip: function( msg ) {\n\t\t\tvar $el = $( '
    ' );\n\t\t\t$el.append( '
    ' + msg + '
    ' );\n\t\t\treturn $el;\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * LifterLMS Loops JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 3.14.0\n\t */\n\t\n\tLLMS.Loops = {\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( '.llms-loop' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\n\t\t\t\t\tself.match_height();\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Match the height of .llms-loop-item\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.14.0\n\t\t */\n\t\tmatch_height: function() {\n\t\n\t\t\t$( '.llms-loop-item .llms-loop-item-content' ).matchHeight();\n\t\t\t$( '.llms-achievement-loop-item .llms-achievement' ).matchHeight();\n\t\t\t$( '.llms-certificate-loop-item .llms-certificate' ).matchHeight();\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Handle the Collapsible Syllabus Widget / Shortcode\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.OutlineCollapse = {\n\t\n\t\t/**\n\t\t * A jQuery object of all outlines present on the current screen\n\t\t *\n\t\t * @type obj\n\t\t */\n\t\t$outlines: null,\n\t\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tthis.$outlines = $( '.llms-widget-syllabus--collapsible' );\n\t\n\t\t\tif ( this.$outlines.length ) {\n\t\n\t\t\t\tthis.bind();\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tthis.$outlines.each( function() {\n\t\n\t\t\t\tvar $outline = $( this ),\n\t\t\t\t\t$headers = $outline.find( '.llms-section .section-header' );\n\t\n\t\t\t\t// bind header clicks\n\t\t\t\t$headers.on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $toggle = $( this ),\n\t\t\t\t\t\t$section = $toggle.closest( '.llms-section' ),\n\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t\t// bind optional toggle \"buttons\"\n\t\t\t\t$outline.find( '.llms-collapse-toggle' ).on( 'click', function( e ) {\n\t\n\t\t\t\t\te.preventDefault();\n\t\n\t\t\t\t\tvar $btn = $( this ),\n\t\t\t\t\t\taction = $btn.attr( 'data-action' ),\n\t\t\t\t\t\topposite_action = ( 'close' === action ) ? 'opened' : 'closed';\n\t\n\t\t\t\t\t$headers.each( function() {\n\t\n\t\t\t\t\t\tvar $section = $( this ).closest( '.llms-section' ),\n\t\t\t\t\t\t\tstate = self.get_section_state( $section );\n\t\n\t\t\t\t\t\tif ( opposite_action !== state ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tswitch ( state ) {\n\t\n\t\t\t\t\t\t\tcase 'closed':\n\t\t\t\t\t\t\t\tself.close_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\tcase 'opened':\n\t\t\t\t\t\t\t\tself.open_section( $section );\n\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t$( this ).trigger( 'click' );\n\t\n\t\t\t\t\t} );\n\t\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Close an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\tclose_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--opened' ).addClass( 'llms-section--closed' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Open an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return void\n\t\t */\n\t\topen_section: function( $section ) {\n\t\n\t\t\t$section.removeClass( 'llms-section--closed' ).addClass( 'llms-section--opened' );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current state (open or closed) of an outline section\n\t\t *\n\t\t * @param obj $section jQuery selector of a '.llms-section'\n\t\t * @return string 'opened' or 'closed'\n\t\t */\n\t\tget_section_state: function( $section ) {\n\t\n\t\t\treturn $section.hasClass( 'llms-section--opened' ) ? 'opened' : 'closed';\n\t\n\t\t}\n\t\n\t};\n\t\n\t\t/**\n\t * Handle Password Strength Meter for registration and password update fields\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.0.0\n\t * @version 5.0.0\n\t */\n\t\n\t$.extend( LLMS.PasswordStrength, {\n\t\n\t\t/**\n\t\t * jQuery ref for the password strength meter object.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$meter: $( '.llms-password-strength-meter' ),\n\t\n\t\t/**\n\t\t * jQuery ref for the password field.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$pass: null,\n\t\n\t\t/**\n\t\t * jQuery ref for the password confirmation field\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$conf: null,\n\t\n\t\t/**\n\t\t * jQuery ref for form element.\n\t\t *\n\t\t * @type {Object}\n\t\t */\n\t\t$form: null,\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 3.7.0 Unknown\n\t\t * @since 5.0.0 Move reference setup to `setup_references()`.\n\t\t * Use `LLMS.wait_for()` for dependency waiting.\n\t\t *\n\t\t * @return {Void}\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( ! this.setup_references() ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tLLMS.wait_for( function() {\n\t\t\t\treturn ( 'undefined' !== typeof wp && 'undefined' !== typeof wp.passwordStrength );\n\t\t\t}, function() {\n\t\t\t\tself.bind();\n\t\t\t\tself.$form.trigger( 'llms-password-strength-ready' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM Events\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\t// add submission event handlers when not on a checkout form\n\t\t\tif ( ! this.$form.hasClass( 'llms-checkout' ) ) {\n\t\t\t\tself.$form.on( 'submit', self, self.submit );\n\t\t\t}\n\t\n\t\t\t// check password strength on keyup\n\t\t\tself.$pass.add( self.$conf ).on( 'keyup', function() {\n\t\t\t\tself.check_strength();\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Check the strength of a user entered password\n\t\t * and update elements depending on the current strength\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tcheck_strength: function() {\n\t\n\t\t\tvar $pass_field = this.$pass.closest( '.llms-form-field' ),\n\t\t\t\t$conf_field = this.$conf && this.$conf.length ? this.$conf.closest( '.llms-form-field' ) : null,\n\t\t\t\tpass_length = this.$pass.val().length,\n\t\t\t\tconf_length = this.$conf && this.$conf.length ? this.$conf.val().length : 0;\n\t\n\t\t\t// hide the meter if both fields are empty\n\t\t\tif ( ! pass_length && ! conf_length ) {\n\t\t\t\t$pass_field.removeClass( 'valid invalid' );\n\t\t\t\tif ( $conf_field ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid invalid' );\n\t\t\t\t}\n\t\t\t\tthis.$meter.hide();\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( this.get_current_strength_status() ) {\n\t\t\t\t$pass_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'invalid' ).addClass( 'valid' );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$pass_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\tif ( conf_length ) {\n\t\t\t\t\t$conf_field.removeClass( 'valid' ).addClass( 'invalid' );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tthis.$meter.removeClass( 'too-short very-weak weak medium strong mismatch' );\n\t\t\tthis.$meter.show().addClass( this.get_current_strength( 'slug' ) );\n\t\t\tthis.$meter.html( this.get_current_strength( 'text' ) );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission action called during registration on checkout screen\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param obj self instance of this class\n\t\t * @param Function callback callback function, passes error message or success back to checkout handler\n\t\t * @return void\n\t\t */\n\t\tcheckout: function( self, callback ) {\n\t\n\t\t\tif ( self.get_current_strength_status() ) {\n\t\n\t\t\t\tcallback( true );\n\t\n\t\t\t} else {\n\t\n\t\t\t\tcallback( LLMS.l10n.translate( 'There is an issue with your chosen password.' ) );\n\t\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklisted strings\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blocklist: function() {\n\t\n\t\t\t// Default values from WP Core + any values added via settings filter..\n\t\t\tvar blocklist = wp.passwordStrength.userInputDisallowedList().concat( this.get_setting( 'blocklist', [] ) );\n\t\n\t\t\t// Add values from all text fields in the form.\n\t\t\tthis.$form.find( 'input[type=\"text\"], input[type=\"email\"], input[type=\"tel\"], input[type=\"number\"]' ).each( function() {\n\t\t\t\tvar val = $( this ).val();\n\t\t\t\tif ( val ) {\n\t\t\t\t\tblocklist.push( val );\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\treturn blocklist;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve current strength as a number, a slug, or a translated text string\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow password confirmation to be optional when checking strength.\n\t\t *\n\t\t * @param {String} format Derived return format [int|slug|text] defaults to int.\n\t\t * @return mixed\n\t\t */\n\t\tget_current_strength: function( format ) {\n\t\n\t\t\tformat = format || 'int';\n\t\t\tvar pass = this.$pass.val(),\n\t\t\t\tconf = this.$conf && this.$conf.length ? this.$conf.val() : '',\n\t\t\t\tval;\n\t\n\t\t\t// enforce custom length requirement\n\t\t\tif ( pass.length < this.get_setting( 'min_length', 6 ) ) {\n\t\t\t\tval = -1;\n\t\t\t} else {\n\t\t\t\tval = wp.passwordStrength.meter( pass, this.get_blocklist(), conf );\n\t\t\t\t// 0 & 1 are both very-weak\n\t\t\t\tif ( 0 === val ) {\n\t\t\t\t\tval = 1;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tif ( 'slug' === format ) {\n\t\t\t\treturn this.get_strength_slug( val );\n\t\t\t} else if ( 'text' === format ) {\n\t\t\t\treturn this.get_strength_text( val );\n\t\t\t} else {\n\t\t\t\treturn val;\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Determines if the current password strength meets the user-defined\n\t\t * minimum password strength requirements\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @return boolean\n\t\t */\n\t\tget_current_strength_status: function() {\n\t\t\tvar curr = this.get_current_strength(),\n\t\t\t\tmin = this.get_strength_value( this.get_minimum_strength() );\n\t\t\treturn ( 5 === curr ) ? false : ( curr >= min );\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieve the minimum password strength for the current form.\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Replaces the version output via an inline PHP script in favor of utilizing values configured in the settings object.\n\t\t *\n\t\t * @return {string}\n\t\t */\n\t\tget_minimum_strength: function() {\n\t\t\treturn this.get_setting( 'min_strength', 'strong' );\n\t\t},\n\t\n\t\t/**\n\t\t * Get a setting and fallback to a default value.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @param {String} key Setting key.\n\t\t * @param {mixed} default_val Default value when the requested setting cannot be located.\n\t\t * @return {mixed}\n\t\t */\n\t\tget_setting: function( key, default_val ) {\n\t\t\tvar settings = this.get_settings();\n\t\t\treturn settings[ key ] ? settings[ key ] : default_val;\n\t\t},\n\t\n\t\t/**\n\t\t * Get the slug associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param int strength_val Strength value number.\n\t\t * @return string\n\t\t */\n\t\tget_strength_slug: function( strength_val ) {\n\t\n\t\t\tvar slugs = {\n\t\t\t\t'-1': 'too-short',\n\t\t\t\t1: 'very-weak',\n\t\t\t\t2: 'weak',\n\t\t\t\t3: 'medium',\n\t\t\t\t4: 'strong',\n\t\t\t\t5: 'mismatch',\n\t\t\t};\n\t\n\t\t\treturn ( slugs[ strength_val ] ) ? slugs[ strength_val ] : slugs[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Gets the translated text associated with a strength value\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param {Integer} strength_val Strength value\n\t\t * @return {String}\n\t\t */\n\t\tget_strength_text: function( strength_val ) {\n\t\n\t\t\tvar texts = {\n\t\t\t\t'-1': LLMS.l10n.translate( 'Too Short' ),\n\t\t\t\t1: LLMS.l10n.translate( 'Very Weak' ),\n\t\t\t\t2: LLMS.l10n.translate( 'Weak' ),\n\t\t\t\t3: LLMS.l10n.translate( 'Medium' ),\n\t\t\t\t4: LLMS.l10n.translate( 'Strong' ),\n\t\t\t\t5: LLMS.l10n.translate( 'Mismatch' ),\n\t\t\t};\n\t\n\t\t\treturn ( texts[ strength_val ] ) ? texts[ strength_val ] : texts[5];\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the value associated with a strength slug\n\t\t *\n\t\t * @since 3.0.0\n\t\t *\n\t\t * @param string strength_slug A strength slug.\n\t\t * @return {Integer}\n\t\t */\n\t\tget_strength_value: function( strength_slug ) {\n\t\n\t\t\tvar values = {\n\t\t\t\t'too-short': -1,\n\t\t\t\t'very-weak': 1,\n\t\t\t\tweak: 2,\n\t\t\t\tmedium: 3,\n\t\t\t\tstrong: 4,\n\t\t\t\tmismatch: 5,\n\t\t\t};\n\t\n\t\t\treturn ( values[ strength_slug ] ) ? values[ strength_slug ] : values.mismatch;\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup jQuery references to DOM elements needed to power the password meter.\n\t\t *\n\t\t * @since 5.0.0\n\t\t *\n\t\t * @return {Boolean} Returns `true` if a meter element and password field are found, otherwise returns `false`.\n\t\t */\n\t\tsetup_references: function() {\n\t\n\t\t\tif ( ! this.$meter.length ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\n\t\t\tthis.$form = this.$meter.closest( 'form' );\n\t\t\tthis.$pass = this.$form.find( 'input#password' );\n\t\n\t\t\tif ( this.$pass.length && this.$pass.attr( 'data-match' ) ) {\n\t\t\t\tthis.$conf = this.$form.find( '#' + this.$pass.attr( 'data-match' ) );\n\t\t\t}\n\t\n\t\t\treturn ( this.$pass.length > 0 );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Form submission handler for registration and update forms\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @since 5.0.0 Allow the account edit for to bypass strength checking when the password field is disabled (not being submitted).\n\t\t *\n\t\t * @param obj e Event data.\n\t\t * @return void\n\t\t */\n\t\tsubmit: function( e ) {\n\t\n\t\t\tvar self = e.data;\n\t\t\te.preventDefault();\n\t\t\tself.$pass.trigger( 'keyup' );\n\t\n\t\t\t// Meets the status requirements OR we're on the account edit form and the password field is disabled.\n\t\t\tif ( self.get_current_strength_status() || ( self.$form.hasClass( 'edit-account' ) && 'disabled' === self.$pass.attr( 'disabled' ) ) ) {\n\t\t\t\tself.$form.off( 'submit', self.submit );\n\t\t\t\tself.$form.trigger( 'submit' );\n\t\t\t} else {\n\t\t\t\t$( 'html, body' ).animate( {\n\t\t\t\t\tscrollTop: self.$meter.offset().top - 100,\n\t\t\t\t}, 200 );\n\t\t\t\tself.$meter.hide();\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tself.$meter.fadeIn( 400 );\n\t\t\t\t}, 220 );\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * Get the list of blocklist strings\n\t\t *\n\t\t * @since 3.0.0\n\t\t * @deprecated 5.0.0 `LLMS.PasswordStrength.get_blacklist()` is deprecated in favor of `LLMS.PasswordStrength.get_blocklist()`.\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tget_blacklist: function() {\n\t\t\tconsole.log( 'Method `get_blacklist()` is deprecated in favor of `get_blocklist()`.' );\n\t\t\treturn this.get_blacklist();\n\t\t},\n\t\n\t} );\n\t\n\t\t/**\n\t * Pricing Table UI\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown.\n\t * @version Unknown.\n\t */\n\t\n\tLLMS.Pricing_Tables = {\n\t\n\t\t/**\n\t\t * Init\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tvar self = this;\n\t\n\t\t\tif ( $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\tif ( $( '.llms-access-plans' ).length ) {\n\t\n\t\t\t\tLLMS.wait_for_matchHeight( function() {\n\t\t\t\t\tself.bind();\n\t\t\t\t} );\n\t\n\t\t\t\tthis.$locked = $( 'a[href=\"#llms-plan-locked\"]' );\n\t\n\t\t\t\tif ( this.$locked.length ) {\n\t\n\t\t\t\t\tLLMS.wait_for_popover( function() {\n\t\t\t\t\t\tself.bind_locked();\n\t\t\t\t\t} );\n\t\n\t\t\t\t}\n\t\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-access-plan-content' ).matchHeight();\n\t\t\t$( '.llms-access-plan-pricing.trial' ).matchHeight();\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Setup a popover for members-only restricted plans\n\t\t *\n\t\t * @return void\n\t\t * @since 3.0.0\n\t\t * @version 3.9.1\n\t\t */\n\t\tbind_locked: function() {\n\t\n\t\t\tthis.$locked.each( function() {\n\t\n\t\t\t\t$( this ).webuiPopover( {\n\t\t\t\t\tanimation: 'pop',\n\t\t\t\t\tcloseable: true,\n\t\t\t\t\tcontent: function( e ) {\n\t\t\t\t\t\tvar $content = $( '
    ' );\n\t\t\t\t\t\t$content.append( e.$element.closest( '.llms-access-plan' ).find( '.llms-access-plan-restrictions ul' ).clone() );\n\t\t\t\t\t\treturn $content;\n\t\t\t\t\t},\n\t\t\t\t\tplacement: 'top',\n\t\t\t\t\tstyle: 'inverse',\n\t\t\t\t\ttitle: LLMS.l10n.translate( 'Members Only Pricing' ),\n\t\t\t\t\twidth: '280px',\n\t\t\t\t} );\n\t\n\t\t\t} );\n\t\n\t\t},\n\t\n\t};\n\t\n\t\t/**\n\t * Quiz Attempt\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 7.3.0\n\t * @version 7.3.0\n\t */\n\t\n\tLLMS.Quiz_Attempt = {\n\t\t/**\n\t\t * Initialize\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\t$( '.llms-quiz-attempt-question-header a.toggle-answer' ).on( 'click', function( e ) {\n\t\n\t\t\t\te.preventDefault();\n\t\n\t\t\t\tvar $curr = $( this ).closest( 'header' ).next( '.llms-quiz-attempt-question-main' );\n\t\n\t\t\t\t$( this ).closest( 'li' ).siblings().find( '.llms-quiz-attempt-question-main' ).slideUp( 200 );\n\t\n\t\t\t\tif ( $curr.is( ':visible' ) ) {\n\t\t\t\t\t$curr.slideUp( 200 );\n\t\t\t\t} else {\n\t\t\t\t\t$curr.slideDown( 200 );\n\t\t\t\t}\n\t\n\t\t\t} );\n\t\t}\n\t\n\t}\n\t\n\t\t/**\n\t * LifterLMS Reviews JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Review = {\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\t// console.log('Initializing Review ');\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * This function binds actions to the appropriate hooks\n\t\t */\n\t\tbind: function() {\n\t\t\t$( '#llms_review_submit_button' ).click(function()\n\t\t\t\t{\n\t\t\t\tif ($( '#review_title' ).val() !== '' && $( '#review_text' ).val() !== '') {\n\t\t\t\t\tjQuery.ajax({\n\t\t\t\t\t\ttype : 'post',\n\t\t\t\t\t\tdataType : 'json',\n\t\t\t\t\t\turl : window.llms.ajaxurl,\n\t\t\t\t\t\tdata : {\n\t\t\t\t\t\t\taction : 'LLMSSubmitReview',\n\t\t\t\t\t\t\treview_title: $( '#review_title' ).val(),\n\t\t\t\t\t\t\treview_text: $( '#review_text' ).val(),\n\t\t\t\t\t\t\tpageID : $( '#post_ID' ).val()\n\t\t\t\t\t\t},\n\t\t\t\t\t\tsuccess: function()\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( 'Review success' );\n\t\t\t\t\t\t\t$( '#review_box' ).hide( 'swing' );\n\t\t\t\t\t\t\t$( '#thank_you_box' ).show( 'swing' );\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function(jqXHR, textStatus, errorThrown )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tconsole.log( jqXHR );\n\t\t\t\t\t\t\tconsole.log( textStatus );\n\t\t\t\t\t\t\tconsole.log( errorThrown );\n\t\t\t\t\t\t},\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tif ($( '#review_title' ).val() === '') {\n\t\t\t\t\t\t$( '#review_title_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_title_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t\tif ($( '#review_text' ).val() === '') {\n\t\t\t\t\t\t$( '#review_text_error' ).show( 'swing' );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$( '#review_text_error' ).hide( 'swing' );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\n\t\t\t} else {\n\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t}\n\t\t\t$( '#_llms_display_reviews' ).change(function() {\n\t\t\t\tif ( $( '#_llms_display_reviews' ).attr( 'checked' ) ) {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).addClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).show();\n\t\t\t\t} else {\n\t\t\t\t\t$( '.llms-num-reviews-top' ).removeClass( 'top' );\n\t\t\t\t\t$( '.llms-num-reviews-bottom' ).hide();\n\t\t\t\t}\n\t\t\t});\n\t\n\t\t},\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/*!\n\t * JavaScript Cookie v2.2.1\n\t * https://github.com/js-cookie/js-cookie\n\t *\n\t * Copyright 2006, 2015 Klaus Hartl & Fagner Brack\n\t * Released under the MIT license\n\t */\n\t;(function (factory) {\n\t\tvar registeredInModuleLoader;\n\t\tif (typeof define === 'function' && define.amd) {\n\t\t\tdefine(factory);\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (typeof exports === 'object') {\n\t\t\tmodule.exports = factory();\n\t\t\tregisteredInModuleLoader = true;\n\t\t}\n\t\tif (!registeredInModuleLoader) {\n\t\t\tvar OldCookies = window.Cookies;\n\t\t\tvar api = window.Cookies = factory();\n\t\t\tapi.noConflict = function () {\n\t\t\t\twindow.Cookies = OldCookies;\n\t\t\t\treturn api;\n\t\t\t};\n\t\t}\n\t}(function () {\n\t\tfunction extend () {\n\t\t\tvar i = 0;\n\t\t\tvar result = {};\n\t\t\tfor (; i < arguments.length; i++) {\n\t\t\t\tvar attributes = arguments[ i ];\n\t\t\t\tfor (var key in attributes) {\n\t\t\t\t\tresult[key] = attributes[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t\n\t\tfunction decode (s) {\n\t\t\treturn s.replace(/(%[0-9A-Z]{2})+/g, decodeURIComponent);\n\t\t}\n\t\n\t\tfunction init (converter) {\n\t\t\tfunction api() {}\n\t\n\t\t\tfunction set (key, value, attributes) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tattributes = extend({\n\t\t\t\t\tpath: '/'\n\t\t\t\t}, api.defaults, attributes);\n\t\n\t\t\t\tif (typeof attributes.expires === 'number') {\n\t\t\t\t\tattributes.expires = new Date(new Date() * 1 + attributes.expires * 864e+5);\n\t\t\t\t}\n\t\n\t\t\t\t// We're using \"expires\" because \"max-age\" is not supported by IE\n\t\t\t\tattributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';\n\t\n\t\t\t\ttry {\n\t\t\t\t\tvar result = JSON.stringify(value);\n\t\t\t\t\tif (/^[\\{\\[]/.test(result)) {\n\t\t\t\t\t\tvalue = result;\n\t\t\t\t\t}\n\t\t\t\t} catch (e) {}\n\t\n\t\t\t\tvalue = converter.write ?\n\t\t\t\t\tconverter.write(value, key) :\n\t\t\t\t\tencodeURIComponent(String(value))\n\t\t\t\t\t\t.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);\n\t\n\t\t\t\tkey = encodeURIComponent(String(key))\n\t\t\t\t\t.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent)\n\t\t\t\t\t.replace(/[\\(\\)]/g, escape);\n\t\n\t\t\t\tvar stringifiedAttributes = '';\n\t\t\t\tfor (var attributeName in attributes) {\n\t\t\t\t\tif (!attributes[attributeName]) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tstringifiedAttributes += '; ' + attributeName;\n\t\t\t\t\tif (attributes[attributeName] === true) {\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Considers RFC 6265 section 5.2:\n\t\t\t\t\t// ...\n\t\t\t\t\t// 3. If the remaining unparsed-attributes contains a %x3B (\";\")\n\t\t\t\t\t// character:\n\t\t\t\t\t// Consume the characters of the unparsed-attributes up to,\n\t\t\t\t\t// not including, the first %x3B (\";\") character.\n\t\t\t\t\t// ...\n\t\t\t\t\tstringifiedAttributes += '=' + attributes[attributeName].split(';')[0];\n\t\t\t\t}\n\t\n\t\t\t\treturn (document.cookie = key + '=' + value + stringifiedAttributes);\n\t\t\t}\n\t\n\t\t\tfunction get (key, json) {\n\t\t\t\tif (typeof document === 'undefined') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tvar jar = {};\n\t\t\t\t// To prevent the for loop in the first place assign an empty array\n\t\t\t\t// in case there are no cookies at all.\n\t\t\t\tvar cookies = document.cookie ? document.cookie.split('; ') : [];\n\t\t\t\tvar i = 0;\n\t\n\t\t\t\tfor (; i < cookies.length; i++) {\n\t\t\t\t\tvar parts = cookies[i].split('=');\n\t\t\t\t\tvar cookie = parts.slice(1).join('=');\n\t\n\t\t\t\t\tif (!json && cookie.charAt(0) === '\"') {\n\t\t\t\t\t\tcookie = cookie.slice(1, -1);\n\t\t\t\t\t}\n\t\n\t\t\t\t\ttry {\n\t\t\t\t\t\tvar name = decode(parts[0]);\n\t\t\t\t\t\tcookie = (converter.read || converter)(cookie, name) ||\n\t\t\t\t\t\t\tdecode(cookie);\n\t\n\t\t\t\t\t\tif (json) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tcookie = JSON.parse(cookie);\n\t\t\t\t\t\t\t} catch (e) {}\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tjar[name] = cookie;\n\t\n\t\t\t\t\t\tif (key === name) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch (e) {}\n\t\t\t\t}\n\t\n\t\t\t\treturn key ? jar[key] : jar;\n\t\t\t}\n\t\n\t\t\tapi.set = set;\n\t\t\tapi.get = function (key) {\n\t\t\t\treturn get(key, false /* read as raw */);\n\t\t\t};\n\t\t\tapi.getJSON = function (key) {\n\t\t\t\treturn get(key, true /* read as json */);\n\t\t\t};\n\t\t\tapi.remove = function (key, attributes) {\n\t\t\t\tset(key, '', extend(attributes, {\n\t\t\t\t\texpires: -1\n\t\t\t\t}));\n\t\t\t};\n\t\n\t\t\tapi.defaults = {};\n\t\n\t\t\tapi.withConverter = init;\n\t\n\t\t\treturn api;\n\t\t}\n\t\n\t\treturn init(function () {});\n\t}));\n\t\n\t/**\n\t * Create a no conflict reference to JS Cookies.\n\t *\n\t * @type {Object}\n\t */\n\tLLMS.CookieStore = Cookies.noConflict();\n\t\n\t/**\n\t * Store information in Local Storage by group.\n\t *\n\t * @since 3.36.0\n\t * @since 3.37.14 Use persistent reference to JS Cookies.\n\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t *\n\t * @param string group Storage group id/name.\n\t */\n\tLLMS.Storage = function( group ) {\n\t\n\t\tvar self = this,\n\t\t\tstore = LLMS.CookieStore;\n\t\n\t\t/**\n\t\t * Clear all data for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tthis.clearAll = function() {\n\t\t\tstore.remove( group );\n\t\t};\n\t\n\t\t/**\n\t\t * Clear a single item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.clear = function( key ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdelete data[ key ];\n\t\t\treturn store.set( group, data );\n\t\t};\n\t\n\t\t/**\n\t\t * Retrieve (and parse) all data stored for the group.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getAll = function() {\n\t\t\treturn store.getJSON( group ) || {};\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve an item from the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param string key Item key/name.\n\t\t * @param mixed default_val Item default value to be returned when item not found in the group.\n\t\t * @return mixed\n\t\t */\n\t\tthis.get = function( key, default_val ) {\n\t\t\tvar data = self.getAll();\n\t\t\treturn data[ key ] ? data[ key ] : default_val;\n\t\t}\n\t\n\t\t/**\n\t\t * Store an item in the group by key.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 4.2.0 Set sameSite to `strict` for cookies.\n\t\t *\n\t\t * @param string key Item key name.\n\t\t * @param mixed val Item value\n\t\t * @return obj\n\t\t */\n\t\tthis.set = function( key, val ) {\n\t\t\tvar data = self.getAll();\n\t\t\tdata[ key ] = val;\n\t\t\treturn store.set( group, data, { sameSite: 'strict' } );\n\t\t};\n\t\n\t}\n\t\n\t\t/**\n\t * Student Dashboard related JS\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since 3.7.0\n\t * @since 3.10.0 Bind events on the orders screen.\n\t * @since 5.0.0 Removed redundant password toggle logic for edit account screen.\n\t * @version 5.0.0\n\t */\n\tLLMS.StudentDashboard = {\n\t\n\t\t/**\n\t\t * Slug for the current screen/endpoint\n\t\t *\n\t\t * @type {String}\n\t\t */\n\t\tscreen: '',\n\t\n\t\t/**\n\t\t * Init\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.10.0 Unknown\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tinit: function() {\n\t\n\t\t\tif ( $( '.llms-student-dashboard' ).length ) {\n\t\t\t\tthis.bind();\n\t\t\t\tif ( 'orders' === this.get_screen() ) {\n\t\t\t\t\tthis.bind_orders();\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind DOM events\n\t\t *\n\t\t * @since 3.7.0\n\t\t * @since 3.7.4 Unknown.\n\t\t * @since 5.0.0 Removed password toggle logic.\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind: function() {\n\t\n\t\t\t$( '.llms-donut' ).each( function() {\n\t\t\t\tLLMS.Donut( $( this ) );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Bind events related to the orders screen on the dashboard\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tbind_orders: function() {\n\t\n\t\t\t$( '#llms-cancel-subscription-form' ).on( 'submit', this.order_cancel_warning );\n\t\t\t$( '#llms_update_payment_method' ).on( 'click', function() {\n\t\t\t\t$( 'input[name=\"llms_payment_gateway\"]:checked' ).trigger( 'change' );\n\t\t\t\t$( this ).closest( 'form' ).find( '.llms-switch-payment-source-main' ).slideToggle( '200' );\n\t\t\t} );\n\t\n\t\t},\n\t\n\t\t/**\n\t\t * Get the current dashboard endpoint/tab slug\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tget_screen: function() {\n\t\t\tif ( ! this.screen ) {\n\t\t\t\tthis.screen = $( '.llms-student-dashboard' ).attr( 'data-current' );\n\t\t\t}\n\t\t\treturn this.screen;\n\t\t},\n\t\n\t\t/**\n\t\t * Show a confirmation warning when Cancel Subscription form is submitted\n\t\t *\n\t\t * @since 3.10.0\n\t\t *\n\t\t * @param obj e JS event data.\n\t\t * @return void\n\t\t */\n\t\torder_cancel_warning: function( e ) {\n\t\t\te.preventDefault();\n\t\t\tvar msg = LLMS.l10n.translate( 'Are you sure you want to cancel your subscription?' );\n\t\t\tif ( window.confirm( LLMS.l10n.translate( msg ) ) ) {\n\t\t\t\t$( this ).off( 'submit', this.order_cancel_warning );\n\t\t\t\t$( this ).submit();\n\t\t\t}\n\t\t},\n\t\n\t};\n\t\n\t\t/* global LLMS, $ */\n\t\n\t/**\n\t * User event/interaction tracking.\n\t *\n\t * @since 3.36.0\n\t * @since 3.36.2 Fix JS error when settings aren't loaded.\n\t * @since 3.37.2 When adding an event to the storae also make sure the nonce is set for server-side verification.\n\t * @since 3.37.9 Fix IE compatibility issue related to usage of `Object.assign()`.\n\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t * @since 5.0.0 Set `settings` as an empty object when no settings supplied.\n\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t */\n\tLLMS.Tracking = function( settings ) {\n\t\n\t\tsettings = settings || {};\n\t\n\t\tvar self = this,\n\t\t\tstore = new LLMS.Storage( 'llms-tracking' );\n\t\n\t\tsettings = 'string' === typeof settings ? JSON.parse( settings ) : settings;\n\t\n\t\t/**\n\t\t * Initialize / Bind all tracking event listeners.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 5.0.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t * @since 7.1.0 Do not add a nonce to the datastore by default, will be added/updated\n\t\t * when storing an event to track.\n\t\t *\n\t\t * @return {void}\n\t\t */\n\t\tfunction init() {\n\t\n\t\t\tself.addEvent( 'page.load' );\n\t\n\t\t\twindow.addEventListener( 'beforeunload', onBeforeUnload );\n\t\t\twindow.addEventListener( 'unload', onUnload );\n\t\n\t\t\tdocument.addEventListener( 'visibilitychange', onVisibilityChange );\n\t\n\t\t};\n\t\n\t\t/**\n\t\t * Add an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.36.2 Fix error when settings aren't loaded.\n\t\t * @since 3.37.2 Always make sure the nonce is set for server-side verification.\n\t\t * @since 3.37.14 Persist the tracking events via ajax when reaching the cookie size limit.\n\t\t * @since 7.1.0 Only attempt to add a nonce to the datastore when a nonce exists in the settings object.\n\t\t *\n\t\t * @param string|obj event Event Id (type.event) or a full event object from `this.makeEventObj()`.\n\t\t * @param int args Optional additional arguments to pass to `this.makeEventObj()`.\n\t\t * @return {void}\n\t\t */\n\t\tthis.addEvent = function( event, args ) {\n\t\n\t\t\targs = args || {};\n\t\t\tif ( 'string' === typeof event ) {\n\t\t\t\targs.event = event;\n\t\t\t}\n\t\n\t\t\t// If the event isn't registered in the settings don't proceed.\n\t\t\tif ( !settings.events || -1 === settings.events.indexOf( args.event ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t// Make sure the nonce is set for server-side verification.\n\t\t\tif ( settings.nonce ) {\n\t\t\t\tstore.set( 'nonce', settings.nonce );\n\t\t\t}\n\t\n\t\t\tevent = self.makeEventObj( args );\n\t\n\t\t\tvar all = store.get( 'events', [] );\n\t\t\tall.push( event );\n\t\t\tstore.set( 'events', all );\n\t\n\t\t\t// If couldn't store the latest event because of size limits.\n\t\t\tif ( all.length > store.get( 'events', [] ).length ) {\n\t\n\t\t\t\t// Copy the cookie in a temporary variable.\n\t\t\t\tvar _temp = store.getAll();\n\t\t\t\t// Clear the events from the cookie.\n\t\t\t\tstore.clear('events');\n\t\n\t\t\t\t// Add the latest event to the temporary variable.\n\t\t\t\t_temp['events'].push( event );\n\t\n\t\t\t\t// Send the temporary variable as string via ajax.\n\t\t\t\tLLMS.Ajax.call( {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\taction: 'persist_tracking_events',\n\t\t\t\t\t\t'llms-tracking': JSON.stringify(_temp)\n\t\t\t\t\t},\n\t\n\t\t\t\t\terror: function( xhr, status, error ) {\n\t\n\t\t\t\t\t\tconsole.log( xhr, status, error );\n\t\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function( r ) {\n\t\n\t\t\t\t\t\tif ( 'error' === r.code ) {\n\t\t\t\t\t\t\tconsole.log(r.code, r.message);\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t}\n\t\n\t\t\t\t} );\n\t\n\t\t\t}\n\t\n\t\t}\n\t\n\t\t/**\n\t\t * Retrieve initialization settings.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @return obj\n\t\t */\n\t\tthis.getSettings = function() {\n\t\t\treturn settings;\n\t\t}\n\t\n\t\t/**\n\t\t * Create an event object suitable to save as an event.\n\t\t *\n\t\t * @since 3.36.0\n\t\t * @since 3.37.9 Use `$.extend()` in favor of `Object.assign()`.\n\t\t *\n\t\t * @param obj event {\n\t\t * Event hash\n\t\t *\n\t\t * @param {string} event (Required) Event ID, eg: \"page.load\".\n\t\t * @param {url} url Event URL. (Optional, added automatically) Stored as metadata and used to infer an object_id for post events.\n\t\t * @param {time} float (Optional, added automatically) Timestamp (in milliseconds). Used for the event creation date.\n\t\t * @param {int} obj_id (Optional). The object ID. Inferred automatically via `url` if not provided.\n\t\t * @param {obj} meta (Optional) Hash of metadata to store with the event.\n\t\t * }\n\t\t * @return obj\n\t\t */\n\t\tthis.makeEventObj = function( event ) {\n\t\t\treturn $.extend( event, {\n\t\t\t\turl: window.location.href,\n\t\t\t\ttime: Math.round( new Date().getTime() / 1000 ),\n\t\t\t} );\n\t\t}\n\t\n\t\n\t\t/**\n\t\t * Remove the visibility change event listener on window.beforeunload\n\t\t *\n\t\t * Prevents actual unloading from recording a blur event from the visibility change listener\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onBeforeUnload( e ) {\n\t\t\tdocument.removeEventListener( 'visibilitychange', onVisibilityChange );\n\t\t}\n\t\n\t\t/**\n\t\t * Record a `page.exit` event on window.unload.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onUnload( e ) {\n\t\t\tself.addEvent( 'page.exit' );\n\t\t}\n\t\n\t\t/**\n\t\t * Record `page.blur` and `page.focus` events via document.visilibitychange events.\n\t\t *\n\t\t * @since 3.36.0\n\t\t *\n\t\t * @param obj e JS event object.\n\t\t * @return void\n\t\t */\n\t\tfunction onVisibilityChange( e ) {\n\t\n\t\t\tvar event = document.hidden ? 'page.blur' : 'page.focus';\n\t\t\tself.addEvent( event );\n\t\n\t\t}\n\t\n\t\t// Initialize on the frontend only.\n\t\tif ( ! $( 'body' ).hasClass( 'wp-admin' ) ) {\n\t\t\tinit();\n\t\t}\n\t\n\t};\n\t\n\tllms.tracking = new LLMS.Tracking( llms.tracking );\n\t\n\t\t/**\n\t * Rest Methods\n\t * Manages URL and Rest object parsing\n\t *\n\t * @package LifterLMS/Scripts\n\t *\n\t * @since Unknown\n\t * @version Unknown\n\t */\n\t\n\tLLMS.Rest = {\n\t\n\t\t/**\n\t\t * Init\n\t\t * loads class methods\n\t\t */\n\t\tinit: function() {\n\t\t\tthis.bind();\n\t\t},\n\t\n\t\t/**\n\t\t * Bind Method\n\t\t * Handles dom binding on load\n\t\t *\n\t\t * @return {[type]} [description]\n\t\t */\n\t\tbind: function() {\n\t\t},\n\t\n\t\t/**\n\t\t * Searches for string matches in url path\n\t\t *\n\t\t * @param {Array} strings [Array of strings to search for matches]\n\t\t * @return {Boolean} [Was a match found?]\n\t\t */\n\t\tis_path: function( strings ) {\n\t\n\t\t\tvar path_exists = false,\n\t\t\t\turl = window.location.href;\n\t\n\t\t\tfor ( var i = 0; i < strings.length; i++ ) {\n\t\n\t\t\t\tif ( url.search( strings[i] ) > 0 && ! path_exists ) {\n\t\n\t\t\t\t\tpath_exists = true;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn path_exists;\n\t\t},\n\t\n\t\t/**\n\t\t * Retrieves query variables\n\t\t *\n\t\t * @return {[Array]} [array object of query variable key=>value pairs]\n\t\t */\n\t\tget_query_vars: function() {\n\t\n\t\t\tvar vars = [], hash,\n\t\t\t\thashes = window.location.href.slice( window.location.href.indexOf( '?' ) + 1 ).split( '&' );\n\t\n\t\t\tfor (var i = 0; i < hashes.length; i++) {\n\t\t\t\thash = hashes[i].split( '=' );\n\t\t\t\tvars.push( hash[0] );\n\t\t\t\tvars[hash[0]] = hash[1];\n\t\t\t}\n\t\n\t\t\treturn vars;\n\t\t}\n\t\n\t};\n\t\n\n\t!function(){\"use strict\";var t={d:function(n,e){for(var r in e)t.o(e,r)&&!t.o(n,r)&&Object.defineProperty(n,r,{enumerable:!0,get:e[r]})},o:function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r:function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})}},n={};t.r(n),t.d(n,{get:function(){return d},start:function(){return c},stop:function(){return u}});const e=\"llms-spinning\",r=\"default\";var o=window.wp.i18n;function i(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;const i=document.createElement(\"div\"),l=(0,o.__)(\"Loading…\",\"lifterlms\");return i.innerHTML=`${l}`,i.classList.add(e),t.appendChild(i),i}function l(t){if((t=\"string\"==typeof t?document.querySelectorAll(t):t)instanceof NodeList)return Array.from(t);const n=[];return t instanceof Element?n.push(t):\"undefined\"!=typeof jQuery&&t instanceof jQuery&&t.toArray().forEach((t=>n.push(t))),n}function s(t){const n=t.querySelectorAll(\".llms-spinning\");return n.length?Array.from(n).find((n=>t===n.parentNode)):null}function a(){const t=\"llms-spinner-styles\";if(!document.getElementById(t)){const n=document.createElement(\"style\");n.textContent=\"\\n\\t.llms-spinning {\\n\\t\\tbackground: rgba( 250, 250, 250, 0.7 );\\n\\t\\tbottom: 0;\\n\\t\\tdisplay: none;\\n\\t\\tleft: 0;\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\ttop: 0;\\n\\t\\tz-index: 2;\\n\\t}\\n\\n\\t.llms-spinner {\\n\\t\\tanimation: llms-spinning 1.5s linear infinite;\\n\\t\\tbox-sizing: border-box;\\n\\t\\tborder: 4px solid #313131;\\n\\t\\tborder-radius: 50%;\\n\\t\\theight: 40px;\\n\\t\\tleft: 50%;\\n\\t\\tmargin-left: -20px;\\n\\t\\tmargin-top: -20px;\\n\\t\\tposition: absolute;\\n\\t\\ttop: 50%;\\n\\t\\twidth: 40px;\\n\\n\\t}\\n\\n\\t.llms-spinner.small {\\n\\t\\tborder-width: 2px;\\n\\t\\theight: 20px;\\n\\t\\tmargin-left: -10px;\\n\\t\\tmargin-top: -10px;\\n\\t\\twidth: 20px;\\n\\t}\\n\\n\\t@keyframes llms-spinning {\\n\\t\\t0% {\\n\\t\\t\\ttransform: rotate( 0deg )\\n\\t\\t}\\n\\t\\t50% {\\n\\t\\t\\tborder-radius: 5%;\\n\\t\\t}\\n\\t\\t100% {\\n\\t\\t\\ttransform: rotate( 220deg) \\n\\t\\t}\\n\\t}\\n\".replace(/\\n/g,\"\").replace(/\\t/g,\" \").replace(/\\s\\s+/g,\" \"),n.id=t,document.head.appendChild(n)}}function d(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r,e=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];a();const o=l(t);if(!o.length)return null;const d=o[0],c=s(d)||i(d,n);return e&&\"undefined\"!=typeof jQuery?jQuery(c):c}function c(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;l(t).forEach((t=>{const e=d(t,n,!1);e&&(e.style.display=\"block\")}))}function u(t){l(t).forEach((t=>{const n=d(t,r,!1);n&&(n.style.display=\"none\")}))}window.LLMS=window.LLMS||{},window.LLMS.Spinner=n}();\n\n\t/**\n\t * Initializes all classes within the LLMS Namespace\n\t *\n\t * @since Unknown\n\t *\n\t * @return {void}\n\t */\n\tLLMS.init = function() {\n\n\t\tfor (var func in LLMS) {\n\n\t\t\tif ( typeof LLMS[func] === 'object' && LLMS[func] !== null ) {\n\n\t\t\t\tif ( LLMS[func].init !== undefined ) {\n\n\t\t\t\t\tif ( typeof LLMS[func].init === 'function') {\n\t\t\t\t\t\tLLMS[func].init();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t};\n\n\t/**\n\t * Determine if the current device is touch-enabled\n\t *\n\t * @since 3.24.3\n\t *\n\t * @see {@link https://stackoverflow.com/a/4819886/400568}\n\t *\n\t * @return {Boolean} Whether or not the device is touch-enabled.\n\t */\n\tLLMS.is_touch_device = function() {\n\n\t\tvar prefixes = ' -webkit- -moz- -o- -ms- '.split( ' ' );\n\t\tvar mq = function( query ) {\n\t\t\treturn window.matchMedia( query ).matches;\n\t\t}\n\n\t\tif ( ( 'ontouchstart' in window ) || window.DocumentTouch && document instanceof DocumentTouch ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t/**\n\t\t * Include the 'heartz' as a way to have a non matching MQ to help terminate the join.\n\t\t *\n\t\t * @see {@link https://git.io/vznFH}\n\t\t */\n\t\tvar query = ['(', prefixes.join( 'touch-enabled),(' ), 'heartz', ')'].join( '' );\n\t\treturn mq( query );\n\n\t};\n\n\t/**\n\t * Wait for matchHeight to load\n\t *\n\t * @since 3.0.0\n\t * @since 3.16.6 Unknown.\n\t * @since 5.3.3 Pass a dependency name to `wait_for()`.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_matchHeight = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.matchHeight );\n\t\t}, cb, 'matchHeight' );\n\t}\n\n\t/**\n\t * Wait for webuiPopover to load\n\t *\n\t * @since 3.9.1\n\t * @since 3.16.6 Unknown.\n\t *\n\t * @param {Function} cb Callback function to run when matchheight is ready.\n\t * @return {void}\n\t */\n\tLLMS.wait_for_popover = function( cb ) {\n\t\tthis.wait_for( function() {\n\t\t\treturn ( undefined !== $.fn.webuiPopover );\n\t\t}, cb, 'webuiPopover' );\n\t}\n\n\t/**\n\t * Wait for a dependency to load and then run a callback once it has\n\t *\n\t * Temporary fix for a less-than-optimal assets loading function on the PHP side of things.\n\t *\n\t * @since 3.9.1\n\t * @since 5.3.3 Added optional `name` parameter.\n\t *\n\t * @param {Function} test A function that returns a truthy if the dependency is loaded.\n\t * @param {Function} cb A callback function executed once the dependency is loaded.\n\t * @param {string} name The dependency name.\n\t * @return {void}\n\t */\n\tLLMS.wait_for = function( test, cb, name ) {\n\n\t\tvar counter = 0,\n\t\t\tinterval;\n\n\t\tname = name ? name : 'unnamed';\n\n\t\tinterval = setInterval( function() {\n\n\t\t\t// If we get to 30 seconds log an error message.\n\t\t\tif ( counter >= 300 ) {\n\n\t\t\t\tconsole.log( 'Unable to load dependency: ' + name );\n\n\t\t\t\t// If we can't access yet, increment and wait...\n\t\t\t} else {\n\n\t\t\t\t// Bind the events, we're good!\n\t\t\t\tif ( test() ) {\n\t\t\t\t\tcb();\n\t\t\t\t} else {\n\t\t\t\t\t// console.log( 'Waiting for dependency: ' + name );\n\t\t\t\t\tcounter++;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tclearInterval( interval );\n\n\t\t}, 100 );\n\n\t};\n\n\tLLMS.init( $ );\n\n} )( jQuery );\n"],"sourceRoot":"../../js"} \ No newline at end of file diff --git a/blocks/navigation-link/block.json b/blocks/navigation-link/block.json index 460dc62475..d65a5da4d3 100644 --- a/blocks/navigation-link/block.json +++ b/blocks/navigation-link/block.json @@ -26,10 +26,12 @@ "textdomain": "lifterlms", "attributes": { "label": { - "type": "string" + "type": "string", + "default": "Dashboard" }, "page": { - "type": "string" + "type": "string", + "default": "dashboard" }, "llms_visibility": { "type": "string" diff --git a/blocks/navigation-link/index.asset.php b/blocks/navigation-link/index.asset.php index 931572fef3..beed0be1d2 100644 --- a/blocks/navigation-link/index.asset.php +++ b/blocks/navigation-link/index.asset.php @@ -1 +1 @@ - array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'b17423ac2ed378929539'); + array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'd21d10e42eae4788f45c'); diff --git a/blocks/navigation-link/index.js b/blocks/navigation-link/index.js index 6c5175587f..2e6eba0592 100644 --- a/blocks/navigation-link/index.js +++ b/blocks/navigation-link/index.js @@ -1 +1 @@ -!function(){"use strict";var e,t=window.wp.element,l=window.wp.i18n,i=window.wp.blocks,n=window.wp.blockEditor,o=window.wp.components,a=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"llms/navigation-link","title":"LifterLMS Link","category":"llms-blocks","parent":["core/navigation"],"description":"Add dynamic LifterLMS links to navigation menus.","keywords":["LifterLMS","Dashboard","My Courses","My Grades","My Memberships","My Achievements","My Certificates","Notifications","Edit Account","Redeem a Voucher","Order History","Sign In","Sign Out"],"textdomain":"lifterlms","attributes":{"label":{"type":"string"},"page":{"type":"string"},"llms_visibility":{"type":"string"},"llms_visibility_in":{"type":"string"},"llms_visibility_posts":{"type":"string"}},"supports":{"typography":{"fontSize":true,"fontFamily":true,"fontWeight":true,"lineHeight":true,"textDecoration":true,"textTransform":true,"letterSpacing":true},"spacing":{"width":true}},"editorScript":"file:./index.js"}'),s=window.wp.primitives;const r=(null===(e=window)||void 0===e?void 0:e.llmsNavMenuItems)||[],c=Object.keys(r).map((e=>({label:r[e],value:e})));(0,i.registerBlockType)(a,{icon:()=>(0,t.createElement)(s.SVG,{className:"llms-block-icon",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},(0,t.createElement)(s.Path,{d:"M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"})),edit:e=>{var i,a,s,d,u,m;let{attributes:p,setAttributes:v}=e;const g=(0,n.useBlockProps)();return(0,t.createElement)(t.Fragment,null,(0,t.createElement)(n.InspectorControls,null,(0,t.createElement)(o.PanelBody,{title:(0,l.__)("LifterLMS Link Settings","lifterlms"),className:"llms-navigation-link-settings"},(0,t.createElement)(o.PanelRow,null,(0,t.createElement)(o.TextControl,{label:(0,l.__)("Label","lifterlms"),value:null!==(i=null!==(a=p.label)&&void 0!==a?a:null==r?void 0:r.dashboard)&&void 0!==i?i:"",onChange:e=>v({label:e}),placeholder:null!==(s=null!==(d=null==r?void 0:r[null==p?void 0:p.page])&&void 0!==d?d:null==r?void 0:r.dashboard)&&void 0!==s?s:"LifterLMS"})),(0,t.createElement)(o.PanelRow,null,(0,t.createElement)(o.SelectControl,{label:(0,l.__)("URL","lifterlms"),value:p.page,options:c,onChange:e=>v({page:e,label:r[e]})})))),(0,t.createElement)("div",g,(0,t.createElement)(n.RichText,{tagName:"div",value:p.label,onChange:e=>v({label:e}),placeholder:null!==(u=null!==(m=null==r?void 0:r[null==p?void 0:p.page])&&void 0!==m?m:null==r?void 0:r.dashboard)&&void 0!==u?u:"LifterLMS"})))}})}(); \ No newline at end of file +!function(){"use strict";var e,t=window.wp.element,l=window.wp.i18n,i=window.wp.blocks,n=window.wp.blockEditor,a=window.wp.components,o=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"llms/navigation-link","title":"LifterLMS Link","category":"llms-blocks","parent":["core/navigation"],"description":"Add dynamic LifterLMS links to navigation menus.","keywords":["LifterLMS","Dashboard","My Courses","My Grades","My Memberships","My Achievements","My Certificates","Notifications","Edit Account","Redeem a Voucher","Order History","Sign In","Sign Out"],"textdomain":"lifterlms","attributes":{"label":{"type":"string","default":"Dashboard"},"page":{"type":"string","default":"dashboard"},"llms_visibility":{"type":"string"},"llms_visibility_in":{"type":"string"},"llms_visibility_posts":{"type":"string"}},"supports":{"typography":{"fontSize":true,"fontFamily":true,"fontWeight":true,"lineHeight":true,"textDecoration":true,"textTransform":true,"letterSpacing":true},"spacing":{"width":true}},"editorScript":"file:./index.js"}'),s=window.wp.primitives;const r=(null===(e=window)||void 0===e?void 0:e.llmsNavMenuItems)||[],c=Object.keys(r).map((e=>({label:r[e],value:e})));(0,i.registerBlockType)(o,{icon:()=>(0,t.createElement)(s.SVG,{className:"llms-block-icon",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},(0,t.createElement)(s.Path,{d:"M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"})),edit:e=>{var i,o,s,d,u,m;let{attributes:p,setAttributes:v}=e;const g=(0,n.useBlockProps)();return(0,t.createElement)(t.Fragment,null,(0,t.createElement)(n.InspectorControls,null,(0,t.createElement)(a.PanelBody,{title:(0,l.__)("LifterLMS Link Settings","lifterlms"),className:"llms-navigation-link-settings"},(0,t.createElement)(a.PanelRow,null,(0,t.createElement)(a.TextControl,{label:(0,l.__)("Label","lifterlms"),value:null!==(i=null!==(o=p.label)&&void 0!==o?o:null==r?void 0:r.dashboard)&&void 0!==i?i:"",onChange:e=>v({label:e}),placeholder:null!==(s=null!==(d=null==r?void 0:r[null==p?void 0:p.page])&&void 0!==d?d:null==r?void 0:r.dashboard)&&void 0!==s?s:"LifterLMS"})),(0,t.createElement)(a.PanelRow,null,(0,t.createElement)(a.SelectControl,{label:(0,l.__)("URL","lifterlms"),value:p.page,options:c,onChange:e=>v({page:e,label:r[e]})})))),(0,t.createElement)("div",g,(0,t.createElement)(n.RichText,{tagName:"div",value:p.label,onChange:e=>v({label:e}),placeholder:null!==(u=null!==(m=null==r?void 0:r[null==p?void 0:p.page])&&void 0!==m?m:null==r?void 0:r.dashboard)&&void 0!==u?u:"LifterLMS"})))}})}(); \ No newline at end of file diff --git a/class-lifterlms.php b/class-lifterlms.php index c4356a60a3..7e448fbf29 100644 --- a/class-lifterlms.php +++ b/class-lifterlms.php @@ -34,7 +34,7 @@ final class LifterLMS { * * @var string */ - public $version = '7.2.1'; + public $version = '7.3.0'; /** * LLMS_Assets instance diff --git a/includes/abstracts/abstract.llms.admin.table.php b/includes/abstracts/abstract.llms.admin.table.php index ce5fe51a5b..d34c2e5d24 100644 --- a/includes/abstracts/abstract.llms.admin.table.php +++ b/includes/abstracts/abstract.llms.admin.table.php @@ -5,7 +5,7 @@ * @package LifterLMS/Abstracts/Classes * * @since 3.2.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -366,7 +366,7 @@ public function get_empty_message() { * * @since 3.4.0 * @since 3.15.0 Fix filter name. - * @since [version] Fixed typo in function name (`is_strinp` => `is_string` ). + * @since 7.3.0 Fixed typo in function name (`is_strinp` => `is_string` ). * * @param string $column_id The ID of the column. * @return string diff --git a/includes/abstracts/abstract.llms.analytics.widget.php b/includes/abstracts/abstract.llms.analytics.widget.php index 34ccf5a938..1ae75d33ae 100644 --- a/includes/abstracts/abstract.llms.analytics.widget.php +++ b/includes/abstracts/abstract.llms.analytics.widget.php @@ -5,7 +5,7 @@ * @package LifterLMS/Abstracts/Classes * * @since 3.0.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -339,7 +339,7 @@ protected function query() { /** * Whether or not the current widget can be processed/displayed. * - * @since [version] + * @since 7.3.0 * * @return true|WP_Error True if the widget can be processed, `WP_Error` otherwise. */ @@ -359,7 +359,7 @@ protected function _can_be_processed() { // phpcs:ignore -- PSR2.Methods.MethodD /** * Whether or not the current widget can be processed/displayed. * - * @since [version] + * @since 7.3.0 * * @return true|WP_Error */ @@ -391,7 +391,7 @@ public function can_be_processed() { * Output widget. * * @since 3.0.0 - * @since [version] Use `wp_json_encode` in place of the deprecated `json_encode`. + * @since 7.3.0 Use `wp_json_encode` in place of the deprecated `json_encode`. * * @return void */ diff --git a/includes/abstracts/llms-abstract-generator-posts.php b/includes/abstracts/llms-abstract-generator-posts.php index 541d334aa8..a9eee588db 100644 --- a/includes/abstracts/llms-abstract-generator-posts.php +++ b/includes/abstracts/llms-abstract-generator-posts.php @@ -5,7 +5,7 @@ * @package LifterLMS/Abstracts/Classes * * @since 4.7.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -159,7 +159,7 @@ protected function add_custom_value( $post_id, $key, $val ) { * * @since 4.7.0 * @since 4.7.1 Set the post's excerpt during the initial insert instead of during metadata updates after creation. - * @since [version] Skip adding the `generated_from_id` meta from the original post: this is the case when cloning a cloned post. + * @since 7.3.0 Skip adding the `generated_from_id` meta from the original post: this is the case when cloning a cloned post. * Also skip creating revisions. * * @param string $type The LLMS_Post_Model post type type. For example "course" for an `LLMS_Course` or `membership` for `LLMS_Membership`. diff --git a/includes/admin/class.llms.admin.builder.php b/includes/admin/class.llms.admin.builder.php index 50650d4ace..c0f5f8c194 100644 --- a/includes/admin/class.llms.admin.builder.php +++ b/includes/admin/class.llms.admin.builder.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Classes * * @since 3.13.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -1006,7 +1006,7 @@ public static function update_custom_schemas( $type, $post, $post_data ) { * * @since 3.16.0 * @since 5.1.3 Made sure a lesson moved in a just created section is correctly assigned to it. - * @since [version] Skip revision creation when creating a brand new lesson. + * @since 7.3.0 Skip revision creation when creating a brand new lesson. * * @param array $lessons Lesson data from heartbeat. * @param LLMS_Section $section instance of the parent LLMS_Section. diff --git a/includes/admin/class.llms.admin.dashboard-widget.php b/includes/admin/class.llms.admin.dashboard-widget.php index f6f50d028a..1e0534020d 100644 --- a/includes/admin/class.llms.admin.dashboard-widget.php +++ b/includes/admin/class.llms.admin.dashboard-widget.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Classes * * @since 7.2.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -32,7 +32,7 @@ public function __construct() { * Add the dashboard widget. * * @since 7.2.0 - * @since [version] Add dashboard widget only if the current user can `manage_lifterlms`. + * @since 7.3.0 Add dashboard widget only if the current user can `manage_lifterlms`. * * @return void */ @@ -178,7 +178,7 @@ function ( $a, $b ) { /** * Get dashboard widget data. * - * @since [version] + * @since 7.3.0 * * @return array $widget_data Array of data that will feed the dashboard widget. */ @@ -187,7 +187,7 @@ public static function get_dashboard_widget_data() { /** * Filters the dashboard widget data. * - * @since [version] + * @since 7.3.0 * * @param array $widget_data Array of data that will feed the dashboard widget. */ diff --git a/includes/admin/llms.functions.admin.php b/includes/admin/llms.functions.admin.php index 99a1c66b16..061d011677 100644 --- a/includes/admin/llms.functions.admin.php +++ b/includes/admin/llms.functions.admin.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Functions * * @since 3.0.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -15,7 +15,7 @@ * * @since 3.0.0 * @since 3.7.5 Unknown. - * @since [version] Strip all tags from the page title, slash the page data prior to inserting the page in the db via `wp_insert_post`. + * @since 7.3.0 Strip all tags from the page title, slash the page data prior to inserting the page in the db via `wp_insert_post`. * Prefer strict type comparison when using `in_array()`. * * @param string $slug Page slug. diff --git a/includes/admin/reporting/class.llms.admin.reporting.php b/includes/admin/reporting/class.llms.admin.reporting.php index 7e785bd129..db9d7465fa 100644 --- a/includes/admin/reporting/class.llms.admin.reporting.php +++ b/includes/admin/reporting/class.llms.admin.reporting.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Reporting/Classes * * @since 3.2.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -344,7 +344,7 @@ private function get_tabs() { * within the view. * * @since 3.19.4 - * @since [version] Use `in_array()` with strict type comparison. + * @since 7.3.0 Use `in_array()` with strict type comparison. * * @param string $tab ID/slug of the tab. * @return string @@ -362,7 +362,7 @@ private function get_tab_cap( $tab = null ) { * Filters the WP capability required to access a reporting tab. * * @since 3.19.4 - * @since [version] Added the `$tab` parameter. + * @since 7.3.0 Added the `$tab` parameter. * * @param string $cap The required WP capability. * @param string|null $tab ID/slug of the tab. @@ -468,7 +468,7 @@ public static function output_event( $event, $context = 'course' ) { * @since 6.11.0 Moved HTML into a view file. * Fixed division by zero error encountered during data comparisons when `$data` is `0`. * Added a check to ensure only numeric, monetary, or percentage data types will generate comparison data. - * @since [version] Better rounding of float values of percentage data types. + * @since 7.3.0 Better rounding of float values of percentage data types. * * @param array $args { * Array of widget options and data to be displayed. diff --git a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php index ea3ba4bc83..ac7fa59eac 100644 --- a/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php +++ b/includes/admin/reporting/widgets/class.llms.analytics.widget.ajax.php @@ -5,7 +5,7 @@ * @package LifterLMS/Admin/Reporting/Widgets/Classes * * @since 3.0.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -25,7 +25,7 @@ class LLMS_Analytics_Widget_Ajax { * @since 3.16.8 Unknown. * @since 3.35.0 Sanitize `$_REQUEST` data. * @since 6.0.0 Removed loading of class files that don't instantiate their class in favor of autoloading. - * @since [version] Ajax calls are now handled by `LLMS_Analytics_Widget_Ajax::handle()` method. + * @since 7.3.0 Ajax calls are now handled by `LLMS_Analytics_Widget_Ajax::handle()` method. * * @return void */ @@ -66,7 +66,7 @@ public function __construct() { /** * Handles the AJAX request. * - * @since [version] + * @since 7.3.0 * * @return void */ diff --git a/includes/admin/views/access-plans/access-plan.php b/includes/admin/views/access-plans/access-plan.php index 9a7d746f85..07b4975f3f 100644 --- a/includes/admin/views/access-plans/access-plan.php +++ b/includes/admin/views/access-plans/access-plan.php @@ -9,8 +9,8 @@ * @since 3.31.0 Change sale_price input from text to number to ensure min value validation is properly enforced by browsers. * @since 3.37.18 Don't localize the price "step" html attribute. * @since 4.14.0 Get the access plan's raw content to display it in the wp_editor. - * @since [version] Added another icon for possible issues with the access plan configuration. - * @version [version] + * @since 7.3.0 Added another icon for possible issues with the access plan configuration. + * @version 7.3.0 * * @var LLMS_Course $course LLMS_Course. * @var array $checkout_redirection_types Checkout redirect setting options. diff --git a/includes/admin/views/dashboard.php b/includes/admin/views/dashboard.php index f600b28f5f..014855664a 100644 --- a/includes/admin/views/dashboard.php +++ b/includes/admin/views/dashboard.php @@ -5,8 +5,8 @@ * @package LifterLMS/Admin/Views * * @since 7.1.0 - * @since [version] Leverage new `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()` method. - * @version [version] + * @since 7.3.0 Leverage new `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()` method. + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; diff --git a/includes/admin/views/dashboard/quick-links.php b/includes/admin/views/dashboard/quick-links.php index e76ea92a7c..78834e5d77 100644 --- a/includes/admin/views/dashboard/quick-links.php +++ b/includes/admin/views/dashboard/quick-links.php @@ -5,8 +5,8 @@ * @package LifterLMS/Admin/Views/Dashboard * * @since 7.1.0 - * @since [version] Added `llms_dashboard_checklist` filter. - * @version [version] + * @since 7.3.0 Added `llms_dashboard_checklist` filter. + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -75,7 +75,7 @@ /** * Filters the dashboard quick links checklist. * - * @since [version] + * @since 7.3.0 * * @param array $checklist Dashboard quick links checklist. */ diff --git a/includes/admin/views/setup-wizard/step-pages.php b/includes/admin/views/setup-wizard/step-pages.php index 79d4de49de..eeea088995 100644 --- a/includes/admin/views/setup-wizard/step-pages.php +++ b/includes/admin/views/setup-wizard/step-pages.php @@ -3,8 +3,8 @@ * Setup Wizard step: Page Setup * * @since 4.4.4 - * @since [version] Using the `LLMS_Install::get_pages()` method now. - * @version [version] + * @since 7.3.0 Using the `LLMS_Install::get_pages()` method now. + * @version 7.3.0 * * @property LLMS_Admin_Setup_Wizard $this Setup wizard class instance. */ diff --git a/includes/class.llms.install.php b/includes/class.llms.install.php index 089aa3cd02..8972c3165f 100644 --- a/includes/class.llms.install.php +++ b/includes/class.llms.install.php @@ -239,7 +239,7 @@ public static function create_options() { /** * Get array of essential starter pages. * - * @since [version] + * @since 7.3.0 * * @return array */ @@ -251,7 +251,7 @@ public static function get_pages() { * All these pages, as long as their `docs_url`, `description` and `wizard_title` * fields are defined, are going to be shown in the Setup Wizard. * - * @since [version] + * @since 7.3.0 * * @param array $pages A multidimensional array defining the essential starter pages. */ @@ -303,7 +303,7 @@ public static function get_pages() { * * @since 1.0.0 * @since 3.24.0 Unknown. - * @since [version] Using `$this->get_pages()` method now. + * @since 7.3.0 Using `$this->get_pages()` method now. * * @return boolean False on error, true on success. */ diff --git a/includes/class.llms.l10n.js.php b/includes/class.llms.l10n.js.php index b7bd54271a..29ed8b2058 100644 --- a/includes/class.llms.l10n.js.php +++ b/includes/class.llms.l10n.js.php @@ -7,7 +7,7 @@ * * @package LifterLMS/Classes/Localization * @since 3.17.8 - * @version 7.2.0 + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -33,7 +33,7 @@ public function __construct() { * @param array $strings existing strings from core / 3rd parties. * @return array * @since 3.17.8 - * @version 7.2.0 + * @version 7.3.0 */ public function get_strings( $strings ) { // phpcs:disable @@ -289,7 +289,7 @@ public function get_strings( $strings ) { * File: assets/js/llms-admin.js. * * @since Unknown - * @version 6.3.0 + * @version 7.3.0 */ 'Select a Course/Membership' => esc_html__( 'Select a Course/Membership', 'lifterlms' ), 'Select a student' => esc_html__( 'Select a student', 'lifterlms' ), @@ -299,7 +299,7 @@ public function get_strings( $strings ) { * File: assets/js/llms-analytics.js. * * @since 3.0.0 - * @version 7.2.0 + * @version 7.3.0 */ 'Filter by Student(s)' => esc_html__( 'Filter by Student(s)', 'lifterlms' ), 'Error' => esc_html__( 'Error', 'lifterlms' ), @@ -388,7 +388,7 @@ public function get_strings( $strings ) { * File: assets/js/llms-metabox-product.js. * * @since 3.0.0 - * @version 3.36.3 + * @version 7.3.0 */ 'There was an error loading the necessary resources. Please try again.' => esc_html__( 'There was an error loading the necessary resources. Please try again.', 'lifterlms' ), 'After deleting this access plan, any students subscribed to this plan will still have access and will continue to make recurring payments according to the access plan\'s settings. If you wish to terminate their plans you must do so manually. This action cannot be reversed.' => esc_html__( 'After deleting this access plan, any students subscribed to this plan will still have access and will continue to make recurring payments according to the access plan\'s settings. If you wish to terminate their plans you must do so manually. This action cannot be reversed.', 'lifterlms' ), diff --git a/includes/class.llms.nav.menus.php b/includes/class.llms.nav.menus.php index 516ce0988f..b4adac4222 100644 --- a/includes/class.llms.nav.menus.php +++ b/includes/class.llms.nav.menus.php @@ -5,7 +5,7 @@ * @package LifterLMS/Classes * * @since 3.14.7 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -29,7 +29,7 @@ class LLMS_Nav_Menus { * @since 7.1.0 Postpone the LifterLMS menu meta box addition to `admin_head-nav-menus.php` * rather than `load-nav-menus.php` it's not initially hidden (for new users). * @since 7.2.0 Add navigation link block and enqueue block editor assets. - * @since [version] Change `render_block_llms/navigation-link` to `render_block` for compatibility with LLMS block visibility. + * @since 7.3.0 Change `render_block_llms/navigation-link` to `render_block` for compatibility with LLMS block visibility. * * @return void */ @@ -374,7 +374,7 @@ public function register_block() { * Render the navigation link block. * * @since 7.2.0 - * @since [version] Add block name check since filter changed. + * @since 7.3.0 Add block name check since filter changed. * * @param string $block_content Block content. * @param array $block Block data. diff --git a/includes/functions/llms.functions.templates.loop.php b/includes/functions/llms.functions.templates.loop.php index f3c2f0c33e..8a24adbd78 100644 --- a/includes/functions/llms.functions.templates.loop.php +++ b/includes/functions/llms.functions.templates.loop.php @@ -5,7 +5,7 @@ * @package LifterLMS/Functions * * @since 1.0.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; @@ -36,7 +36,7 @@ function lifterlms_archive_description() { * @since 4.10.0 Moved from `lifterlms_archive_description()`. * Adjusted filter `llms_archive_description` to always run instead of only running if content exists to display, * this allows developers to filter the content even when an empty string is returned. - * @since [version] Fixed PHP Warning when no course/membership catalog page was set or if the + * @since 7.3.0 Fixed PHP Warning when no course/membership catalog page was set or if the * selected page doesn't exist anymore. * * @return string diff --git a/includes/schemas/llms-block-templates.php b/includes/schemas/llms-block-templates.php index efa2522fd7..b5906302e3 100644 --- a/includes/schemas/llms-block-templates.php +++ b/includes/schemas/llms-block-templates.php @@ -7,7 +7,7 @@ * @package LifterLMS/Schemas * * @since 6.0.0 - * @version [version] + * @version 7.3.0 * * @see LLMS_Post_Types::get_template(). * @link https://developer.wordpress.org/block-editor/reference-guides/block-api/block-templates/ diff --git a/languages/currency-symbols.php b/languages/currency-symbols.php index c9a2e0a82a..4fb87e1295 100644 --- a/languages/currency-symbols.php +++ b/languages/currency-symbols.php @@ -30,7 +30,7 @@ * @see llms_get_currency_symbols() * * @since 5.0.0 - * @version [version] + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; diff --git a/languages/lifterlms.pot b/languages/lifterlms.pot index 913c08cdbb..7fdc64549f 100644 --- a/languages/lifterlms.pot +++ b/languages/lifterlms.pot @@ -2,21 +2,21 @@ # This file is distributed under the GPLv3. msgid "" msgstr "" -"Project-Id-Version: LifterLMS 7.2.1\n" +"Project-Id-Version: LifterLMS 7.3.0\n" "Report-Msgid-Bugs-To: https://lifterlms.com/my-account/my-tickets\n" "Last-Translator: Team LifterLMS \n" "Language-Team: Team LifterLMS \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-06-13T15:54:18+00:00\n" +"POT-Creation-Date: 2023-08-08T15:28:54+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: llms/dev 0.2.1\n" "X-Domain: lifterlms\n" #. Plugin Name of the plugin #. Author of the plugin -#: includes/class.llms.nav.menus.php:72 +#: includes/class.llms.nav.menus.php:73 #: includes/privacy/class-llms-privacy.php:33 #: libraries/lifterlms-blocks/assets/js/llms-blocks.js:3 #: libraries/lifterlms-blocks/assets/js/llms-blocks.js:19 @@ -40,42 +40,42 @@ msgstr "" msgid "Settings" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:332 +#: includes/abstracts/abstract.llms.admin.table.php:375 #: blocks/courses/index.js:2 msgid "Any" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:334 -#: includes/abstracts/abstract.llms.admin.table.php:336 +#: includes/abstracts/abstract.llms.admin.table.php:377 +#: includes/abstracts/abstract.llms.admin.table.php:379 msgid "Any %s" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:575 +#: includes/abstracts/abstract.llms.admin.table.php:638 msgid "Search" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:645 +#: includes/abstracts/abstract.llms.admin.table.php:720 #: includes/admin/post-types/class.llms.post.tables.php:74 #: includes/admin/post-types/post-tables/class.llms.admin.post.table.courses.php:132 msgid "Export" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:655 +#: includes/abstracts/abstract.llms.admin.table.php:730 msgctxt "pagination" msgid "%1$d of %2$d" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:659 +#: includes/abstracts/abstract.llms.admin.table.php:734 msgid "First" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:661 +#: includes/abstracts/abstract.llms.admin.table.php:736 #: templates/myaccount/my-orders.php:71 #: templates/myaccount/view-order-transactions.php:52 msgid "Back" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:664 +#: includes/abstracts/abstract.llms.admin.table.php:739 #: includes/shortcodes/class.llms.shortcodes.php:383 #: templates/loop/pagination.php:38 #: templates/myaccount/my-grades.php:55 @@ -85,14 +85,18 @@ msgstr "" msgid "Next" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:666 +#: includes/abstracts/abstract.llms.admin.table.php:741 msgid "Last" msgstr "" -#: includes/abstracts/abstract.llms.admin.table.php:888 +#: includes/abstracts/abstract.llms.admin.table.php:1010 msgid "No results were found." msgstr "" +#: includes/abstracts/abstract.llms.analytics.widget.php:352 +msgid "You are not authorized to access the requested widget" +msgstr "" + #. Translators: %s = method name. #: includes/abstracts/abstract.llms.database.query.php:407 #: libraries/lifterlms-rest/includes/abstracts/class-llms-rest-controller-stubs.php:56 @@ -237,16 +241,16 @@ msgstr "" msgid "%s plugin not found. Please try again." msgstr "" -#: includes/abstracts/llms-abstract-generator-posts.php:174 +#: includes/abstracts/llms-abstract-generator-posts.php:176 msgid "The class \"%s\" does not exist." msgstr "" #. Translators: %s = post type name. -#: includes/abstracts/llms-abstract-generator-posts.php:193 +#: includes/abstracts/llms-abstract-generator-posts.php:198 msgid "Error creating the %s post object." msgstr "" -#: includes/abstracts/llms-abstract-generator-posts.php:501 +#: includes/abstracts/llms-abstract-generator-posts.php:514 msgid "Error creating new term \"%s\"." msgstr "" @@ -578,11 +582,10 @@ msgid "Last Login" msgstr "" #: includes/admin/class-llms-admin-users-table.php:85 -#: includes/admin/class.llms.admin.dashboard-widget.php:134 +#: includes/admin/class.llms.admin.dashboard-widget.php:197 #: includes/admin/reporting/class.llms.admin.reporting.php:329 #: includes/admin/reporting/tables/llms.table.students.php:638 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:75 -#: includes/admin/views/dashboard.php:49 msgid "Enrollments" msgstr "" @@ -612,7 +615,7 @@ msgstr "" #: includes/admin/reporting/tables/llms.table.students.php:654 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.students.php:120 #: includes/admin/settings/class.llms.settings.memberships.php:32 -#: includes/admin/views/access-plans/access-plan.php:276 +#: includes/admin/views/access-plans/access-plan.php:281 #: includes/class.llms.post-types.php:645 #: templates/admin/analytics/analytics.php:109 #: templates/admin/reporting/nav-filters.php:91 @@ -741,7 +744,7 @@ msgstr "" #: includes/admin/class.llms.admin.builder.php:52 #: includes/admin/class.llms.admin.menus.php:204 -#: includes/class.llms.install.php:273 +#: includes/class.llms.install.php:292 #: includes/class.llms.student.dashboard.php:155 #: includes/functions/llms.functions.templates.certificates.php:82 msgid "Dashboard" @@ -807,7 +810,7 @@ msgstr "" msgid "Error deleting the %1$s \"%2$d\"." msgstr "" -#: includes/admin/class.llms.admin.builder.php:1037 +#: includes/admin/class.llms.admin.builder.php:1038 #: includes/admin/views/builder/elements.php:22 #: includes/class.llms.l10n.js.php:94 #: includes/class.llms.l10n.js.php:351 @@ -817,80 +820,80 @@ msgid "New Lesson" msgstr "" #. Translators: %s = Lesson post id. -#: includes/admin/class.llms.admin.builder.php:1053 +#: includes/admin/class.llms.admin.builder.php:1054 msgid "Unable to update lesson \"%s\". Invalid lesson ID." msgstr "" #. Translators: %s = Question post id. -#: includes/admin/class.llms.admin.builder.php:1160 +#: includes/admin/class.llms.admin.builder.php:1167 msgid "Unable to update question \"%s\". Invalid question ID." msgstr "" #. Translators: %s = Question choice ID. -#: includes/admin/class.llms.admin.builder.php:1199 +#: includes/admin/class.llms.admin.builder.php:1206 msgid "Unable to update choice \"%s\". Invalid choice ID." msgstr "" #. Translators: %s = Quiz post id. -#: includes/admin/class.llms.admin.builder.php:1260 +#: includes/admin/class.llms.admin.builder.php:1267 msgid "Unable to update quiz \"%s\". Invalid quiz ID." msgstr "" #. Translators: %s = Section post id. -#: includes/admin/class.llms.admin.builder.php:1340 +#: includes/admin/class.llms.admin.builder.php:1347 msgid "Unable to update section \"%s\". Invalid section ID." msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:41 +#: includes/admin/class.llms.admin.dashboard-widget.php:47 #: includes/admin/class.llms.admin.dashboard.php:49 msgid "Quick Links" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:56 +#: includes/admin/class.llms.admin.dashboard-widget.php:62 msgid "Activity this week:" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:59 -#: includes/admin/views/dashboard/quick-links.php:21 +#: includes/admin/class.llms.admin.dashboard-widget.php:65 +#: includes/admin/views/dashboard/quick-links.php:22 msgid "Create a New Course" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:66 +#: includes/admin/class.llms.admin.dashboard-widget.php:72 msgid "LifterLMS News & Podcasts" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:77 -#: includes/admin/views/dashboard/quick-links.php:110 +#: includes/admin/class.llms.admin.dashboard-widget.php:83 +#: includes/admin/views/dashboard/quick-links.php:124 msgid "Podcast" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:77 -#: includes/admin/views/dashboard/quick-links.php:109 +#: includes/admin/class.llms.admin.dashboard-widget.php:83 +#: includes/admin/views/dashboard/quick-links.php:123 msgid "Blog" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:84 -#: includes/admin/class.llms.admin.dashboard-widget.php:91 -#: includes/admin/class.llms.admin.dashboard-widget.php:98 +#: includes/admin/class.llms.admin.dashboard-widget.php:90 +#: includes/admin/class.llms.admin.dashboard-widget.php:97 +#: includes/admin/class.llms.admin.dashboard-widget.php:104 msgid "Opens in a new tab" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:85 +#: includes/admin/class.llms.admin.dashboard-widget.php:91 msgid "View all blog posts" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:92 +#: includes/admin/class.llms.admin.dashboard-widget.php:98 msgid "View all podcasts" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:99 +#: includes/admin/class.llms.admin.dashboard-widget.php:105 msgid "Get support" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:136 -#: includes/admin/class.llms.admin.dashboard-widget.php:144 -#: includes/admin/class.llms.admin.dashboard-widget.php:152 -#: includes/admin/class.llms.admin.dashboard-widget.php:160 +#: includes/admin/class.llms.admin.dashboard-widget.php:199 +#: includes/admin/class.llms.admin.dashboard-widget.php:206 +#: includes/admin/class.llms.admin.dashboard-widget.php:213 +#: includes/admin/class.llms.admin.dashboard-widget.php:220 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:71 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:77 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:83 @@ -901,53 +904,42 @@ msgstr "" #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.sales.php:88 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.sales.php:102 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.sales.php:108 -#: includes/admin/views/dashboard.php:51 -#: includes/admin/views/dashboard.php:58 -#: includes/admin/views/dashboard.php:65 -#: includes/admin/views/dashboard.php:72 msgid "loading..." msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:138 +#: includes/admin/class.llms.admin.dashboard-widget.php:200 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:78 -#: includes/admin/views/dashboard.php:52 msgid "Number of total enrollments during the selected period" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:142 +#: includes/admin/class.llms.admin.dashboard-widget.php:204 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:69 -#: includes/admin/views/dashboard.php:56 msgid "Registrations" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:146 +#: includes/admin/class.llms.admin.dashboard-widget.php:207 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:72 -#: includes/admin/views/dashboard.php:59 msgid "Number of total user registrations during the selected period" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:150 +#: includes/admin/class.llms.admin.dashboard-widget.php:211 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.sales.php:74 #: includes/admin/reporting/widgets/class.llms.analytics.widget.sold.php:49 -#: includes/admin/views/dashboard.php:63 msgid "Net Sales" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:154 +#: includes/admin/class.llms.admin.dashboard-widget.php:214 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.sales.php:77 -#: includes/admin/views/dashboard.php:66 msgid "Total of all successful transactions during this period" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:158 +#: includes/admin/class.llms.admin.dashboard-widget.php:218 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:87 -#: includes/admin/views/dashboard.php:70 msgid "Lessons Completed" msgstr "" -#: includes/admin/class.llms.admin.dashboard-widget.php:162 +#: includes/admin/class.llms.admin.dashboard-widget.php:221 #: includes/admin/reporting/tabs/class.llms.admin.reporting.tab.enrollments.php:90 -#: includes/admin/views/dashboard.php:73 msgid "Number of total lessons completed during the selected period" msgstr "" @@ -1032,7 +1024,7 @@ msgid "Course Builder" msgstr "" #: includes/admin/class.llms.admin.menus.php:204 -#: includes/admin/views/dashboard.php:18 +#: includes/admin/views/dashboard.php:19 msgid "LifterLMS Dashboard" msgstr "" @@ -1097,7 +1089,7 @@ msgstr "" #: includes/admin/class.llms.admin.page.status.php:79 #: includes/admin/class.llms.admin.page.status.php:272 #: includes/class-llms-staging.php:90 -#: includes/class.llms.install.php:636 +#: includes/class.llms.install.php:680 msgid "Action failed. Please refresh the page and retry." msgstr "" @@ -1320,7 +1312,7 @@ msgid "Welcome!" msgstr "" #: includes/admin/class.llms.admin.setup.wizard.php:294 -#: includes/admin/views/setup-wizard/step-pages.php:13 +#: includes/admin/views/setup-wizard/step-pages.php:14 msgid "Page Setup" msgstr "" @@ -1349,7 +1341,7 @@ msgid "There was an error saving your data, please try again." msgstr "" #: includes/admin/class.llms.admin.system-report.php:60 -#: includes/admin/views/dashboard/quick-links.php:91 +#: includes/admin/views/dashboard/quick-links.php:105 msgid "Support" msgstr "" @@ -1412,70 +1404,70 @@ msgstr "" msgid "Successfully enrolled %1$1s into %2$2s." msgstr "" -#: includes/admin/llms.functions.admin.php:160 +#: includes/admin/llms.functions.admin.php:208 msgid "More information" msgstr "" -#: includes/admin/llms.functions.admin.php:191 +#: includes/admin/llms.functions.admin.php:239 msgid "Display default course content" msgstr "" -#: includes/admin/llms.functions.admin.php:192 +#: includes/admin/llms.functions.admin.php:240 msgid "Show custom content" msgstr "" -#: includes/admin/llms.functions.admin.php:193 +#: includes/admin/llms.functions.admin.php:241 msgid "Redirect to WordPress Page" msgstr "" -#: includes/admin/llms.functions.admin.php:194 +#: includes/admin/llms.functions.admin.php:242 msgid "Redirect to custom URL" msgstr "" -#: includes/admin/llms.functions.admin.php:210 +#: includes/admin/llms.functions.admin.php:258 msgid "Course/Membership" msgstr "" -#: includes/admin/llms.functions.admin.php:215 +#: includes/admin/llms.functions.admin.php:263 msgid "(Default) Return to %s" msgstr "" -#: includes/admin/llms.functions.admin.php:216 +#: includes/admin/llms.functions.admin.php:264 msgid "Redirect to a WordPress Page" msgstr "" -#: includes/admin/llms.functions.admin.php:217 +#: includes/admin/llms.functions.admin.php:265 msgid "Redirect to a custom URL" msgstr "" -#: includes/admin/llms.functions.admin.php:250 +#: includes/admin/llms.functions.admin.php:298 msgid "Website Title" msgstr "" -#: includes/admin/llms.functions.admin.php:251 +#: includes/admin/llms.functions.admin.php:299 msgid "Website URL" msgstr "" -#: includes/admin/llms.functions.admin.php:252 +#: includes/admin/llms.functions.admin.php:300 msgid "Student Email Address" msgstr "" -#: includes/admin/llms.functions.admin.php:253 +#: includes/admin/llms.functions.admin.php:301 #: includes/functions/llms.functions.certificate.php:214 msgid "Student Username" msgstr "" -#: includes/admin/llms.functions.admin.php:254 +#: includes/admin/llms.functions.admin.php:302 #: includes/functions/llms.functions.certificate.php:210 msgid "Student First Name" msgstr "" -#: includes/admin/llms.functions.admin.php:255 +#: includes/admin/llms.functions.admin.php:303 #: includes/functions/llms.functions.certificate.php:211 msgid "Student Last Name" msgstr "" -#: includes/admin/llms.functions.admin.php:256 +#: includes/admin/llms.functions.admin.php:304 #: includes/functions/llms.functions.certificate.php:208 msgid "Current Date" msgstr "" @@ -1887,7 +1879,7 @@ msgstr "" #: includes/admin/settings/class.llms.settings.accounts.php:306 #: includes/admin/settings/class.llms.settings.courses.php:95 #: includes/admin/settings/class.llms.settings.memberships.php:102 -#: includes/admin/views/access-plans/access-plan.php:458 +#: includes/admin/views/access-plans/access-plan.php:463 msgid "Select a page" msgstr "" @@ -2249,7 +2241,7 @@ msgid "Label" msgstr "" #: includes/admin/post-types/meta-boxes/class.llms.meta.box.instructors.php:92 -#: includes/admin/views/access-plans/access-plan.php:102 +#: includes/admin/views/access-plans/access-plan.php:107 #: libraries/lifterlms-blocks/assets/js/llms-blocks.js:24 msgid "Visibility" msgstr "" @@ -3099,16 +3091,16 @@ msgid "Quizzes" msgstr "" #: includes/admin/reporting/class.llms.admin.reporting.php:328 -#: includes/admin/views/dashboard/quick-links.php:83 +#: includes/admin/views/dashboard/quick-links.php:97 msgid "Sales" msgstr "" -#: includes/admin/reporting/class.llms.admin.reporting.php:406 +#: includes/admin/reporting/class.llms.admin.reporting.php:416 msgid "You don't have permission to do that" msgstr "" #. Translators: %s = The value of the data from the previous data set. -#: includes/admin/reporting/class.llms.admin.reporting.php:503 +#: includes/admin/reporting/class.llms.admin.reporting.php:516 msgid "Previously %s" msgstr "" @@ -3457,7 +3449,7 @@ msgid "# of Registrations" msgstr "" #: includes/admin/settings/class.llms.settings.accounts.php:63 -#: includes/admin/views/setup-wizard/step-pages.php:31 +#: includes/class.llms.install.php:293 msgid "Student Dashboard" msgstr "" @@ -3466,7 +3458,7 @@ msgid "Dashboard Page" msgstr "" #: includes/admin/settings/class.llms.settings.accounts.php:68 -#: includes/admin/views/setup-wizard/step-pages.php:32 +#: includes/class.llms.install.php:294 msgid "Page where students can view and manage their current enrollments, earned certificates and achievements, account information, and purchase history." msgstr "" @@ -3707,7 +3699,7 @@ msgid "Accounts" msgstr "" #: includes/admin/settings/class.llms.settings.checkout.php:41 -#: includes/admin/views/setup-wizard/step-pages.php:27 +#: includes/class.llms.install.php:284 #: includes/schemas/llms-form-locations.php:21 msgid "Checkout" msgstr "" @@ -3881,9 +3873,9 @@ msgid "This page is where your visitors will find a list of all your available c msgstr "" #: includes/admin/settings/class.llms.settings.courses.php:100 -#: includes/admin/views/setup-wizard/step-pages.php:19 #: includes/class-llms-block-templates.php:638 -#: includes/class.llms.install.php:255 +#: includes/class.llms.install.php:265 +#: includes/class.llms.install.php:266 msgid "Course Catalog" msgstr "" @@ -4125,7 +4117,7 @@ msgid "Memberships Catalog" msgstr "" #: includes/admin/settings/class.llms.settings.memberships.php:105 -#: includes/admin/views/setup-wizard/step-pages.php:24 +#: includes/class.llms.install.php:276 msgid "This page is where your visitors will find a list of all your available memberships." msgstr "" @@ -4273,29 +4265,33 @@ msgstr "" msgid "Delete Legacy Options" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:51 +#: includes/admin/views/access-plans/access-plan.php:53 msgid "Unnamed Access Plan" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:52 +#: includes/admin/views/access-plans/access-plan.php:54 msgctxt "Product Access Plan ID" msgid "ID# %s" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:53 +#: includes/admin/views/access-plans/access-plan.php:55 msgid "Purchase Link" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:55 +#: includes/admin/views/access-plans/access-plan.php:57 #: includes/class.llms.post-types.php:1101 msgid "New Access Plan" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:59 +#: includes/admin/views/access-plans/access-plan.php:61 +msgid "This access plan requires attention for possible misconfigurations" +msgstr "" + +#: includes/admin/views/access-plans/access-plan.php:64 msgid "Errors were found during access plan validation" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:87 +#: includes/admin/views/access-plans/access-plan.php:92 #: includes/notifications/views/class.llms.notification.view.manual.payment.due.php:135 #: includes/notifications/views/class.llms.notification.view.payment.retry.php:139 #: includes/notifications/views/class.llms.notification.view.purchase.receipt.php:94 @@ -4304,67 +4300,67 @@ msgstr "" msgid "Plan Title" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:92 +#: includes/admin/views/access-plans/access-plan.php:97 msgid "Plan SKU" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:97 +#: includes/admin/views/access-plans/access-plan.php:102 msgid "Enroll Text" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:98 +#: includes/admin/views/access-plans/access-plan.php:103 msgid "Enroll, Join, Buy..." msgstr "" -#: includes/admin/views/access-plans/access-plan.php:111 +#: includes/admin/views/access-plans/access-plan.php:116 msgid "Is Free" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:113 +#: includes/admin/views/access-plans/access-plan.php:118 msgid "No payment required" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:136 +#: includes/admin/views/access-plans/access-plan.php:141 msgid "Price" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:141 +#: includes/admin/views/access-plans/access-plan.php:146 msgid "Frequency" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:143 +#: includes/admin/views/access-plans/access-plan.php:148 msgid "one-time payment" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:144 +#: includes/admin/views/access-plans/access-plan.php:149 msgid "every" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:145 +#: includes/admin/views/access-plans/access-plan.php:150 msgid "every 2nd" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:146 +#: includes/admin/views/access-plans/access-plan.php:151 msgid "every 3rd" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:147 +#: includes/admin/views/access-plans/access-plan.php:152 msgid "every 4th" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:148 +#: includes/admin/views/access-plans/access-plan.php:153 msgid "every 5th" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:149 +#: includes/admin/views/access-plans/access-plan.php:154 msgid "every 6th" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:158 +#: includes/admin/views/access-plans/access-plan.php:163 msgid "Plan Period" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:160 +#: includes/admin/views/access-plans/access-plan.php:165 #: includes/functions/llms-functions-locale.php:132 #: includes/llms.functions.core.php:333 msgid "year" @@ -4372,7 +4368,7 @@ msgid_plural "years" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:161 +#: includes/admin/views/access-plans/access-plan.php:166 #: includes/functions/llms-functions-locale.php:128 #: includes/llms.functions.core.php:334 msgid "month" @@ -4380,14 +4376,14 @@ msgid_plural "months" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:162 +#: includes/admin/views/access-plans/access-plan.php:167 #: includes/functions/llms-functions-locale.php:124 msgid "week" msgid_plural "weeks" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:163 +#: includes/admin/views/access-plans/access-plan.php:168 #: includes/functions/llms-functions-locale.php:120 #: includes/llms.functions.core.php:335 msgid "day" @@ -4395,156 +4391,156 @@ msgid_plural "days" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:168 +#: includes/admin/views/access-plans/access-plan.php:173 msgid "Plan Length" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:170 -#: includes/admin/views/access-plans/access-plan.php:180 -#: includes/admin/views/access-plans/access-plan.php:190 -#: includes/admin/views/access-plans/access-plan.php:200 +#: includes/admin/views/access-plans/access-plan.php:175 +#: includes/admin/views/access-plans/access-plan.php:185 +#: includes/admin/views/access-plans/access-plan.php:195 +#: includes/admin/views/access-plans/access-plan.php:205 msgid "for all time" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:172 +#: includes/admin/views/access-plans/access-plan.php:177 msgid "for %s year" msgid_plural "for %s years" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:182 +#: includes/admin/views/access-plans/access-plan.php:187 msgid "for %s month" msgid_plural "for %s months" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:192 +#: includes/admin/views/access-plans/access-plan.php:197 msgid "for %s week" msgid_plural "for %s weeks" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:202 +#: includes/admin/views/access-plans/access-plan.php:207 msgid "for %s day" msgid_plural "for %s days" msgstr[0] "" msgstr[1] "" -#: includes/admin/views/access-plans/access-plan.php:233 +#: includes/admin/views/access-plans/access-plan.php:238 #: includes/admin/views/metaboxes/view-order-submit.php:89 msgid "Access Expiration" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:235 +#: includes/admin/views/access-plans/access-plan.php:240 #: includes/models/model.llms.order.php:555 msgid "Lifetime Access" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:236 +#: includes/admin/views/access-plans/access-plan.php:241 msgid "Expires after" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:237 +#: includes/admin/views/access-plans/access-plan.php:242 msgid "Expires on" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:254 -#: includes/admin/views/access-plans/access-plan.php:328 +#: includes/admin/views/access-plans/access-plan.php:259 +#: includes/admin/views/access-plans/access-plan.php:333 msgid "year(s)" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:255 -#: includes/admin/views/access-plans/access-plan.php:329 +#: includes/admin/views/access-plans/access-plan.php:260 +#: includes/admin/views/access-plans/access-plan.php:334 msgid "month(s)" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:256 -#: includes/admin/views/access-plans/access-plan.php:330 +#: includes/admin/views/access-plans/access-plan.php:261 +#: includes/admin/views/access-plans/access-plan.php:335 msgid "week(s)" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:257 -#: includes/admin/views/access-plans/access-plan.php:331 +#: includes/admin/views/access-plans/access-plan.php:262 +#: includes/admin/views/access-plans/access-plan.php:336 msgid "day(s)" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:268 +#: includes/admin/views/access-plans/access-plan.php:273 msgid "Plan Availability" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:270 +#: includes/admin/views/access-plans/access-plan.php:275 msgid "Anyone" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:271 +#: includes/admin/views/access-plans/access-plan.php:276 msgid "Members only" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:280 +#: includes/admin/views/access-plans/access-plan.php:285 msgid "ID# %d" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:308 +#: includes/admin/views/access-plans/access-plan.php:313 msgid "Trial Offer" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:310 +#: includes/admin/views/access-plans/access-plan.php:315 msgid "No trial offer" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:311 +#: includes/admin/views/access-plans/access-plan.php:316 msgid "Enable trial" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:316 +#: includes/admin/views/access-plans/access-plan.php:321 msgid "Trial Price" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:321 +#: includes/admin/views/access-plans/access-plan.php:326 msgid "Trial Length" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:353 +#: includes/admin/views/access-plans/access-plan.php:358 msgid "Sale Pricing" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:355 +#: includes/admin/views/access-plans/access-plan.php:360 msgid "Not on sale" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:356 +#: includes/admin/views/access-plans/access-plan.php:361 msgid "On Sale" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:361 +#: includes/admin/views/access-plans/access-plan.php:366 msgid "Sale Price" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:366 +#: includes/admin/views/access-plans/access-plan.php:371 msgid "Sale Start Date" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:371 +#: includes/admin/views/access-plans/access-plan.php:376 msgid "Sale End Date" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:392 +#: includes/admin/views/access-plans/access-plan.php:397 msgid "Plan Description" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:438 +#: includes/admin/views/access-plans/access-plan.php:443 msgid "Override Membership Redirects" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:440 +#: includes/admin/views/access-plans/access-plan.php:445 msgid "Any redirection set up on the Membership Access Plans will be overridden by the following settings." msgstr "" -#: includes/admin/views/access-plans/access-plan.php:444 +#: includes/admin/views/access-plans/access-plan.php:449 msgid "Checkout redirect" msgstr "" -#: includes/admin/views/access-plans/access-plan.php:469 +#: includes/admin/views/access-plans/access-plan.php:474 msgid "Enter a URL" msgstr "" @@ -4912,7 +4908,7 @@ msgstr "" msgid "Build Your Course Outline with the LifterLMS Course Builder" msgstr "" -#: includes/admin/views/dashboard.php:27 +#: includes/admin/views/dashboard.php:28 msgid "Recent Activity: %1$1s to %2$2s" msgstr "" @@ -4935,98 +4931,98 @@ msgstr "" msgid "View More" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:16 +#: includes/admin/views/dashboard/quick-links.php:17 msgid "Build LMS Content" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:18 +#: includes/admin/views/dashboard/quick-links.php:19 msgid "Add a New Membership" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:19 +#: includes/admin/views/dashboard/quick-links.php:20 msgid "Create an Engagement" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:24 +#: includes/admin/views/dashboard/quick-links.php:25 msgid "Access Reports" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:26 +#: includes/admin/views/dashboard/quick-links.php:27 msgid "View Orders" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:27 +#: includes/admin/views/dashboard/quick-links.php:28 msgid "View Students" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:29 +#: includes/admin/views/dashboard/quick-links.php:30 msgid "View Sales Report" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:32 +#: includes/admin/views/dashboard/quick-links.php:33 msgid "Your Launch Checklist" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:64 -#: includes/admin/views/dashboard/quick-links.php:66 +#: includes/admin/views/dashboard/quick-links.php:65 +#: includes/admin/views/dashboard/quick-links.php:67 msgid "Create Access Plan" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:71 -#: includes/admin/views/dashboard/quick-links.php:73 +#: includes/admin/views/dashboard/quick-links.php:70 +#: includes/admin/views/dashboard/quick-links.php:72 msgid "Get 10 Enrollments" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:77 +#: includes/admin/views/dashboard/quick-links.php:91 msgid "Add Advanced Features" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:85 +#: includes/admin/views/dashboard/quick-links.php:99 msgid "Pricing" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:86 +#: includes/admin/views/dashboard/quick-links.php:100 msgid "Add-Ons" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:87 +#: includes/admin/views/dashboard/quick-links.php:101 msgid "Contact Sales" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:93 +#: includes/admin/views/dashboard/quick-links.php:107 msgid "Documentation" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:94 +#: includes/admin/views/dashboard/quick-links.php:108 msgid "WordPress.org Support" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:95 +#: includes/admin/views/dashboard/quick-links.php:109 msgid "Premium Support" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:99 +#: includes/admin/views/dashboard/quick-links.php:113 msgid "Learn" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:101 +#: includes/admin/views/dashboard/quick-links.php:115 msgid "Academy" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:102 +#: includes/admin/views/dashboard/quick-links.php:116 msgid "Events" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:103 +#: includes/admin/views/dashboard/quick-links.php:117 msgid "Developers" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:107 +#: includes/admin/views/dashboard/quick-links.php:121 #: includes/class.llms.question.types.php:145 msgid "Content" msgstr "" -#: includes/admin/views/dashboard/quick-links.php:111 +#: includes/admin/views/dashboard/quick-links.php:125 msgid "YouTube" msgstr "" @@ -5464,24 +5460,10 @@ msgstr "" msgid "It will only take a few minutes and it is completely optional. If you don't have the time now, come back later." msgstr "" -#: includes/admin/views/setup-wizard/step-pages.php:15 +#: includes/admin/views/setup-wizard/step-pages.php:16 msgid "LifterLMS has a few essential pages. The following will be created automatically if they don't already exist." msgstr "" -#: includes/admin/views/setup-wizard/step-pages.php:20 -msgid "This page is where your visitors will find a list of all your available courses." -msgstr "" - -#: includes/admin/views/setup-wizard/step-pages.php:23 -#: includes/class-llms-block-templates.php:639 -#: includes/class.llms.install.php:261 -msgid "Membership Catalog" -msgstr "" - -#: includes/admin/views/setup-wizard/step-pages.php:28 -msgid "This is the page where visitors will be directed in order to pay for courses and memberships." -msgstr "" - #: includes/admin/views/setup-wizard/step-pages.php:36 msgid "After setup, you can manage these pages from the admin dashboard on the %1$sPages screen%2$s and you can control which pages display on your menu(s) via %3$sAppearance > Menus%4$s." msgstr "" @@ -5527,6 +5509,12 @@ msgstr "" msgid "No theme is defined for this template." msgstr "" +#: includes/class-llms-block-templates.php:639 +#: includes/class.llms.install.php:274 +#: includes/class.llms.install.php:275 +msgid "Membership Catalog" +msgstr "" + #: includes/class-llms-block-templates.php:640 msgid "Single Certificate" msgstr "" @@ -5981,25 +5969,33 @@ msgid "The supplied generator is invalid." msgstr "" #: includes/class.llms.install.php:267 +msgid "This page is where your visitors will find a list of all your available courses." +msgstr "" + +#: includes/class.llms.install.php:283 msgid "Purchase" msgstr "" -#: includes/class.llms.install.php:348 +#: includes/class.llms.install.php:285 +msgid "This is the page where visitors will be directed in order to pay for courses and memberships." +msgstr "" + +#: includes/class.llms.install.php:392 msgctxt "course difficulty name" msgid "Beginner" msgstr "" -#: includes/class.llms.install.php:349 +#: includes/class.llms.install.php:393 msgctxt "course difficulty name" msgid "Intermediate" msgstr "" -#: includes/class.llms.install.php:350 +#: includes/class.llms.install.php:394 msgctxt "course difficulty name" msgid "Advanced" msgstr "" -#: includes/class.llms.install.php:640 +#: includes/class.llms.install.php:684 msgid "You are not allowed to perform the requested action." msgstr "" @@ -6489,31 +6485,31 @@ msgstr "" msgid "unassigned" msgstr "" -#: includes/class.llms.nav.menus.php:100 +#: includes/class.llms.nav.menus.php:101 msgid "Custom Link" msgstr "" -#: includes/class.llms.nav.menus.php:120 +#: includes/class.llms.nav.menus.php:121 msgctxt "customizer menu section title" msgid "LifterLMS" msgstr "" -#: includes/class.llms.nav.menus.php:214 #: includes/class.llms.nav.menus.php:215 +#: includes/class.llms.nav.menus.php:216 msgid "Sign In" msgstr "" -#: includes/class.llms.nav.menus.php:219 #: includes/class.llms.nav.menus.php:220 +#: includes/class.llms.nav.menus.php:221 #: includes/class.llms.student.dashboard.php:219 msgid "Sign Out" msgstr "" -#: includes/class.llms.nav.menus.php:324 +#: includes/class.llms.nav.menus.php:325 msgid "Select all" msgstr "" -#: includes/class.llms.nav.menus.php:327 +#: includes/class.llms.nav.menus.php:328 msgid "Add to menu" msgstr "" @@ -8880,13 +8876,13 @@ msgid "%s ago" msgstr "" #. Translators: %s = Left double arrow character. -#: includes/functions/llms.functions.templates.loop.php:190 +#: includes/functions/llms.functions.templates.loop.php:192 msgctxt "pagination link text" msgid "%s Previous" msgstr "" #. Translators: %s = Right double arrow character. -#: includes/functions/llms.functions.templates.loop.php:192 +#: includes/functions/llms.functions.templates.loop.php:194 msgctxt "pagination link text" msgid "Next %s" msgstr "" @@ -10338,19 +10334,19 @@ msgstr "" msgid "Awarded certificates sync scheduled for the template %1$s%2$s (#%3$d)%4$s." msgstr "" -#: includes/schemas/llms-block-templates.php:108 +#: includes/schemas/llms-block-templates.php:110 msgid "Presented to" msgstr "" -#: includes/schemas/llms-block-templates.php:126 +#: includes/schemas/llms-block-templates.php:128 msgid "for demonstration of excellence" msgstr "" -#: includes/schemas/llms-block-templates.php:166 +#: includes/schemas/llms-block-templates.php:168 msgid "DATE" msgstr "" -#: includes/schemas/llms-block-templates.php:195 +#: includes/schemas/llms-block-templates.php:197 msgid "SIGNED" msgstr "" @@ -12989,20 +12985,20 @@ msgstr "" #: languages/currency-symbols.php:95 #: languages/currency-symbols.php:96 #: languages/currency-symbols.php:119 -#: languages/currency-symbols.php:124 -#: languages/currency-symbols.php:134 -#: languages/currency-symbols.php:139 -#: languages/currency-symbols.php:142 -#: languages/currency-symbols.php:147 -#: languages/currency-symbols.php:167 -#: languages/currency-symbols.php:171 -#: languages/currency-symbols.php:180 -#: languages/currency-symbols.php:182 +#: languages/currency-symbols.php:125 +#: languages/currency-symbols.php:135 +#: languages/currency-symbols.php:140 +#: languages/currency-symbols.php:143 +#: languages/currency-symbols.php:148 +#: languages/currency-symbols.php:168 +#: languages/currency-symbols.php:172 +#: languages/currency-symbols.php:181 #: languages/currency-symbols.php:183 -#: languages/currency-symbols.php:187 +#: languages/currency-symbols.php:184 #: languages/currency-symbols.php:188 -#: languages/currency-symbols.php:195 -#: languages/currency-symbols.php:201 +#: languages/currency-symbols.php:189 +#: languages/currency-symbols.php:196 +#: languages/currency-symbols.php:202 msgid "$" msgstr "" @@ -13130,9 +13126,9 @@ msgstr "" #: languages/currency-symbols.php:93 #: languages/currency-symbols.php:103 #: languages/currency-symbols.php:108 -#: languages/currency-symbols.php:122 -#: languages/currency-symbols.php:168 -#: languages/currency-symbols.php:172 +#: languages/currency-symbols.php:123 +#: languages/currency-symbols.php:169 +#: languages/currency-symbols.php:173 msgid "£" msgstr "" @@ -13157,8 +13153,8 @@ msgid "Q" msgstr "" #: languages/currency-symbols.php:97 -#: languages/currency-symbols.php:125 -#: languages/currency-symbols.php:129 +#: languages/currency-symbols.php:126 +#: languages/currency-symbols.php:130 msgid "L" msgstr "" @@ -13191,14 +13187,14 @@ msgid "د.ع" msgstr "" #: languages/currency-symbols.php:106 -#: languages/currency-symbols.php:162 -#: languages/currency-symbols.php:198 +#: languages/currency-symbols.php:163 +#: languages/currency-symbols.php:199 msgid "﷼" msgstr "" #: languages/currency-symbols.php:107 -#: languages/currency-symbols.php:145 -#: languages/currency-symbols.php:166 +#: languages/currency-symbols.php:146 +#: languages/currency-symbols.php:167 msgid "kr" msgstr "" @@ -13215,8 +13211,7 @@ msgid "KSh" msgstr "" #: languages/currency-symbols.php:113 -#: languages/currency-symbols.php:120 -#: languages/currency-symbols.php:189 +#: languages/currency-symbols.php:190 msgid "лв" msgstr "" @@ -13238,218 +13233,222 @@ msgid "ك.د" msgstr "" #: languages/currency-symbols.php:121 +msgid "₸" +msgstr "" + +#: languages/currency-symbols.php:122 msgid "₭" msgstr "" -#: languages/currency-symbols.php:123 +#: languages/currency-symbols.php:124 msgid "Rs" msgstr "" -#: languages/currency-symbols.php:126 +#: languages/currency-symbols.php:127 msgid "LTC" msgstr "" -#: languages/currency-symbols.php:127 +#: languages/currency-symbols.php:128 msgid "د.ل" msgstr "" -#: languages/currency-symbols.php:128 +#: languages/currency-symbols.php:129 msgid "MAD" msgstr "" -#: languages/currency-symbols.php:130 +#: languages/currency-symbols.php:131 msgid "Ar" msgstr "" -#: languages/currency-symbols.php:131 +#: languages/currency-symbols.php:132 msgid "ден" msgstr "" -#: languages/currency-symbols.php:132 -#: languages/currency-symbols.php:151 +#: languages/currency-symbols.php:133 +#: languages/currency-symbols.php:152 msgid "K" msgstr "" -#: languages/currency-symbols.php:133 +#: languages/currency-symbols.php:134 msgid "₮" msgstr "" -#: languages/currency-symbols.php:135 +#: languages/currency-symbols.php:136 msgid "MRU" msgstr "" -#: languages/currency-symbols.php:136 -#: languages/currency-symbols.php:146 -#: languages/currency-symbols.php:153 +#: languages/currency-symbols.php:137 +#: languages/currency-symbols.php:147 +#: languages/currency-symbols.php:154 msgid "₨" msgstr "" -#: languages/currency-symbols.php:137 +#: languages/currency-symbols.php:138 msgid "Rf" msgstr "" -#: languages/currency-symbols.php:138 +#: languages/currency-symbols.php:139 msgid "MK" msgstr "" -#: languages/currency-symbols.php:140 +#: languages/currency-symbols.php:141 msgid "RM" msgstr "" -#: languages/currency-symbols.php:141 +#: languages/currency-symbols.php:142 msgid "MT" msgstr "" -#: languages/currency-symbols.php:143 +#: languages/currency-symbols.php:144 msgid "₦" msgstr "" -#: languages/currency-symbols.php:144 +#: languages/currency-symbols.php:145 msgid "C$" msgstr "" -#: languages/currency-symbols.php:148 +#: languages/currency-symbols.php:149 msgid ".ع.ر" msgstr "" -#: languages/currency-symbols.php:149 +#: languages/currency-symbols.php:150 msgid "B/." msgstr "" -#: languages/currency-symbols.php:150 +#: languages/currency-symbols.php:151 msgid "S/." msgstr "" -#: languages/currency-symbols.php:152 +#: languages/currency-symbols.php:153 msgid "₱" msgstr "" -#: languages/currency-symbols.php:154 +#: languages/currency-symbols.php:155 msgid "zł" msgstr "" -#: languages/currency-symbols.php:155 -#: languages/currency-symbols.php:160 +#: languages/currency-symbols.php:156 +#: languages/currency-symbols.php:161 msgid "₽" msgstr "" -#: languages/currency-symbols.php:156 +#: languages/currency-symbols.php:157 msgid "₲" msgstr "" -#: languages/currency-symbols.php:157 +#: languages/currency-symbols.php:158 msgid "ق.ر" msgstr "" -#: languages/currency-symbols.php:158 +#: languages/currency-symbols.php:159 msgid "lei" msgstr "" -#: languages/currency-symbols.php:159 +#: languages/currency-symbols.php:160 msgid "din" msgstr "" -#: languages/currency-symbols.php:161 +#: languages/currency-symbols.php:162 msgid "FRw" msgstr "" -#: languages/currency-symbols.php:163 +#: languages/currency-symbols.php:164 msgid "Si$" msgstr "" -#: languages/currency-symbols.php:164 +#: languages/currency-symbols.php:165 msgid "SRe" msgstr "" -#: languages/currency-symbols.php:165 +#: languages/currency-symbols.php:166 msgid ".س.ج" msgstr "" -#: languages/currency-symbols.php:169 +#: languages/currency-symbols.php:170 msgid "Le" msgstr "" -#: languages/currency-symbols.php:170 +#: languages/currency-symbols.php:171 msgid "Sh.so." msgstr "" -#: languages/currency-symbols.php:173 +#: languages/currency-symbols.php:174 msgid "Db" msgstr "" -#: languages/currency-symbols.php:174 +#: languages/currency-symbols.php:175 msgid "LS" msgstr "" -#: languages/currency-symbols.php:175 +#: languages/currency-symbols.php:176 msgid "E" msgstr "" -#: languages/currency-symbols.php:176 +#: languages/currency-symbols.php:177 msgid "฿" msgstr "" -#: languages/currency-symbols.php:177 +#: languages/currency-symbols.php:178 msgid "SM" msgstr "" -#: languages/currency-symbols.php:178 +#: languages/currency-symbols.php:179 msgid "T" msgstr "" -#: languages/currency-symbols.php:179 +#: languages/currency-symbols.php:180 msgid "ت.د" msgstr "" -#: languages/currency-symbols.php:181 +#: languages/currency-symbols.php:182 msgid "₺" msgstr "" -#: languages/currency-symbols.php:184 +#: languages/currency-symbols.php:185 msgid "TSh" msgstr "" -#: languages/currency-symbols.php:185 +#: languages/currency-symbols.php:186 msgid "₴" msgstr "" -#: languages/currency-symbols.php:186 +#: languages/currency-symbols.php:187 msgid "USh" msgstr "" -#: languages/currency-symbols.php:190 +#: languages/currency-symbols.php:191 msgid "Bs" msgstr "" -#: languages/currency-symbols.php:191 +#: languages/currency-symbols.php:192 msgid "₫" msgstr "" -#: languages/currency-symbols.php:192 +#: languages/currency-symbols.php:193 msgid "VT" msgstr "" -#: languages/currency-symbols.php:193 +#: languages/currency-symbols.php:194 msgid "SAT" msgstr "" -#: languages/currency-symbols.php:194 +#: languages/currency-symbols.php:195 msgid "FCFA" msgstr "" -#: languages/currency-symbols.php:196 +#: languages/currency-symbols.php:197 msgid "CFA" msgstr "" -#: languages/currency-symbols.php:197 +#: languages/currency-symbols.php:198 msgid "₣" msgstr "" -#: languages/currency-symbols.php:199 +#: languages/currency-symbols.php:200 msgid "R" msgstr "" -#: languages/currency-symbols.php:200 +#: languages/currency-symbols.php:201 msgid "ZK" msgstr "" @@ -35099,28 +35098,28 @@ msgstr "" msgid "Time Limit: %s" msgstr "" -#: templates/quiz/results-attempt-questions-list.php:26 +#: templates/quiz/results-attempt-questions-list.php:27 msgid "This question has been deleted" msgstr "" -#: templates/quiz/results-attempt-questions-list.php:28 -#: templates/quiz/results-attempt-questions-list.php:51 +#: templates/quiz/results-attempt-questions-list.php:29 +#: templates/quiz/results-attempt-questions-list.php:52 msgid "%1$d / %2$d points" msgstr "" -#: templates/quiz/results-attempt-questions-list.php:70 +#: templates/quiz/results-attempt-questions-list.php:71 msgid "Selected answer: " msgstr "" -#: templates/quiz/results-attempt-questions-list.php:79 +#: templates/quiz/results-attempt-questions-list.php:80 msgid "Correct answer: " msgstr "" -#: templates/quiz/results-attempt-questions-list.php:87 +#: templates/quiz/results-attempt-questions-list.php:88 msgid "Clarification: " msgstr "" -#: templates/quiz/results-attempt-questions-list.php:96 +#: templates/quiz/results-attempt-questions-list.php:97 msgid "Instructor remarks: " msgstr "" @@ -35313,7 +35312,7 @@ msgstr "" #: assets/js/llms-admin-certificate-editor.js:22 #: assets/js/llms-components.js:15 #: assets/js/llms-spinner.js:1 -#: assets/js/llms.js:2431 +#: assets/js/llms.js:2467 #: libraries/lifterlms-blocks/assets/js/llms-blocks.js:3 msgid "Loading…" msgstr "" diff --git a/lifterlms.php b/lifterlms.php index 24de71b3c0..4751c5934d 100644 --- a/lifterlms.php +++ b/lifterlms.php @@ -10,7 +10,7 @@ * Plugin Name: LifterLMS * Plugin URI: https://lifterlms.com/ * Description: Complete e-learning platform to sell online courses, protect lessons, offer memberships, and quiz students. - * Version: 7.2.1 + * Version: 7.3.0 * Author: LifterLMS * Author URI: https://lifterlms.com/ * Text Domain: lifterlms diff --git a/package-lock.json b/package-lock.json index 6cdef7d70f..e1cf543a7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "lifterlms", - "version": "7.2.1", + "version": "7.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lifterlms", - "version": "7.2.1", + "version": "7.3.0", "hasInstallScript": true, "license": "GPL-3.0", "dependencies": { diff --git a/package.json b/package.json index 6d07fe777c..7c47b990c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lifterlms", - "version": "7.2.1", + "version": "7.3.0", "description": "LifterLMS by codeBOX", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index b602114730..353631bdc1 100644 --- a/readme.txt +++ b/readme.txt @@ -1,13 +1,13 @@ === LifterLMS - WordPress LMS Plugin for eLearning === -Contributors: thomasplevy, chrisbadgett, d4z_c0nf, pondermatic, nrherron, lifterlms, codeboxllc +Contributors: chrisbadgett, strangerstudios, kimannwall, d4z_c0nf, blockify, actuallyakash, codeboxllc Donate link: https://lifterlms.com/ Tags: course, elearning, learning management system, online courses, quiz License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html Requires at least: 5.9 -Tested up to: 6.2 +Tested up to: 6.3 Requires PHP: 7.4 -Stable tag: 7.2.1 +Stable tag: 7.3.0 Complete e-learning platform to sell online courses, protect lessons, offer memberships, and quiz students. @@ -533,6 +533,44 @@ You can review our full security policy at [https://lifterlms.com/security-polic == Changelog == += v7.3.0 - 2023-08-08 = + +##### Updates and Enhancements + ++ When a notice is shown for an access plan on the course edit screen (e.g. When using the WooCommerce integration and no product has been associated to the access plan.) Also display a warning icon next to the access plan title. ++ Made sure only who can `view_others_lifterlms_reports` will be able to see the analytics widget content in the WordPress admin. ++ Better rounding of float values on some reporting screens. ++ Avoid creating a post revision when cloning a course/lesson. ++ When creating pages via `llms_create_pages()`: strip all tags from the page title and slash the page data prior to inserting the page in the db via `wp_insert_post()` to prevent slashes from being stripped from the page title. ++ Updated the WordPress tested version up to 6.3. ++ Improved compatibility with the Divi theme by fixing an issue with the quiz attempt result clarifications not being visible when the Divi option `Defer jQuery And jQuery Migrate` was enabled. [#2470](https://github.com/gocodebox/lifterlms/issues/2470) + +##### Bug Fixes + ++ Fix spacer block when creating new certificate templates in WP 6.3. ++ Fixed PHP Warning when no course/membership catalog page was set or if the selected page doesn't exist anymore. [#2496](https://github.com/gocodebox/lifterlms/issues/2496) ++ Don't include WordPress default sidebar.php template when using a block theme. [#2488](https://github.com/gocodebox/lifterlms/issues/2488) ++ Updated Kazakhstani Tenge's currency symbol. [#2475](https://github.com/gocodebox/lifterlms/issues/2475) ++ Make the dashboard widget visible only if the current user has LMS Manager capabilities. [#2500](https://github.com/gocodebox/lifterlms/issues/2500) ++ Fixed issue with LifterLMS Navigation Link block and block visibility settings. [#2474](https://github.com/gocodebox/lifterlms/issues/2474) ++ Use student dashboard as default value for navigation link block. [#2465](https://github.com/gocodebox/lifterlms/issues/2465) ++ Fixed typo in a function name that could potentially produce a fatal. Thanks [@kamalahmed](https://github.com/kamalahmed)! + +##### Developer Notes + ++ Added the parameter `$tab` (ID/slug of the tab) to the `lifterlms_reporting_tab_cap` filter hook. Thanks [@sapayth](https://github.com/sapayth)! [#2468](https://github.com/gocodebox/lifterlms/issues/2468) ++ Added new filter hook `llms_can_analytics_widget_be_processed` that will allow to filter wheteher or not an analytics widgegt can be processed/disoplayed. ++ Added new filter `llms_install_get_pages`. ++ Added new public static method `LLMS_Admin_Dashboard_Widget::get_dashboard_widget_data()`. ++ Added `llms_dashboard_checklist` and `llms_dashboard_widget_data` filters to adjust dashboard content. [#2491](https://github.com/gocodebox/lifterlms/issues/2491) + +##### Updated Templates + ++ [templates/admin/reporting/tabs/widgets.php](https://github.com/gocodebox/lifterlms/blob/7.3.0/templates/admin/reporting/tabs/widgets.php) ++ [templates/global/sidebar.php](https://github.com/gocodebox/lifterlms/blob/7.3.0/templates/global/sidebar.php) ++ [templates/quiz/results-attempt-questions-list.php](https://github.com/gocodebox/lifterlms/blob/7.3.0/templates/quiz/results-attempt-questions-list.php) + + = v7.2.1 - 2023-06-13 = ##### Updates and Enhancements @@ -770,16 +808,4 @@ You can review our full security policy at [https://lifterlms.com/security-polic + [templates/myaccount/view-order-actions.php](https://github.com/gocodebox/lifterlms/blob/7.0.0/templates/myaccount/view-order-actions.php) -= v6.11.0 - 2022-09-22 = - -##### Updates and Enhancements - -+ Since version 6.0.0, the Certificate Title Block provided the option to use four Google-hosted fonts. These fonts will now be served from the site's server in favor of serving them from the Google Fonts CDN. For more information about this change, please refer to https://make.wordpress.org/themes/2022/06/18/complying-with-gdpr-when-using-google-fonts/. If you wish to continue loading fonts from Google's CDN, add the following code to your functions.php file: `add_filter( 'llms_use_google_webfonts', '__return_true' );`. [#2189](https://github.com/gocodebox/lifterlms/issues/2189) -+ Upgraded included library, `@woocommerce/action-scheduler`, to version [3.5.2](https://github.com/woocommerce/action-scheduler/releases/tag/3.5.2). - -##### Bug Fixes - -+ Fixed a division by zero error encountered on quiz reporting screens for quizzes with 0 total available points. [#2270](https://github.com/gocodebox/lifterlms/issues/2270) - - [Read the full changelog](https://make.lifterlms.com/tag/lifterlms) diff --git a/templates/admin/reporting/tabs/widgets.php b/templates/admin/reporting/tabs/widgets.php index 27a270777f..d2ba975451 100644 --- a/templates/admin/reporting/tabs/widgets.php +++ b/templates/admin/reporting/tabs/widgets.php @@ -6,8 +6,8 @@ * * @since Unknown * @since 7.2.0 Add content tag param to widget options. - * @since [version] Escape output. - * @version [version] + * @since 7.3.0 Escape output. + * @version 7.3.0 * * @param array $widget_data Array of widget data to display. */ diff --git a/templates/global/sidebar.php b/templates/global/sidebar.php index cfdb9cb92a..951df75364 100644 --- a/templates/global/sidebar.php +++ b/templates/global/sidebar.php @@ -5,8 +5,8 @@ * @package LifterLMS/Templates * * @since Unknown - * @since [version] Don't include WordPress default sidebar.php template when using a block theme. - * @version [version] + * @since 7.3.0 Don't include WordPress default sidebar.php template when using a block theme. + * @version 7.3.0 */ defined( 'ABSPATH' ) || exit; diff --git a/templates/quiz/results-attempt-questions-list.php b/templates/quiz/results-attempt-questions-list.php index 2bdbd43c1c..25e21d685f 100644 --- a/templates/quiz/results-attempt-questions-list.php +++ b/templates/quiz/results-attempt-questions-list.php @@ -5,8 +5,8 @@ * @since 3.16.0 * @since 3.17.8 Unknown. * @since 5.3.0 Display removed questions too. - * @since [version] Script moved into the main llms.js. - * @version [version] + * @since 7.3.0 Script moved into the main llms.js. + * @version 7.3.0 * * @param LLMS_Quiz_Attempt $attempt LLMS_Quiz_Attempt instance. */