From 618b7574e5b496978a18ff7ad3a4e64a2aa2c98d Mon Sep 17 00:00:00 2001 From: Rocco Aliberti Date: Fri, 4 Aug 2023 16:05:22 +0200 Subject: [PATCH 1/9] 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 2/9] 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 3/9] 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 4/9] 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 5/9] 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":"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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-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":"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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-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":"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","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. */ From 8936a3f4947c0398cf0a8ef3280711605024ad0c Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Tue, 8 Aug 2023 21:50:32 +0800 Subject: [PATCH 6/9] Add inherit option to Course Outline block and increase max number of Courses shown in dropdown select --- .changelogs/course-outline-block-1.yml | 3 ++ .changelogs/course-outline-block.yml | 4 ++ .../class.llms.shortcode.course.outline.php | 30 ++++++++++--- packages/components/src/post-select/index.js | 45 +++++++++++-------- 4 files changed, 59 insertions(+), 23 deletions(-) create mode 100644 .changelogs/course-outline-block-1.yml create mode 100644 .changelogs/course-outline-block.yml diff --git a/.changelogs/course-outline-block-1.yml b/.changelogs/course-outline-block-1.yml new file mode 100644 index 0000000000..5eb8e5b5c6 --- /dev/null +++ b/.changelogs/course-outline-block-1.yml @@ -0,0 +1,3 @@ +significance: patch +type: changed +entry: Increase maximum number of Courses shown in drop down select to 100. diff --git a/.changelogs/course-outline-block.yml b/.changelogs/course-outline-block.yml new file mode 100644 index 0000000000..209d5188b0 --- /dev/null +++ b/.changelogs/course-outline-block.yml @@ -0,0 +1,4 @@ +significance: patch +type: fixed +entry: Add `inherit from current course` option for Course Outline block when + editing Single Course template. diff --git a/includes/shortcodes/class.llms.shortcode.course.outline.php b/includes/shortcodes/class.llms.shortcode.course.outline.php index 7884afbcc4..2982f703a8 100644 --- a/includes/shortcodes/class.llms.shortcode.course.outline.php +++ b/includes/shortcodes/class.llms.shortcode.course.outline.php @@ -7,7 +7,7 @@ * @package LifterLMS/Shortcodes/Classes * * @since 3.5.1 - * @version 3.19.2 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -84,13 +84,33 @@ protected function get_default_attributes() { * $atts & $content are both filtered before being passed to get_output() * output is filtered so the return of get_output() doesn't need its own filter * - * @return string - * @since 3.5.1 - * @version 3.19.2 + * @since 3.5.1 + * @since [version] Added fallback to render first course when none selected in Editor. + * + * @return string */ protected function get_output() { - $course = new LLMS_Course( $this->get_attribute( 'course_id' ) ); + $id = $this->get_attribute( 'course_id' ); + + if ( ! $id && is_singular( 'course' ) ) { + $id = get_the_ID(); + } + + // Show the first course when in Editor if none selected. + if ( ! $id && llms_is_editor_block_rendering() ) { + $courses = get_posts( array( + 'post_type' => 'course', + 'posts_per_page' => 1, + 'post_status' => 'publish', + ) ); + + if ( $courses ) { + $id = $courses[0]->ID; + } + } + + $course = new LLMS_Course( $id ); $student = llms_get_student(); $args = array( diff --git a/packages/components/src/post-select/index.js b/packages/components/src/post-select/index.js index a727aa08ab..d56d438943 100644 --- a/packages/components/src/post-select/index.js +++ b/packages/components/src/post-select/index.js @@ -8,9 +8,9 @@ export const llmsPostTypes = [ 'llms_quiz' ]; -export const getPostTypeName = ( slug, format = 'name' ) => { +export const getPostTypeName = ( slug = 'course', format = 'name' ) => { const name = slug?.replace( 'llms_', '' ); - const title = name.charAt( 0 ).toUpperCase() + name.slice( 1 ); + const title = name?.charAt( 0 )?.toUpperCase() + name?.slice( 1 ); return format === 'name' ? name : title; }; @@ -22,39 +22,39 @@ export const useLlmsPostType = () => { }; export const usePostOptions = ( postType = 'course' ) => { + const queryArgs = { + per_page: 100, + status: 'publish', + }; + const { posts, currentPostType } = useSelect( ( select ) => { return { - posts: select( 'core' ).getEntityRecords( 'postType', postType ), + posts: select( 'core' ).getEntityRecords( 'postType', postType, queryArgs ), currentPostType: select( 'core/editor' )?.getCurrentPostType(), }; }, [] ); - const postTypeName = getPostTypeName( postType ); - const options = []; - if ( ! llmsPostTypes.includes( currentPostType ) ) { + const isSingleCourseTemplate = useSelect( ( select ) => { + return select( 'core/edit-site' )?.getEditedPostId( 'template' )?.includes( 'single-course' ); + } ); + + const postTypeName = getPostTypeName( postType ); + + if ( ! llmsPostTypes.includes( currentPostType ) && ! isSingleCourseTemplate ) { options.push( { - label: __( 'Select course', 'lifterlms' ), + label: __( 'Select ', 'lifterlms' ) + postTypeName, value: 0, } ); } - if ( posts?.length ) { - posts.forEach( ( post ) => { - options.push( { - label: post.title.rendered + ' (ID: ' + post.id + ')', - value: post.id, - } ); - } ); - } - - if ( llmsPostTypes.includes( currentPostType ) ) { + if ( llmsPostTypes.includes( currentPostType ) || isSingleCourseTemplate ) { options.unshift( { label: sprintf( // Translators: %s = Post type name. __( 'Inherit from current %s', 'lifterlms' ), - getPostTypeName( currentPostType ) + postTypeName ), value: 0, } ); @@ -67,6 +67,15 @@ export const usePostOptions = ( postType = 'course' ) => { } ); } + if ( posts?.length ) { + posts.forEach( ( post ) => { + options.push( { + label: post.title.rendered + ' (ID: ' + post.id + ')', + value: post.id, + } ); + } ); + } + return options; }; From 837f1fc88a22f1b597362208c00a3cde0ce13a61 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Tue, 8 Aug 2023 21:54:09 +0800 Subject: [PATCH 7/9] Coding standards indentation --- .../class.llms.shortcode.course.outline.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/includes/shortcodes/class.llms.shortcode.course.outline.php b/includes/shortcodes/class.llms.shortcode.course.outline.php index 2982f703a8..d380a64f5d 100644 --- a/includes/shortcodes/class.llms.shortcode.course.outline.php +++ b/includes/shortcodes/class.llms.shortcode.course.outline.php @@ -99,11 +99,13 @@ protected function get_output() { // Show the first course when in Editor if none selected. if ( ! $id && llms_is_editor_block_rendering() ) { - $courses = get_posts( array( - 'post_type' => 'course', - 'posts_per_page' => 1, - 'post_status' => 'publish', - ) ); + $courses = get_posts( + array( + 'post_type' => 'course', + 'posts_per_page' => 1, + 'post_status' => 'publish', + ) + ); if ( $courses ) { $id = $courses[0]->ID; From 158dc4bed6be554c0ddf7c811a278d9a512ba8ac Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Mon, 14 Aug 2023 12:49:55 +0800 Subject: [PATCH 8/9] Add fallback course for editor single template block render preview. --- .changelogs/course-outline-block-2.yml | 3 ++ ...abstract.llms.shortcode.course.element.php | 38 +++++++++++++------ .../class.llms.shortcode.course.outline.php | 23 +++++------ .../class.llms.shortcodes.blocks.php | 23 ++++++++++- 4 files changed, 61 insertions(+), 26 deletions(-) create mode 100644 .changelogs/course-outline-block-2.yml diff --git a/.changelogs/course-outline-block-2.yml b/.changelogs/course-outline-block-2.yml new file mode 100644 index 0000000000..43d62fa7cf --- /dev/null +++ b/.changelogs/course-outline-block-2.yml @@ -0,0 +1,3 @@ +significance: patch +type: fixed +entry: Add fallback course for editor single template block render preview. diff --git a/includes/abstracts/abstract.llms.shortcode.course.element.php b/includes/abstracts/abstract.llms.shortcode.course.element.php index 65793e75cf..98b42b0e8a 100644 --- a/includes/abstracts/abstract.llms.shortcode.course.element.php +++ b/includes/abstracts/abstract.llms.shortcode.course.element.php @@ -5,7 +5,7 @@ * @package LifterLMS/Abstracts/Classes * * @since 3.6.0 - * @version 3.6.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -46,28 +46,40 @@ protected function get_default_attributes() { * $atts & $content are both filtered before being passed to get_output() * output is filtered so the return of get_output() doesn't need its own filter * - * @return string - * @since 3.6.0 - * @version 3.6.0 + * @since 3.6.0 + * @version [version] Add fallback for editor block rendering. + * + * @return string */ protected function get_output() { // Get a reference to the current page where the shortcode is displayed. global $post; - $current_post = $post; - $course = get_post( $this->get_attribute( 'course_id' ) ); + $current_id = $post->ID ?? null; + + $id = $this->get_attribute( 'course_id' ); + + if ( ! $id ) { + $id = $current_id; + } + + if ( ! $id && llms_is_editor_block_rendering() ) { + $id = LLMS_Shortcodes_Blocks::get_placeholder_course_id(); + } + + $course = get_post( $id ); // We don't have a post object to proceed with. if ( ! $course ) { return ''; } - if ( 'course' !== $course->post_type ) { + if ( in_array( $course->post_type, array( 'lesson', 'llms_quiz' ) ) ) { // Get the parent. $parent = llms_get_post_parent_course( $course ); - // Post type doesn't have a parent so we can't display a syllabus. + // Post type doesn't have a parent, so we can't display a syllabus. if ( ! $parent ) { return ''; } @@ -77,18 +89,22 @@ protected function get_output() { } + if ( ! $current_id && llms_is_editor_block_rendering() ) { + $current_id = LLMS_Shortcodes_Blocks::get_placeholder_course_id(); + } + ob_start(); // Hack the global so our syllabus template works. - if ( $course->ID != $current_post->ID ) { + if ( $course->ID !== $current_id ) { $post = $course; } $this->template_function(); // Restore the global. - if ( $course->ID != $current_post->ID ) { - $post = $current_post; + if ( $course->ID !== $current_id ) { + $post = get_post( $current_id ); } return ob_get_clean(); diff --git a/includes/shortcodes/class.llms.shortcode.course.outline.php b/includes/shortcodes/class.llms.shortcode.course.outline.php index d380a64f5d..c43c2da585 100644 --- a/includes/shortcodes/class.llms.shortcode.course.outline.php +++ b/includes/shortcodes/class.llms.shortcode.course.outline.php @@ -85,31 +85,26 @@ protected function get_default_attributes() { * output is filtered so the return of get_output() doesn't need its own filter * * @since 3.5.1 - * @since [version] Added fallback to render first course when none selected in Editor. + * @version [version] Add fallback for editor block rendering. * * @return string */ protected function get_output() { + // Get a reference to the current page where the shortcode is displayed. + global $post; + + $current_id = $post->ID ?? null; + $id = $this->get_attribute( 'course_id' ); - if ( ! $id && is_singular( 'course' ) ) { - $id = get_the_ID(); + if ( ! $id ) { + $id = $current_id; } // Show the first course when in Editor if none selected. if ( ! $id && llms_is_editor_block_rendering() ) { - $courses = get_posts( - array( - 'post_type' => 'course', - 'posts_per_page' => 1, - 'post_status' => 'publish', - ) - ); - - if ( $courses ) { - $id = $courses[0]->ID; - } + $id = LLMS_Shortcodes_Blocks::get_placeholder_course_id(); } $course = new LLMS_Course( $id ); diff --git a/includes/shortcodes/class.llms.shortcodes.blocks.php b/includes/shortcodes/class.llms.shortcodes.blocks.php index a5b25d463e..885131db61 100644 --- a/includes/shortcodes/class.llms.shortcodes.blocks.php +++ b/includes/shortcodes/class.llms.shortcodes.blocks.php @@ -5,7 +5,7 @@ * @package LifterLMS/Classes/Shortcodes * * @since 7.2.0 - * @version 7.2.0 + * @version [version] */ defined( 'ABSPATH' ) || exit; @@ -258,6 +258,27 @@ public function render_block( array $attributes, string $content, WP_Block $bloc trim( $html ) ); } + + /** + * Returns ID of first published course. + * + * @since [version] + * + * @return int + */ + public static function get_placeholder_course_id(): int { + + $courses = get_posts( + array( + 'post_type' => 'course', + 'posts_per_page' => 1, + 'post_status' => 'publish', + ) + ); + + return $courses[0]->ID ?? 0; + + } } return LLMS_Shortcodes_Blocks::instance(); From 326df902eaa88ca848ed7cc2adb6ec1de3719bd9 Mon Sep 17 00:00:00 2001 From: SEO Themes Date: Mon, 14 Aug 2023 12:51:14 +0800 Subject: [PATCH 9/9] Update since tag --- includes/shortcodes/class.llms.shortcode.course.outline.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/shortcodes/class.llms.shortcode.course.outline.php b/includes/shortcodes/class.llms.shortcode.course.outline.php index c43c2da585..70d362c3f2 100644 --- a/includes/shortcodes/class.llms.shortcode.course.outline.php +++ b/includes/shortcodes/class.llms.shortcode.course.outline.php @@ -85,7 +85,7 @@ protected function get_default_attributes() { * output is filtered so the return of get_output() doesn't need its own filter * * @since 3.5.1 - * @version [version] Add fallback for editor block rendering. + * @since [version] Add fallback for editor block rendering. * * @return string */