From a8457e278d2929851a79ba70369c189fe2b8aa64 Mon Sep 17 00:00:00 2001
From: Luke Carl Hartman
Date: Wed, 18 Oct 2023 12:19:39 -0700
Subject: [PATCH 1/3] UPDATE: from live prod site of working quiz
---
database/class-enp_quiz_db.php | 146 +++++++--------
database/class-enp_quiz_save_quiz.php | 4 +-
includes/class-enp_embed-domain.php | 6 +-
includes/class-enp_quiz-activator.php | 0
includes/class-enp_quiz-deactivator.php | 0
includes/class-enp_quiz-question.php | 3 +-
includes/class-enp_quiz.php | 0
includes/css-tidy/class.csstidy.php | 0
includes/css-tidy/class.csstidy_optimise.php | 0
includes/css-tidy/class.csstidy_print.php | 0
includes/css-tidy/data.inc.php | 0
includes/index.php | 0
public/quiz-create/class-enp_quiz-create.php | 0
public/quiz-create/css/chartist.min.css | 0
public/quiz-create/css/enp_quiz-create.css | 0
.../quiz-create/css/enp_quiz-create.min.css | 2 +-
.../css/enp_quiz-create.min.css.map | 2 +-
public/quiz-create/css/sass/_dashboard.scss | 5 -
.../quiz-create/css/sass/_quiz-publish.scss | 30 +--
public/quiz-create/css/sass/_variables.scss | 35 ++--
.../includes/class-enp_quiz-quiz_create.php | 2 +-
public/quiz-create/index.php | 0
public/quiz-create/js/dist/iris.min.js | 0
public/quiz-create/js/dist/quiz-create.js | 6 +-
public/quiz-create/js/dist/quiz-create.min.js | 2 +-
.../quiz-create/js/dist/svg-class-shim.min.js | 0
.../js/quiz-create/quiz-create--utilities.js | 17 +-
public/quiz-create/js/quiz-publish.js | 38 +---
public/quiz-create/js/svg-class-shim.js | 0
.../quiz-create/js/utilities/chartist.min.js | 0
public/quiz-create/svg/symbol-defs.svg | 0
public/quiz-create/templates/dashboard.php | 176 ++++++++----------
.../partials/quiz-create-question.php | 1 +
.../templates/partials/quiz-feedback.php | 7 -
.../templates/partials/quiz-share.php | 38 ++--
public/quiz-create/templates/quiz-publish.php | 2 +
public/quiz-take/class-enp_quiz-take.php | 3 +-
public/quiz-take/css/enp_quiz-take.css | 0
public/quiz-take/css/enp_quiz-take.min.css | 2 +-
.../quiz-take/css/enp_quiz-take.min.css.map | 2 +-
public/quiz-take/css/sass/_quiz.scss | 1 -
.../includes/class-enp_quiz-take_question.php | 9 +-
public/quiz-take/index.php | 0
public/quiz-take/js/dist/quiz-take.js | 21 ++-
.../quiz-take/js/quiz-take/quiz-take--init.js | 0
.../quiz-take/js/utilities/html5shiv.min.js | 0
public/quiz-take/svg/symbol-defs.svg | 0
.../partials/question-explanation.php | 2 +-
48 files changed, 231 insertions(+), 331 deletions(-)
mode change 100755 => 100644 includes/class-enp_quiz-activator.php
mode change 100755 => 100644 includes/class-enp_quiz-deactivator.php
mode change 100755 => 100644 includes/class-enp_quiz.php
mode change 100755 => 100644 includes/css-tidy/class.csstidy.php
mode change 100755 => 100644 includes/css-tidy/class.csstidy_optimise.php
mode change 100755 => 100644 includes/css-tidy/class.csstidy_print.php
mode change 100755 => 100644 includes/css-tidy/data.inc.php
mode change 100755 => 100644 includes/index.php
mode change 100755 => 100644 public/quiz-create/class-enp_quiz-create.php
mode change 100755 => 100644 public/quiz-create/css/chartist.min.css
mode change 100755 => 100644 public/quiz-create/css/enp_quiz-create.css
mode change 100755 => 100644 public/quiz-create/index.php
mode change 100755 => 100644 public/quiz-create/js/dist/iris.min.js
mode change 100755 => 100644 public/quiz-create/js/dist/svg-class-shim.min.js
mode change 100755 => 100644 public/quiz-create/js/svg-class-shim.js
mode change 100755 => 100644 public/quiz-create/js/utilities/chartist.min.js
mode change 100755 => 100644 public/quiz-create/svg/symbol-defs.svg
delete mode 100644 public/quiz-create/templates/partials/quiz-feedback.php
mode change 100755 => 100644 public/quiz-take/class-enp_quiz-take.php
mode change 100755 => 100644 public/quiz-take/css/enp_quiz-take.css
mode change 100755 => 100644 public/quiz-take/index.php
mode change 100755 => 100644 public/quiz-take/js/quiz-take/quiz-take--init.js
mode change 100755 => 100644 public/quiz-take/js/utilities/html5shiv.min.js
mode change 100755 => 100644 public/quiz-take/svg/symbol-defs.svg
diff --git a/database/class-enp_quiz_db.php b/database/class-enp_quiz_db.php
index dbdb07a2..7487fd17 100644
--- a/database/class-enp_quiz_db.php
+++ b/database/class-enp_quiz_db.php
@@ -1,23 +1,20 @@
quiz_table = $enp_quiz_table_quiz;
$this->quiz_option_table = $enp_quiz_table_quiz_option;
@@ -41,35 +38,28 @@ public function __construct()
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
// create the new connection
- parent::__construct(
- 'mysql:host=' . $enp_db_host . ';dbname=' . $enp_db_name,
- // for windows users possible fix for PDO error, change 'mysql:host=' line above to:
- // 'sqlsrv:Server=' . $enp_db_host . ';Database=' . $enp_db_name,
- $enp_db_user,
- $enp_db_password,
- $options
- );
+ parent::__construct('mysql:host='.$enp_db_host.';dbname='.$enp_db_name,
+ $enp_db_user,
+ $enp_db_password,
+ $options);
} catch (Exception $e) {
$this->errors = $e->getMessage();
}
}
- public function runQuery($sql, $params = null)
- {
+ public function runQuery($sql, $params = null, ...$fetchModeArgs) {
$stmt = $this->prepare($sql);
$stmt->execute($params);
return $stmt;
}
- public function fetchOne($sql, $params = [])
- {
- $stmt = $this->runQuery($sql, $params);
+ public function fetchOne($sql, $params = []) {
+ $stmt = $this->query($sql, $params);
return $stmt->fetch(PDO::FETCH_ASSOC);
}
- public function fetchAll($sql, $params = [])
- {
- $stmt = $this->runQuery($sql, $params);
+ public function fetchAll($sql, $params = []) {
+ $stmt = $this->query($sql, $params);
return $stmt->fetchAll(PDO::FETCH_ASSOC);
}
@@ -77,16 +67,15 @@ public function fetchAll($sql, $params = [])
* Get Quizzes
*
*/
- public function getQuizzes($where = [])
- {
+ public function getQuizzes($where = []) {
$params = $this->buildParams($where);
- $sql = "SELECT * from " . $this->quiz_table . " WHERE quiz_is_deleted = 0";
-
- if ($where) {
+ $sql = "SELECT * from ".$this->quiz_table." WHERE quiz_is_deleted = 0";
+
+ if($where) {
$sql .= $this->buildWhere($params, true);
}
-
+
return $this->fetchAll($sql, $params);
}
@@ -94,33 +83,31 @@ public function getQuizzes($where = [])
* Get Domains
*
*/
- public function getDomains($where = [])
- {
+ public function getDomains($where = []) {
$params = $this->buildParams($where);
- $sql = "SELECT DISTINCT(SUBSTRING_INDEX((SUBSTRING_INDEX((SUBSTRING_INDEX(embed_site_url, '://', -1)), '/', 1)), '.', -2)) as domain from " . $this->embed_site_table;
-
- if ($where) {
+ $sql = "SELECT DISTINCT(SUBSTRING_INDEX((SUBSTRING_INDEX((SUBSTRING_INDEX(embed_site_url, '://', -1)), '/', 1)), '.', -2)) as domain from ".$this->embed_site_table;
+
+ if($where) {
$sql .= $this->buildWhere($params, true);
}
-
+
return $this->fetchAll($sql, $params);
}
-
+
/*
* Get Sites
*
*/
- public function getSites($where = [])
- {
+ public function getSites($where = []) {
$params = $this->buildParams($where);
- $sql = "SELECT * from " . $this->embed_site_table;
-
- if ($where) {
+ $sql = "SELECT * from ".$this->embed_site_table;
+
+ if($where) {
$sql .= $this->buildWhere($params, true);
}
-
+
return $this->fetchAll($sql, $params);
}
@@ -128,67 +115,61 @@ public function getSites($where = [])
* Get Embeds
*
*/
- public function getEmbeds($where = [])
- {
+ public function getEmbeds($where = []) {
$params = $this->buildParams($where);
- $sql = "SELECT * from " . $this->embed_quiz_table;
-
- if ($where) {
+ $sql = "SELECT * from ".$this->embed_quiz_table;
+
+ if($where) {
$sql .= $this->buildWhere($params, true);
}
-
+
return $this->fetchAll($sql, $params);
}
// TOTALS
- public function getResponsesCorrectTotal()
- {
- $sql = "SELECT COUNT(*) from " . $this->response_question_table . " WHERE response_correct = 1";
+ public function getResponsesCorrectTotal() {
+ $sql = "SELECT COUNT(*) from ".$this->response_question_table." WHERE response_correct = 1";
return (int) $this->fetchOne($sql)['COUNT(*)'];
}
- public function getResponsesIncorrectTotal()
- {
- $sql = "SELECT COUNT(*) from " . $this->response_question_table . " WHERE response_correct = 0";
+ public function getResponsesIncorrectTotal() {
+ $sql = "SELECT COUNT(*) from ".$this->response_question_table." WHERE response_correct = 0";
return (int) $this->fetchOne($sql)['COUNT(*)'];
}
- public function getMCQuestionsTotal()
- {
- $sql = "SELECT COUNT(*) from " . $this->question_table . " WHERE question_type = 'mc'";
+ public function getMCQuestionsTotal() {
+ $sql = "SELECT COUNT(*) from ".$this->question_table." WHERE question_type = 'mc'";
return (int) $this->fetchOne($sql)['COUNT(*)'];
}
- public function getSliderQuestionsTotal()
- {
- $sql = "SELECT COUNT(*) from " . $this->question_table . " WHERE question_type = 'slider'";
+ public function getSliderQuestionsTotal() {
+ $sql = "SELECT COUNT(*) from ".$this->question_table." WHERE question_type = 'slider'";
return (int) $this->fetchOne($sql)['COUNT(*)'];
}
- public function getUniqueUsersTotal()
- {
+ public function getUniqueUsersTotal() {
$sql = "SELECT COUNT(DISTINCT user_id) as users
- FROM " . $this->response_quiz_table;
+ FROM ".$this->response_quiz_table;
return (int) $this->fetchOne($sql)['users'];
+
}
- public function buildWhere($params, $where = true)
- {
+ public function buildWhere($params, $where = true) {
$sql = '';
- if ($where === true) {
+ if($where === true) {
$sql = ' WHERE ';
}
- if (!empty($params)) {
+ if(!empty($params)) {
$i = 1;
- foreach ($params as $key => $val) {
- if (is_array($val)) {
+ foreach($params as $key => $val) {
+ if(is_array($val)) {
// for things like 'date > :date'
- $sql .= $val['key'] . ' ' . $val['operator'] . ' ' . $val['val'];
+ $sql .= $val['key'].' '.$val['operator'].' '.$val['val'];
} else {
- $sql .= $key . ' = ' . $val;
+ $sql .= $key.' = '.$val;
}
- if ($i !== count($params)) {
+ if($i !== count($params)) {
// not the last one, so add an AND statement
$where .= " AND ";
$i++;
@@ -204,11 +185,10 @@ public function buildWhere($params, $where = true)
* @param $params ARRAY
* @return ARRAY
*/
- public function buildParams($params)
- {
+ public function buildParams($params) {
$bound = [];
- foreach ($params as $key => $val) {
+ foreach($params as $key => $val) {
$bound[$key] = $val;
}
diff --git a/database/class-enp_quiz_save_quiz.php b/database/class-enp_quiz_save_quiz.php
index 50e2ff5b..0e212bf2 100644
--- a/database/class-enp_quiz_save_quiz.php
+++ b/database/class-enp_quiz_save_quiz.php
@@ -387,7 +387,9 @@ protected function sanitize_array($array) {
if (!is_array($value) && !is_object($value)) {
// except for question explanation, we want to keep the HTML
if( $key === 'question_explanation' ) {
- $sanitized_array[$key] = wp_kses($value, 'post');
+ // var_dump($sanitized_array[$value]);
+ // $sanitized_array[$key] = wp_kses($value, 'post'); // older
+ $sanitized_array[$key] = wp_kses_post($value); // new
} else {
$sanitized_array[$key] = sanitize_text_field($value);
}
diff --git a/includes/class-enp_embed-domain.php b/includes/class-enp_embed-domain.php
index 83832e56..28e438f6 100644
--- a/includes/class-enp_embed-domain.php
+++ b/includes/class-enp_embed-domain.php
@@ -92,11 +92,7 @@ protected function set_embed_domain_object_values($embed_domain_rows) {
foreach($sites as $site) {
$site_ids[] = $site->get_embed_site_id();
- $site_quiz_ids = $site->get_embed_site_quiz_ids();
-
- foreach($site_quiz_ids as $quiz_id) {
- $quiz_ids[] = $quiz_id;
- }
+ $quiz_ids[] = $site->get_embed_site_quiz_ids();
}
diff --git a/includes/class-enp_quiz-activator.php b/includes/class-enp_quiz-activator.php
old mode 100755
new mode 100644
diff --git a/includes/class-enp_quiz-deactivator.php b/includes/class-enp_quiz-deactivator.php
old mode 100755
new mode 100644
diff --git a/includes/class-enp_quiz-question.php b/includes/class-enp_quiz-question.php
index 73abaed2..67dd8eb3 100644
--- a/includes/class-enp_quiz-question.php
+++ b/includes/class-enp_quiz-question.php
@@ -711,9 +711,8 @@ public function get_take_question_array() {
public function get_take_question_json() {
$question = $this->get_take_question_array();
- // Return converted json: for possible achor links in question explanation
+ // return json_encode( $question );
return json_encode( $question, JSON_HEX_QUOT | JSON_HEX_TAG );
- // return json_encode( $question ); // BEFORE - Return converted json
}
/**
diff --git a/includes/class-enp_quiz.php b/includes/class-enp_quiz.php
old mode 100755
new mode 100644
diff --git a/includes/css-tidy/class.csstidy.php b/includes/css-tidy/class.csstidy.php
old mode 100755
new mode 100644
diff --git a/includes/css-tidy/class.csstidy_optimise.php b/includes/css-tidy/class.csstidy_optimise.php
old mode 100755
new mode 100644
diff --git a/includes/css-tidy/class.csstidy_print.php b/includes/css-tidy/class.csstidy_print.php
old mode 100755
new mode 100644
diff --git a/includes/css-tidy/data.inc.php b/includes/css-tidy/data.inc.php
old mode 100755
new mode 100644
diff --git a/includes/index.php b/includes/index.php
old mode 100755
new mode 100644
diff --git a/public/quiz-create/class-enp_quiz-create.php b/public/quiz-create/class-enp_quiz-create.php
old mode 100755
new mode 100644
diff --git a/public/quiz-create/css/chartist.min.css b/public/quiz-create/css/chartist.min.css
old mode 100755
new mode 100644
diff --git a/public/quiz-create/css/enp_quiz-create.css b/public/quiz-create/css/enp_quiz-create.css
old mode 100755
new mode 100644
diff --git a/public/quiz-create/css/enp_quiz-create.min.css b/public/quiz-create/css/enp_quiz-create.min.css
index 14826d98..f0f2afa3 100644
--- a/public/quiz-create/css/enp_quiz-create.min.css
+++ b/public/quiz-create/css/enp_quiz-create.min.css
@@ -1,2 +1,2 @@
-html{font-size:16px!important}html #enp-quiz{box-sizing:border-box}body #enp-quiz{background:#fff;overflow:hidden}#enp-quiz *,#enp-quiz :after,#enp-quiz :before{box-sizing:inherit}#enp-quiz ol,#enp-quiz ul{margin:0 0 1.6rem 1.25rem;padding:0}#enp-quiz textarea{margin-bottom:1rem}#enp-quiz button,#enp-quiz button:active,#enp-quiz button:focus,#enp-quiz button:hover,#enp-quiz iframe,#enp-quiz input[type=button],#enp-quiz input[type=button]:active,#enp-quiz input[type=button]:focus,#enp-quiz input[type=button]:hover,#enp-quiz input[type=reset],#enp-quiz input[type=reset]:active,#enp-quiz input[type=reset]:focus,#enp-quiz input[type=reset]:hover,#enp-quiz input[type=submit],#enp-quiz input[type=submit]:active,#enp-quiz input[type=submit]:focus,#enp-quiz input[type=submit]:hover{border:none}#enp-quiz .enp-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-screen-reader-text:active,#enp-quiz .enp-screen-reader-text:focus,#enp-quiz .enp-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#enp-quiz .enp-accordion-header{background:#fff;width:100%;box-shadow:inset 1px 1px 0 #ccc,inset -1px -1px 0 #ccc;color:#1d1c25;font-family:Arial,monospace,helvetica,arial,sans-serif;font-size:.9rem;font-weight:400;line-height:1.5;text-transform:none;letter-spacing:0;text-align:left;border:none;border-radius:3px;min-height:3.065rem;padding:1rem 2rem 1rem 1rem;margin:1.6rem 0 0;position:relative;z-index:9;cursor:pointer;transition:all .2s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-accordion-header:first-of-type{margin-top:0}#enp-quiz .enp-accordion-header .enp-accordion-header__icon{position:absolute;fill:#e8e4ed;right:.75rem;bottom:.75rem;transition:all .35s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-accordion-header--open .enp-accordion-header__icon{transform:rotateX(180deg)}#enp-quiz .enp-quiz-settings__form .enp-accordion-header{position:relative;overflow-y:hidden}#enp-quiz .enp-accordion-content{background:#fff;width:100%;box-shadow:inset 1px -1px 0 #ccc,inset -1px -1px 0 #ccc;display:block;position:relative;height:auto;overflow:visible;margin-bottom:1.6rem}#enp-quiz .enp-accordion-content--closed{margin-top:0;padding-top:0;animation:d .25s cubic-bezier(0,0,.3,1) forwards;display:none}#enp-quiz .enp-accordion-content--open{padding-top:1.6rem;margin-bottom:2rem;animation:b .45s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-quiz-message{max-width:80vw;margin:0 auto;background:#fff;border:1px solid #eee;border-bottom:1px solid #ccc;padding:1rem;margin-bottom:1.6rem;position:fixed;bottom:0;left:0}#enp-quiz .enp-quiz-message__title{font-size:1rem;text-transform:uppercase}#enp-quiz .enp-message__list{list-style:none;margin-left:0;font-size:1.1rem;margin-bottom:0}#enp-quiz .enp-quiz-message--error{border-left:6px solid #bf5700;color:#bf5700}#enp-quiz .enp-quiz-message__title--error{color:#964400}#enp-quiz .enp-quiz-message--success{border-left:6px solid #60aaad;color:#4e9497}#enp-quiz .enp-quiz-message__title--success{color:#4e9497}#enp-quiz .enp-quiz-message--note{border-left:6px solid #cca562}#enp-quiz .enp-quiz-message__title--note{color:#333f48}#enp-quiz .enp-quiz-message__close{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:5px;right:5px}#enp-quiz .enp-quiz-message--ajax{margin-bottom:.6rem;animation:a .3s}#enp-quiz .enp-quiz-message-ajax-container{z-index:9999;position:fixed;bottom:10px}#enp-quiz .enp-quiz-message--saving__spinner{margin-left:-10px}#enp-quiz .enp-quiz-message--saving__text{font-size:1rem}#enp-quiz input.limited-chars,#enp-quiz textarea.limited-chars{margin-bottom:.2rem}#enp-quiz .limited-chars__container{color:#fdfcfd;font-size:.8rem;display:block;text-align:right;margin-bottom:1.2rem}#enp-quiz .limited-chars__counter{color:#e8e4ed}#enp-quiz .limited-chars__container--error,#enp-quiz .limited-chars__container--error .limited-chars__counter{color:#964400}#enp-quiz input.has-error,#enp-quiz textarea.has-error{border:1px solid #bf5700}#enp-quiz input.has-error:focus,#enp-quiz textarea.has-error:focus{outline-color:#bf5700}#enp-quiz .enp-tooltip{position:relative}#enp-quiz .enp-tooltip__activator:focus+.enp-tooltip__description,#enp-quiz .enp-tooltip__activator:focus>.enp-tooltip__description{display:block}#enp-quiz .enp-tooltip__description{display:none;position:absolute;left:103%;margin-bottom:2rem;border-radius:3px;background:#faf9fb;font-size:.9rem;padding:.9rem;max-width:200px}.enp-sticky{position:relative;left:0;right:0;top:0;z-index:999}.enp-sticky.enp-sticky--fixed{position:fixed}.enp-breadcrumb-link{font-size:.85rem}.enp-breadcrumb-link__icon{position:relative;top:.45rem;left:.4rem}body #enp-quiz{color:#1d1c25;font-family:Arial,monospace,helvetica,arial,sans-serif;font-size:1em;line-height:1.6;font-weight:400}@media (min-width:700px){body #enp-quiz{font-size:1.3em}}#enp-quiz h1,#enp-quiz h2,#enp-quiz h3,#enp-quiz h4,#enp-quiz h5,#enp-quiz h6{font-family:Arial,monospace,helvetica,arial,sans-serif;color:#5d5e5f;clear:both;margin:0 0 .2rem;font-weight:700;line-height:1.2em}#enp-quiz h1{font-size:2em}#enp-quiz h2{font-size:1.75em}#enp-quiz h3{font-size:1.475em}#enp-quiz h4{font-size:1.3em}#enp-quiz h5{font-size:1.125em}#enp-quiz h6{font-size:1em}#enp-quiz p+h1,#enp-quiz p+h2,#enp-quiz p+h3,#enp-quiz p+h4,#enp-quiz p+h5,#enp-quiz p+h6,#enp-quiz ul+h1,#enp-quiz ul+h2,#enp-quiz ul+h3,#enp-quiz ul+h4,#enp-quiz ul+h5,#enp-quiz ul+h6{margin-top:1.8em}#enp-quiz p{font-size:.85em;margin-bottom:1.125em;font-weight:300}#enp-quiz ol,#enp-quiz ul{margin:0 0 1.6em 1.25em}#enp-quiz ul{list-style:disc}#enp-quiz ol{list-style:decimal}#enp-quiz li>ol,#enp-quiz li>ul{margin-bottom:0;margin-left:1.6em}#enp-quiz b,#enp-quiz strong{font-weight:700}#enp-quiz cite,#enp-quiz dfn,#enp-quiz em{font-family:georgia,times,serif;font-style:italic}#enp-quiz pre{background:#eee;font-family:Courier\ 10 Pitch,Courier,monospace;font-size:.95em;line-height:1.6;margin-bottom:1.6em;padding:1.6em;overflow:auto;max-width:100%;overflow:scroll;max-width:68vw;overflow-wrap:break-word}#enp-quiz .code,#enp-quiz code,#enp-quiz kbd,#enp-quiz tt,#enp-quiz var{font:.7em Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}#enp-quiz table{border:none}#enp-quiz table th{font-size:.8rem;text-transform:uppercase;border:none;border-bottom:1px solid #ddd}#enp-quiz table td,#enp-quiz table th{font-family:Arial,monospace,helvetica,arial,sans-serif}#enp-quiz table td{font-size:1rem;border:none;border-bottom:1px solid #eee}#enp-quiz table tr:nth-child(2n) td{background:#fdfcfd}#enp-quiz table tr:last-child td{border-bottom:none}#enp-quiz figure{margin:0}#enp-quiz img{height:auto;max-width:100%}#enp-quiz a{color:#bf5700;text-decoration:none;transition:color .2s;touch-action:manipulation}#enp-quiz a .enp-icon{fill:#bf5700}#enp-quiz a:active,#enp-quiz a:focus,#enp-quiz a:hover{color:#964400}#enp-quiz a:active .enp-icon,#enp-quiz a:focus .enp-icon,#enp-quiz a:hover .enp-icon{fill:#964400}#enp-quiz button:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6}#enp-quiz .enp-btn:focus,#enp-quiz .enp-btn:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-btn:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-btn:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn:disabled,#enp-quiz .enp-btn:disabled:focus,#enp-quiz .enp-btn:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-btn--add{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;width:100%}#enp-quiz .enp-btn--add:focus,#enp-quiz .enp-btn--add:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-btn--add:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-btn--add:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn--add:disabled,#enp-quiz .enp-btn--add:disabled:focus,#enp-quiz .enp-btn--add:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-btn--add:focus,#enp-quiz .enp-btn--add:hover{border:1px dashed #69547e;color:#a897ba;background:hsla(0,0%,100%,.9)}#enp-quiz .enp-btn--disabled{opacity:.65;cursor:default}#enp-quiz .enp-btn--enabled{animation:f .6s}#enp-quiz .enp-icon{width:24px;height:24px;transition:all .2s}#enp-quiz .enp-page-title{font-size:1.6rem}@keyframes a{0%{opacity:0;transform:translate3d(0,100px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes b{0%{opacity:0;height:auto;transform:translate3d(0,-20px,0)}to{opacity:1;height:auto;transform:translateZ(0)}}@keyframes c{0%{opacity:0;height:auto;transform:translate3d(0,-20px,0)}to{opacity:.8;height:auto;transform:translateZ(0)}}@keyframes d{0%{overflow:hidden;height:100px;opacity:1;transform:translateZ(0)}to{height:0;opacity:0;transform:translate3d(0,-20px,0)}}@keyframes e{0%{opacity:1;transform:translateZ(0)}to{padding:0;margin:0;opacity:0;height:0;z-index:-1;transform:translate3d(-200px,0,0)}}@keyframes f{0%{opacity:.8;transform:scaleX(1);box-shadow:0 0 0 rgba(0,0,0,.3)}40%{opacity:1}70%{opacity:1;transform:scale3d(1.1,1.1,1);box-shadow:0 0 8px rgba(0,0,0,.4)}to{opacity:1;transform:scaleX(1);box-shadow:0 0 0 rgba(0,0,0,.3),inset 0 2px 0 rgba(0,0,0,.2)}}@keyframes g{0%{opacity:0}to{opacity:1}}@keyframes h{0%{transform:translate3d(0,-200px,0)}to{transform:translateZ(0)}}.spinner{margin:0 auto;width:70px;text-align:center}.spinner>div{width:18px;height:18px;background-color:#333;border-radius:100%;display:inline-block;animation:i 1.4s infinite ease-in-out both}.spinner .bounce1{animation-delay:-.32s}.spinner .bounce2{animation-delay:-.16s}@keyframes i{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}#enp-quiz{transition:background .25s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-aside{padding:1.6rem;margin-bottom:1.6rem;background:#94a6b3;border-radius:3px;border:1px solid #eee;border-bottom-color:#ccc;max-width:80vw;margin:0 auto;font-size:1.2rem;background:#faf9fb}@media (min-width:700px){#enp-quiz .enp-aside{margin-bottom:2.6rem;padding:1.6rem 2rem}}#enp-quiz .enp-aside__title{font-size:1rem;text-transform:uppercase;font-weight:600}#enp-quiz .enp-page-title{border-bottom:2px solid #00a9b7}#enp-quiz fieldset{border:none;margin:0;padding:0}#enp-quiz .enp-label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase}#enp-quiz .enp-label__sm{font-size:.85rem}#enp-quiz .enp-label.enp-quiz-winlose__label{padding:1rem 0 0}#enp-quiz .enp-legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none;padding-top:0}#enp-quiz .enp-input{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem}@media (min-width:700px){#enp-quiz .enp-input{padding:.8rem;width:100%}}#enp-quiz .enp-input__sm{padding:5px;margin-bottom:5px}#enp-quiz .enp-input.enp-input--has-description{margin-bottom:.2rem}#enp-quiz .enp-input-description,#enp-quiz .enp-textarea-description{margin-bottom:1rem;font-size:.85rem}#enp-quiz .enp-input-description--before,#enp-quiz .enp-textarea-description--before{margin-bottom:0}#enp-quiz .enp-input::-webkit-input-placeholder,#enp-quiz .enp-textarea::-webkit-input-placeholder{font-family:Arial,monospace,helvetica,arial,sans-serif;font-weight:300;color:#7a7697}#enp-quiz .enp-input:-ms-input-placeholder,#enp-quiz .enp-input::-ms-input-placeholder,#enp-quiz .enp-textarea:-ms-input-placeholder,#enp-quiz .enp-textarea::-ms-input-placeholder{font-family:Arial,monospace,helvetica,arial,sans-serif;font-weight:300;color:#7a7697}#enp-quiz .enp-input::placeholder,#enp-quiz .enp-textarea::placeholder{font-family:Arial,monospace,helvetica,arial,sans-serif;font-weight:300;color:#7a7697}#enp-quiz .enp-textarea{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;line-height:1.5}@media (min-width:700px){#enp-quiz .enp-textarea{padding:.8rem;width:100%}}#enp-quiz .enp-textarea:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-textarea.enp-textarea--has-description{margin-bottom:.2rem}#enp-quiz .enp-textarea.enp-textarea--has-description--before{margin-bottom:1.2rem}#enp-quiz .enp-embed-code{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;line-height:1.5;padding:1.6rem;font-size:.7rem;font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}@media (min-width:700px){#enp-quiz .enp-embed-code{padding:.8rem;width:100%}}#enp-quiz .enp-embed-code:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-preview-page-container,#enp-quiz .enp-publish-page-container,#enp-quiz .enp-quiz-form-container{display:grid;grid-column:2/-1;gap:1rem;width:100%;justify-items:center}@media (min-width:700px){#enp-quiz .enp-preview-page-container,#enp-quiz .enp-publish-page-container,#enp-quiz .enp-quiz-form-container{justify-items:start}}#enp-quiz .enp-quiz-form{display:grid;padding-left:0;padding-right:0}@media (min-width:1000px){#enp-quiz .enp-quiz-form{width:100%;max-width:40rem}}#enp-quiz .enp-preview-page-flex-container{display:grid;gap:1rem}@media (min-width:700px){#enp-quiz .enp-preview-page-flex-container{grid-template-columns:1fr 3fr}}#enp-quiz .enp-quiz-title__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-quiz-title__textarea{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;font-weight:700;font-size:1.6rem;margin-bottom:1rem}@media (min-width:700px){#enp-quiz .enp-quiz-title__textarea{padding:.8rem;width:100%}}#enp-quiz .enp-quiz-title__textarea::-webkit-input-placeholder{font-weight:700}#enp-quiz .enp-quiz-title__textarea:-ms-input-placeholder,#enp-quiz .enp-quiz-title__textarea::-ms-input-placeholder{font-weight:700}#enp-quiz .enp-quiz-title__textarea::placeholder{font-weight:700}#enp-quiz textarea{color:#000}#enp-quiz .enp-accordion-container{margin-bottom:1.6rem;position:relative}#enp-quiz .enp-question-content{background:#fff;width:100%;padding-top:0;position:relative}#enp-quiz .enp-question-inner{padding:1.6rem 1.6rem 1rem}@media (min-width:700px){#enp-quiz .enp-question-inner{padding-right:2.8rem;padding-left:2.9rem}}#enp-quiz .enp-question-title__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-question-title__textarea{font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;padding:1rem 1.2rem;font-size:1rem}@media (min-width:700px){#enp-quiz .enp-question-title__textarea{padding:.8rem;width:100%}}#enp-quiz .enp-question-image-upload{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;font-size:1rem;text-transform:uppercase;position:relative;margin-bottom:2rem;transform:translateZ(0);transition:all .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-question-image-upload:focus,#enp-quiz .enp-question-image-upload:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-question-image-upload:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-question-image-upload:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-question-image-upload:disabled,#enp-quiz .enp-question-image-upload:disabled:focus,#enp-quiz .enp-question-image-upload:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-question-image-upload:focus,#enp-quiz .enp-question-image-upload:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}#enp-quiz .enp-question-image-upload .enp-question-image-upload__icon--photo{width:2.8rem;height:2.8rem;opacity:0;position:absolute;top:0;left:0;right:0;margin:0 auto;transform:translateZ(0);z-index:-1;transition:opacity .2s,transform .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-question-image-upload .enp-question-image-upload__icon--add{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;background:#e8e4ed;fill:#faf9fb;margin-right:5px;position:relative;top:.2rem}#enp-quiz .enp-question-image-upload:active,#enp-quiz .enp-question-image-upload:focus,#enp-quiz .enp-question-image-upload:hover{padding-top:5rem;padding-bottom:2rem}#enp-quiz .enp-question-image-upload:active .enp-question-image-upload__icon--photo,#enp-quiz .enp-question-image-upload:focus .enp-question-image-upload__icon--photo,#enp-quiz .enp-question-image-upload:hover .enp-question-image-upload__icon--photo{opacity:1;z-index:1;transform:translate3d(0,1.75rem,0)}#enp-quiz .enp-question-image-upload:active .enp-question-image-upload__icon--add,#enp-quiz .enp-question-image-upload:focus .enp-question-image-upload__icon--add,#enp-quiz .enp-question-image-upload:hover .enp-question-image-upload__icon--add{fill:#fff;background:#a897ba}#enp-quiz .enp-question-image__container{position:relative;margin-bottom:1rem}#enp-quiz .enp-question-image{margin-bottom:1.2rem}#enp-quiz .enp-question-type__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none}#enp-quiz .enp-question-type__input{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-question-type__label{text-transform:capitalize;display:inline-block;padding:.2rem .5rem;border-radius:3px;cursor:pointer}#enp-quiz .enp-question-type__input:checked+.enp-question-type__label{background:#00a9b7;color:#fff;text-shadow:0 0 1px rgba(0,0,0,.7)}#enp-quiz .enp-question-type__input:focus+.enp-question-type__label{z-index:8;outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-question-type__label{position:relative;z-index:9}#enp-quiz .enp-mc-options,#enp-quiz .enp-slider-options{margin-top:0;display:none;animation:d .25s cubic-bezier(0,0,.3,1) forwards;animation-delay:0s,.05s}#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options,#enp-quiz .enp-question-type__input--slider:checked~.enp-slider-options{visibility:visible;display:block;animation:g .45s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-mc-options__list{list-style:none;margin-left:0}#enp-quiz .enp-mc-option{position:relative;padding-left:6px}@media (min-width:700px){#enp-quiz .enp-mc-option{padding-left:0}}#enp-quiz .enp-mc-options__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-mc-option__add,#enp-quiz .enp-mc-option__button--correct,#enp-quiz .enp-mc-option__button--delete{display:none}#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options .enp-mc-option__add,#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options .enp-mc-option__button--correct,#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options .enp-mc-option__button--delete{display:block}#enp-quiz .enp-button__question-image-delete,#enp-quiz .enp-mc-option__button--delete{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:9px;right:-24px;fill:#bbb;cursor:pointer}@media (min-width:700px){#enp-quiz .enp-button__question-image-delete,#enp-quiz .enp-mc-option__button--delete{right:-30px}}#enp-quiz .enp-button__question-image-delete:focus,#enp-quiz .enp-button__question-image-delete:hover,#enp-quiz .enp-mc-option__button--delete:focus,#enp-quiz .enp-mc-option__button--delete:hover{fill:#bf5700}#enp-quiz .enp-mc-option__button--correct{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:8px;left:-24px}@media (min-width:700px){#enp-quiz .enp-mc-option__button--correct{left:-35px}}#enp-quiz .enp-mc-option__button--correct .enp-mc-option__icon--correct{border-radius:50%;padding:.05em;width:28px;height:28px;fill:#fff;background:#fff;cursor:pointer;border:2px solid #c1893e;transition:all .2s}@media (min-width:700px){#enp-quiz .enp-mc-option__button--correct .enp-mc-option__icon--correct{padding:.15em}}#enp-quiz .enp-mc-option__button--correct:focus .enp-mc-option__icon--correct,#enp-quiz .enp-mc-option__button--correct:hover .enp-mc-option__icon--correct{background:#fff;border-color:#60aaad;fill:#60aaad}#enp-quiz .enp-mc-option__button--correct:disabled{opacity:1}#enp-quiz .enp-mc-option__button--correct:disabled .enp-mc-option__icon--correct{cursor:default;fill:#fff;border:2px solid transparent}#enp-quiz .enp-mc-option--correct .enp-mc-option__input{box-shadow:inset 0 0 3px #00a9b7;border:1px solid #00a9b7}#enp-quiz .enp-mc-option--correct .enp-mc-option__button--correct:focus .enp-mc-option__icon--correct,#enp-quiz .enp-mc-option--correct .enp-mc-option__button--correct:hover .enp-mc-option__icon--correct,#enp-quiz .enp-mc-option--correct .enp-mc-option__icon--correct{fill:#fff;border-color:#00a9b7;background:#00a9b7}#enp-quiz .enp-mc-option__add{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;font-size:1rem;text-transform:uppercase;text-align:left;padding:.7rem .75rem .8rem}#enp-quiz .enp-mc-option__add:focus,#enp-quiz .enp-mc-option__add:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-mc-option__add:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-mc-option__add:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-mc-option__add:disabled,#enp-quiz .enp-mc-option__add:disabled:focus,#enp-quiz .enp-mc-option__add:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-mc-option__add:focus,#enp-quiz .enp-mc-option__add:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}#enp-quiz .enp-mc-option__add .enp-mc-option__add__icon{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;margin-right:5px;background:#e8e4ed;fill:#faf9fb;position:relative;top:.2rem}#enp-quiz .enp-mc-option__add:hover .enp-mc-option__add__icon{fill:#fff;background:#a897ba}#enp-quiz .enp-slider-options .enp-input{max-width:11.8rem}#enp-quiz .enp-slider-correct__container .enp-input,#enp-quiz .enp-slider-range__container .enp-input{max-width:8.8rem}@media (min-width:400px){#enp-quiz .enp-slider-correct__container .enp-input,#enp-quiz .enp-slider-range__container .enp-input{max-width:11.8rem}}#enp-quiz .enp-slider-preview{border:1px solid #ddd;margin-top:.2rem;margin-bottom:1.6rem;padding:1.6rem 1.6rem .6rem;position:relative}#enp-quiz .enp-slider-preview .enp-label--slider-preview{position:absolute;width:100%;top:.2rem;left:.4rem;font-size:.75rem;text-transform:uppercase}#enp-quiz .enp-slider-correct__container,#enp-quiz .enp-slider-range__container{display:flex;justify-content:space-between;align-items:center}#enp-quiz .enp-slider-correct__helper,#enp-quiz .enp-slider-range__helper{color:#777;font-size:.85rem;background:#fff;padding:0 .3rem;position:relative}#enp-quiz .enp-slider-correct__helper:before,#enp-quiz .enp-slider-range__helper:before{content:"";position:absolute;top:44%;height:4px;background:#ddd;width:120px;left:-60px;z-index:-1;transition:width .7s cubic-bezier(0,0,.3,1),background 1.6s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-slider-options{margin-bottom:2rem}#enp-quiz .enp-slider-options .enp-accordion-header{text-transform:uppercase;font-size:.85rem;padding:.675rem}#enp-quiz .enp-slider-options .enp-slider-advanced-options__content{border:none;box-shadow:none;padding-top:1rem;padding-bottom:0;margin-bottom:0}#enp-quiz .enp-slider-correct-high__container{position:relative}#enp-quiz .enp-slider-correct-high__input-container--hidden{display:none}#enp-quiz .enp-slider-correct__helper--hidden:before{width:0;background:#60aaad}#enp-quiz .enp-slider-correct-answer-range--add-range{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;margin-left:.8rem;font-size:.7rem}#enp-quiz .enp-slider-correct-answer-range--add-range:focus,#enp-quiz .enp-slider-correct-answer-range--add-range:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-slider-correct-answer-range--add-range:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-slider-correct-answer-range--add-range:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-slider-correct-answer-range--add-range:disabled,#enp-quiz .enp-slider-correct-answer-range--add-range:disabled:focus,#enp-quiz .enp-slider-correct-answer-range--add-range:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-slider-correct-answer-range--add-range:focus,#enp-quiz .enp-slider-correct-answer-range--add-range:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}@media (min-width:400px){#enp-quiz .enp-slider-correct-answer-range--add-range{font-size:.8rem;padding:.7rem}}@media (min-width:700px){#enp-quiz .enp-slider-correct-answer-range--add-range{padding:.7rem 1.2rem;min-width:11.4rem}}#enp-quiz .enp-slider-correct-answer-range--add-range .enp-slider-correct-answer-range__icon{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;margin-right:5px;background:#e8e4ed;fill:#faf9fb;position:relative;left:-.2rem}#enp-quiz .enp-slider-correct-answer-range--add-range:hover .enp-slider-correct-answer-range__icon{fill:#fff;background:#a897ba}#enp-quiz .enp-slider-correct-answer-range--remove-range{position:absolute;right:-1.6rem;bottom:1.6rem;background:none;border:none;box-shadow:none;padding:0 .1rem}#enp-quiz .enp-slider-correct-answer-range--remove-range .enp-slider-correct-answer-range__icon{width:1.2em;height:1.2em;fill:#e8e4ed}#enp-quiz .enp-slider-correct-answer-range--remove-range:focus .enp-slider-correct-answer-range__icon,#enp-quiz .enp-slider-correct-answer-range--remove-range:hover .enp-slider-correct-answer-range__icon{fill:#bf5700}@media (min-width:700px){#enp-quiz .enp-slider-correct-answer-range--remove-range{top:-.2rem;right:-.2rem;bottom:auto}}#enp-quiz .enp-slider-options .enp-input:-moz-read-only{background:#faf9fb}#enp-quiz .enp-slider-options .enp-input:read-only{background:#faf9fb}#enp-quiz .enp-answer-explanation{background:#faf9fb;padding-top:2rem;box-shadow:inset 1px 0 0 #ccc,inset -1px -1px 0 #ccc,inset 0 1px 0 #ddd}#enp-quiz .enp-answer-explanation__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-question__button--delete{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:9px;right:9px;fill:#bbb;cursor:pointer}@media (min-width:700px){#enp-quiz .enp-question__button--delete{right:-30px}}#enp-quiz .enp-question__button--delete:hover{fill:#bf5700}#enp-quiz .enp-question__move{position:absolute;left:15px}@media (min-width:700px){#enp-quiz .enp-question__move{left:-40px}}#enp-quiz .enp-sort__placeholder{background:#ddd;height:60px;width:100%;max-height:120px;margin-bottom:1.6rem}#enp-quiz .ui-sortable .ui-sortable-helper .ui-sortable-handle{cursor:move;cursor:grabbing;cursor:-webkit-grabbing}#enp-quiz .enp-question__button--move{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;fill:#bbb;cursor:pointer}#enp-quiz .enp-question__button--move:focus,#enp-quiz .enp-question__button--move:hover{fill:#333}#enp-quiz .enp-question__button--move:disabled{opacity:.5}#enp-quiz .enp-question__button--move--up{top:-25px;left:-4px}#enp-quiz .enp-question__button--move--down{top:3px;right:-20px}#enp-quiz .enp-quiz-form__add-question{padding:.75em .8em .7em 1.4em;text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;padding-top:1rem;padding-bottom:1rem;margin-top:1.6rem;margin-bottom:2rem}#enp-quiz .enp-quiz-form__add-question:focus,#enp-quiz .enp-quiz-form__add-question:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-form__add-question:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-form__add-question:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-form__add-question:disabled,#enp-quiz .enp-quiz-form__add-question:disabled:focus,#enp-quiz .enp-quiz-form__add-question:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-form__add-question:focus,#enp-quiz .enp-quiz-form__add-question:hover{border:1px dashed #69547e;color:#a897ba;background:hsla(0,0%,100%,.9)}#enp-quiz .enp-quiz-form__add-question .enp-add-question__icon{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;margin-right:5px;width:1.2rem;height:1.2rem;background:#e8e4ed;fill:#faf9fb;position:relative;top:.2rem}#enp-quiz .enp-quiz-form__add-question:hover .enp-add-question__icon{fill:#fff;background:#a897ba}#enp-quiz .enp-btn--save__btns{display:flex;align-items:center;align-items:flex-start}#enp-quiz .enp-quiz-form__save{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;width:100%;margin-bottom:1rem;opacity:.8;text-shadow:0 -1px 2px rgba(0,0,0,.6)}#enp-quiz .enp-quiz-form__save:focus,#enp-quiz .enp-quiz-form__save:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-form__save:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-form__save:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-form__save:disabled,#enp-quiz .enp-quiz-form__save:disabled:focus,#enp-quiz .enp-quiz-form__save:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-form__save:focus,#enp-quiz .enp-quiz-form__save:hover{opacity:1}@media (min-width:400px){#enp-quiz .enp-quiz-form__save{padding:1.2rem 1.8rem 1.1rem;margin-right:3%;position:relative}}#enp-quiz .enp-quiz-form__save--reveal{animation:c .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-btn--next-step{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;padding:.65em 1.2em .85em 1.4em}#enp-quiz .enp-btn--next-step:focus,#enp-quiz .enp-btn--next-step:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-btn--next-step:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-btn--next-step:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn--next-step:disabled,#enp-quiz .enp-btn--next-step:disabled:focus,#enp-quiz .enp-btn--next-step:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-btn--next-step__icon{border-radius:50%;fill:#fff;background:#fff;fill:#bf5700;width:1.2rem;height:1.2rem;margin-left:.5em;position:relative;top:.15rem}#enp-quiz .enp-btn--next-step__icon:hover{background:#fff;fill:#964400}#enp-quiz .enp-btn--next-step{width:100%;padding:1rem 1.4rem}@media (min-width:700px){#enp-quiz .enp-btn--next-step{padding:1.2rem 1.8rem 1.1rem}}#enp-quiz .enp-btn--next-step .enp-btn--next-step__icon{width:1rem;height:1rem}#enp-quiz .enp-btn--next-step--reveal{animation:b .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-accordion-header--inserting,#enp-quiz .enp-mc-option--inputs{animation:a .4s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-mc-option--remove,#enp-quiz .enp-question--remove,#enp-quiz .enp-question__image--remove{animation:e .5s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-image-upload-wait{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;padding-top:4rem;padding-bottom:4rem;margin-bottom:1rem;width:100%}#enp-quiz .enp-image-upload-wait:focus,#enp-quiz .enp-image-upload-wait:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-image-upload-wait:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-image-upload-wait:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-image-upload-wait:disabled,#enp-quiz .enp-image-upload-wait:disabled:focus,#enp-quiz .enp-image-upload-wait:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-image-upload-wait:focus,#enp-quiz .enp-image-upload-wait:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}#enp-quiz .enp-accordion-header.question-has-error{color:#bf5700;box-shadow:0 0 3px #bf5700}.enp-quiz.ui-sortable--sorting #enp-quiz .enp-accordion-content{display:none}#enp-quiz .enp-quiz-settings__title,#enp-quiz .enp-quiz-share__legend{position:relative;font-size:1rem;text-transform:uppercase;font-weight:600;padding-top:0}@media (min-width:700px){#enp-quiz .enp-quiz-settings__title,#enp-quiz .enp-quiz-share__legend{padding:1em 0}}#enp-quiz .enp-quiz-settings__form{margin-bottom:3rem;overflow:visible}@media (min-width:1000px){#enp-quiz .enp-quiz-settings__form{padding:0;margin-bottom:0}}@media (min-width:700px){#enp-quiz .enp-fieldset{position:relative}}#enp-quiz .enp-title-display__legend{padding-top:0}@media (min-width:700px){#enp-quiz .enp-title-display__legend{padding-top:.4rem}}#enp-quiz .enp-quiz-share__input,#enp-quiz .enp-quiz-styles__input{width:100%}#enp-quiz .enp-quiz-styles__textarea--custom-css{font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace;font-size:.9rem;min-height:200px}#enp-quiz .enp-fieldset--section{padding:1.6rem 1rem}@media (min-width:1000px){#enp-quiz .enp-fieldset--section{padding:1rem}}#enp-quiz .enp-fieldset--section.enp-accordion-content--open{margin-bottom:0}#enp-quiz .enp-quiz-share--facebook{margin-bottom:2rem}#enp-quiz .enp-title-display__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none}#enp-quiz .enp-title-display__input{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-title-display__label{text-transform:capitalize;display:inline-block;padding:.2rem .5rem;border-radius:3px;cursor:pointer}#enp-quiz .enp-title-display__input:checked+.enp-title-display__label{background:#00a9b7;color:#fff;text-shadow:0 0 1px rgba(0,0,0,.7)}#enp-quiz .enp-title-display__input:focus+.enp-title-display__label{z-index:8;outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-mc-options-order__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none}#enp-quiz .enp-mc-options-order__input{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-mc-options-order__label{text-transform:capitalize;display:inline-block;padding:.2rem .5rem;border-radius:3px;cursor:pointer}#enp-quiz .enp-mc-options-order__input:checked+.enp-mc-options-order__label{background:#00a9b7;color:#fff;text-shadow:0 0 1px rgba(0,0,0,.7)}#enp-quiz .enp-mc-options-order__input:focus+.enp-mc-options-order__label{z-index:8;outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-mc-options-order{margin-bottom:1.6rem}#enp-quiz .enp-quiz-share__textarea{min-height:7.6rem;margin-bottom:2rem}@media (min-width:700px){#enp-quiz .enp-quiz-share__textarea{min-height:4.6rem}}@media (min-width:1000px){#enp-quiz .enp-quiz-share__textarea{min-height:7.6rem}}#enp-quiz .enp-preview-form__submit{margin-top:1.6rem;margin-bottom:1.6rem}#enp-quiz .enp-quiz-preview__title{font-size:1rem;text-transform:uppercase;font-weight:600}@media (min-width:700px){#enp-quiz .enp-quiz-preview__title{padding:1em 0}}#enp-quiz .enp-preview-form__submit{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;width:100%;padding-top:.85rem;padding-bottom:.85rem;margin-bottom:1rem;opacity:.8;text-shadow:0 -1px 2px rgba(0,0,0,.6)}#enp-quiz .enp-preview-form__submit:focus,#enp-quiz .enp-preview-form__submit:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-preview-form__submit:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-preview-form__submit:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-preview-form__submit:disabled,#enp-quiz .enp-preview-form__submit:disabled:focus,#enp-quiz .enp-preview-form__submit:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-preview-form__submit:focus,#enp-quiz .enp-preview-form__submit:hover{opacity:1}#enp-quiz .enp-preview-form__submit--publish{width:100%;position:relative;z-index:99999999;padding:1.05rem 1.8rem .95rem}#enp-quiz .enp-quiz-styles__iris-wrapper{position:relative}#enp-quiz .iris-picker{box-sizing:content-box;position:relative;z-index:9999999999;top:-1.2rem;margin-bottom:1rem;padding-bottom:3rem;padding-right:30px}@media (min-width:1000px){#enp-quiz .iris-picker{position:absolute;top:50px;left:0}}#enp-quiz .iris-picker:last-of-type{margin-bottom:0}#enp-quiz .iris-picker .ui-draggable-handle:focus .ui-slider-handle,#enp-quiz .iris-picker .ui-slider-handle:focus{box-shadow:0 0 3px rgba(0,0,0,.75)}#enp-quiz .enp-quiz-styles__set-default{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:2px solid #bf5700;background:transparent;color:#bf5700;box-shadow:none;font-size:.75rem;position:absolute;left:10px;bottom:10px}#enp-quiz .enp-quiz-styles__set-default:focus,#enp-quiz .enp-quiz-styles__set-default:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-styles__set-default:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-styles__set-default:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-styles__set-default:disabled,#enp-quiz .enp-quiz-styles__set-default:disabled:focus,#enp-quiz .enp-quiz-styles__set-default:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-styles__set-default:focus,#enp-quiz .enp-quiz-styles__set-default:hover{background:transparent;border:2px solid #964400;color:#964400}#enp-quiz .enp-iris__close{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:5px;right:5px;fill:#888;cursor:pointer}#enp-quiz .enp-quiz-styles__input--color{padding-left:45px}#enp-quiz .enp-quiz-styles__color-demo{width:30px;height:30px;border:1px solid #ccc;top:8px;left:8px;border-radius:3px;position:absolute}@media (min-width:700px){#enp-quiz .enp-share-quiz__container{padding:0;border:none}}#enp-quiz .enp-share-quiz__url{display:block;font-size:1rem;line-height:1.4;word-wrap:break-word}#enp-quiz .enp-share-quiz{list-style:none;margin-left:0;display:flex;justify-content:center;align-content:center;align-items:center}#enp-quiz .enp-share-quiz__item{margin-right:20px}#enp-quiz .enp-share-quiz__item:last-child{margin-right:0}#enp-quiz .enp-share-quiz__item__icon{width:2.4rem;height:2.4rem;border-radius:50%;fill:#fff;padding:.6rem;fill:#fff!important}#enp-quiz .enp-share-quiz__item__icon--facebook{background-color:#3a5795}#enp-quiz .enp-share-quiz__item__icon--twitter{background-color:#4099ff}#enp-quiz .enp-share-quiz{justify-content:space-around;margin-bottom:0}#enp-quiz .enp-share-quiz .enp-icon--mail{background:#00a9b7}#enp-quiz .enp-ab-create__container{max-width:80vw;margin:0 auto;width:100%;background:#fdfcfd;padding-top:3rem;padding-bottom:3rem}@media (min-width:700px){#enp-quiz .enp-ab-create__container{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-ab-create__container{max-width:1440px;padding-top:0}}#enp-quiz .enp-ab-create__form{max-width:80vw;margin:0 auto}@media (min-width:1000px){#enp-quiz .enp-ab-create__form{max-width:80vw;margin:0 auto;margin:unset}}#enp-quiz .enp-ab-create__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-ab-create-title__textarea{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;font-weight:700;font-size:1.6rem;margin-bottom:1rem;width:100%}@media (min-width:700px){#enp-quiz .enp-ab-create-title__textarea{padding:.8rem;width:100%}}#enp-quiz .enp-ab-create-title__textarea::-webkit-input-placeholder{font-weight:700}#enp-quiz .enp-ab-create-title__textarea:-ms-input-placeholder,#enp-quiz .enp-ab-create-title__textarea::-ms-input-placeholder{font-weight:700}#enp-quiz .enp-ab-create-title__textarea::placeholder{font-weight:700}#enp-quiz .enp-ab-create__select{width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:.85rem;padding:.7rem 32px .7rem .8rem;border:1px solid #bbb;border-radius:3px;margin-bottom:1.6rem;background:url(../svg/chevron-down.svg) 100% 50% no-repeat;background-color:#fff;box-shadow:inset -26px 0 0 rgba(0,0,0,.1)}#enp-quiz .enp-ab-create__submit{width:100%;padding-top:1em;padding-bottom:1em}#headerimg h1{text-align:center;font-size:40px!important}#enp-quiz.enp-quiz__main{max-width:80vw;margin:0 auto;display:grid;gap:1em;min-height:85vh}@media (min-width:1000px){#enp-quiz.enp-quiz__main{max-width:80vw;margin:0 auto;grid-template-columns:1fr 4fr}}@media (min-width:1000px) and (min-width:700px){#enp-quiz.enp-quiz__main{max-width:1000px}}@media (min-width:1000px) and (min-width:1000px){#enp-quiz.enp-quiz__main{max-width:1440px}}#enp-quiz .enp-dash-container{padding:2rem;transition:all .25s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash__section-aside{background-color:#faf9fb}@media (min-width:700px){#enp-quiz .enp-dash__section-aside{padding:2rem}}#enp-quiz .enp-breadcrumb-link__container{padding-bottom:2rem}#enp-quiz .enp-search-quizzes{display:flex;justify-content:space-between;flex-wrap:wrap;padding:1em}@media (min-width:700px){#enp-quiz .enp-search-quizzes{padding:.2rem 0;flex-wrap:nowrap}}@media (min-width:1000px){#enp-quiz .enp-search-quizzes{display:flex;justify-content:space-between;flex-direction:column}}#enp-quiz .enp-search-quizzes__form-item{margin-bottom:.6rem;flex:0 1 48%}@media (min-width:400px){#enp-quiz .enp-search-quizzes__form-item{margin-bottom:0;margin-right:1rem;flex:1 0 auto}}#enp-quiz .enp-quiz-search{flex:1 0 100%;position:relative}@media (min-width:700px){#enp-quiz .enp-quiz-search{flex:1 0 auto}}#enp-quiz .enp-search-quizzes__label{margin-bottom:0;clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-search-quizzes__select{padding:.3rem;border-radius:3px;width:100%;background-color:#ececec}@media (min-width:1000px){#enp-quiz .enp-search-quizzes__select{min-width:200px;font-size:.85rem}}#enp-quiz .enp-quiz-search__input{width:100%;margin:0 0 .1rem;padding:.3rem .3rem .3rem 26px;font-size:.85rem}#enp-quiz .enp-quiz-search__icon{position:absolute;bottom:.3rem;left:.2rem;width:21px;height:21px}#enp-quiz .enp-search-quizzes__button{padding:.2rem .8rem}#enp-quiz .enp-search-results-description{font-size:.85rem}#enp-quiz .enp-search-results-description__link{white-space:nowrap}#enp-quiz .enp-search-results-description__icon{width:1.3em;height:1.3em;position:relative;top:4px;left:2px}#enp-quiz .enp-dash__section-title{font-size:1rem;text-transform:uppercase;margin-bottom:.325rem;border-bottom:1px solid #e8e4ed}@media (min-width:700px){#enp-quiz .enp-dash__section-title{padding:2.5em 0 1em}}@media (min-width:1000px){#enp-quiz .enp-dash__section-title{padding:1em 0}}#enp-quiz .enp-dash__ab-test-helper--not-enough-quizzes{color:#a897ba}#enp-quiz .enp-view-toggle{cursor:pointer;opacity:.5;display:none}@media (min-width:700px){#enp-quiz .enp-view-toggle{display:flex}}#enp-quiz .enp-view-toggle__active{opacity:1}#enp-quiz .enp-sort-by{margin-left:5px}#enp-quiz .enp-dash-list{display:flex;flex-flow:column wrap;align-items:stretch;list-style:none;margin-left:0}#enp-quiz .enp-dash-item{flex-basis:100%;padding:1rem 1.2rem;background-color:#f5f3f7;border:1px solid #eee;border-bottom:1px solid #ddd;list-style:none;transition:all .35s cubic-bezier(0,0,.3,1);margin:0 0 .8rem;justify-content:space-between;display:flex;z-index:1;flex-direction:column;align-content:flex-end;justify-content:flex-end;border:none;border-radius:3px}#enp-quiz .enp-dash-item--published{box-shadow:inset 4px 0 0 #00a9b7,0 1px 0 rgba(0,0,0,.1)}#enp-quiz .enp-dash-item--draft{box-shadow:inset 4px 0 0 #94a6b3,0 1px 0 rgba(0,0,0,.1)}#enp-quiz .enp-dash-item--draft .enp-dash-item__title a{color:#333f48}#enp-quiz .enp-dash-item--remove{animation:e .5s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-dash-list--list-view .enp-dash-item{margin:0 0 .8rem;flex-basis:100%}#enp-quiz .enp-dash-item__spinner{display:flex;justify-content:center;align-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,59%,90%,.8);width:100%;animation:g .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item__header{padding:.5rem 1rem;background:#faf9fb;border-bottom:1px solid #e8e4ed;display:flex;justify-content:space-between;align-items:center;border-radius:3px}#enp-quiz .enp-dash-item__title{font-size:1rem;padding-bottom:.5rem;padding:0;margin-bottom:0}#enp-quiz .enp-dash-item__title a{color:#00a9b7}#enp-quiz .enp-dash-item__content{padding:0 0 .375rem;position:relative;transition:all .2s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item__meta{font-size:.7rem;font-weight:300;color:#a897ba;font-size:.75rem}#enp-quiz .enp-dash-item__username{word-wrap:break-word;padding-left:.4rem;margin-left:.2rem;border-left:1px solid #ddd}#enp-quiz .enp-dash-item__title--ab-test{padding-bottom:0}#enp-quiz .enp-dash-item__ab-quizzes{list-style:none;margin-left:0;font-size:.75rem;color:#a897ba;margin-bottom:.8rem}#enp-quiz .enp-dash-item__nav{list-style:none;margin-left:0;margin-bottom:0;font-size:.85rem}#enp-quiz .enp-dash-item__nav__item{display:flex;margin:0;width:100%;align-items:center}#enp-quiz .enp-dash-item__nav__item:hover{background-color:#f5f3f7}#enp-quiz .enp-dash-item__nav__item:hover .enp-dash-item__icon{fill:#bf5700}#enp-quiz .enp-dash-item__nav__item a{font-weight:400;color:#a897ba;display:flex;align-items:center;width:100%;padding:12px}#enp-quiz .enp-dash-item__nav__item a:focus,#enp-quiz .enp-dash-item__nav__item a:hover{color:#bf5700;outline:1px dotted #bf5700;outline-offset:1px}#enp-quiz .enp-dash-item__nav__item a:focus .enp-dash-item__icon,#enp-quiz .enp-dash-item__nav__item a:hover .enp-dash-item__icon{fill:#bf5700}#enp-quiz .enp-delete-quiz{width:100%}#enp-quiz .enp-delete-quiz:hover .enp-dash-item__delete{color:#bf5700}#enp-quiz .enp-delete-quiz:hover .enp-icon{fill:#bf5700}#enp-quiz .enp-dash-item__delete{border:none;background:none;box-shadow:none;padding:0;margin:0;display:flex;padding:12px;align-items:center;position:relative;line-height:1.6;color:#a897ba;cursor:pointer;width:100%;font-size:.85rem}#enp-quiz .enp-dash-item__delete .enp-icon{fill:#a897ba}#enp-quiz .enp-dash-item__icon{fill:#a897ba;width:15px;height:15px;margin-right:10px}#enp-quiz .enp-dash-item__nav--collapsible{display:none;position:absolute;z-index:2;top:44px;right:-17px;width:195px;background-color:#fff;text-align:left;transform:translateZ(0);transition:all .2s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item__nav--collapsible .enp-dash-item__nav__item{cursor:pointer}#enp-quiz .enp-dash-item__menu-action{height:24px;background:none;border:none;color:#444;padding:0;bottom:.2rem;right:1.5rem;top:1.5rem;cursor:pointer}#enp-quiz .enp-dash-item__menu-action-wrap{max-width:0;display:flex;flex-direction:column;align-items:flex-end}#enp-quiz .enp-dash-item__menu-action__icon{width:15px;height:15px;fill:#a897ba;transition:all .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item--menu-active{transform:translate3d(0,-3px,0);z-index:2}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__nav-wrap{position:relative}#enp-quiz .enp-dash-item--menu-active.enp-dash-item--published{box-shadow:inset 4px 0 0 #60aaad,0 2px 2px rgba(0,0,0,.2)}#enp-quiz .enp-dash-item--menu-active.enp-dash-item--draft{box-shadow:inset 4px 0 0 #b4d7d8,0 2px 2px rgba(0,0,0,.2)}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__menu-action__icon--bottom{transform:rotateX(180deg)}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__nav--collapsible{display:block;animation:b .25s cubic-bezier(0,0,.3,1) forwards;border-radius:3px;box-shadow:0 2px 2px rgba(0,0,0,.2)}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__content{opacity:.4}#enp-quiz .enp-quiz-results{display:flex;justify-content:space-around;list-style:none;margin:.8rem 0 0;padding:0;text-align:center}#enp-quiz .enp-quiz-results__item{margin:0 2% 0 0;padding:0;color:#5d5e5f}@media (max-width:280px){#enp-quiz .enp-quiz-results__item{width:100%;padding:0;margin-bottom:.6rem}}#enp-quiz .enp-quiz-results__number{font-size:1.6rem;line-height:1;position:relative}#enp-quiz .enp-dash-item--draft .enp-quiz-results__number{opacity:.5}#enp-quiz .enp-quiz-results__number--average-score{color:#4e9497}#enp-quiz .enp-quiz-results__number--average-score:after{content:"%";font-size:.9rem;position:absolute;top:.3rem;right:-1rem}#enp-quiz .enp-quiz-results__label{text-transform:uppercase;font-size:.7rem;font-weight:300;color:#a897ba}#enp-quiz .enp-dash-item--add-new__wrap{display:grid;gap:1em;grid-template-columns:1fr 1fr}#enp-quiz .enp-dash-list--quiz__container{display:grid;gap:1em}@media (min-width:1000px){#enp-quiz .enp-dash-list--quiz__container{grid-template-columns:1fr 1fr}}#enp-quiz .enp-dash-item--add-new{background:none;border:none;padding:0;position:relative}@media (min-width:1000px){#enp-quiz .enp-dash-item--add-new{padding-top:7rem}}#enp-quiz .enp-dash-link--add-new{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;justify-content:flex-start;color:#94a6b3;padding:1rem 1.2rem}#enp-quiz .enp-dash-link--add-new:focus,#enp-quiz .enp-dash-link--add-new:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-dash-link--add-new:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-dash-link--add-new:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-dash-link--add-new:disabled,#enp-quiz .enp-dash-link--add-new:disabled:focus,#enp-quiz .enp-dash-link--add-new:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-dash-link--add-new:focus,#enp-quiz .enp-dash-link--add-new:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}@media (min-width:700px){#enp-quiz .enp-dash-link--add-new{font-size:1rem;text-transform:uppercase;display:flex;justify-content:center;align-content:center;align-items:center;flex-direction:column;position:absolute;top:0;left:0;right:0;bottom:0;padding:.75rem 1.2rem 1.5rem}}#enp-quiz .enp-dash-link--add-new .enp-dash-link__icon{border-radius:50%;fill:#fff;width:1.2rem;height:1.2rem;margin-right:5px;background-color:#94a6b3}@media (min-width:700px){#enp-quiz .enp-dash-link--add-new .enp-dash-link__icon{width:2rem;height:2rem;margin:.8rem 0 .2rem}}#enp-quiz .enp-dash-link--add-new:hover{color:#333f48}#enp-quiz .enp-dash-link--add-new:hover .enp-dash-link__icon{fill:#fff;background:#333f48}#enp-quiz .enp-quiz-message--welcome p{color:#1d1c25}#enp-quiz .enp-paginate{list-style:none;margin-left:0;font-size:1rem}#enp-quiz .enp-paginate,#enp-quiz .enp-paginate__link{display:flex;justify-content:center;align-content:center;align-items:center}#enp-quiz .enp-paginate__link{margin:0 .2rem;padding:0 .4rem;border-radius:3px;font-weight:400}#enp-quiz .enp-paginate__link--current-page{border:2px solid #00a9b7}#enp-quiz .enp-paginate__item--first-page,#enp-quiz .enp-paginate__item--last-page{display:flex}#enp-quiz .enp-paginate__item--first-page:after,#enp-quiz .enp-paginate__item--last-page:before{content:"...";font-size:1rem;position:relative;bottom:.2rem;opacity:.6}#enp-quiz .enp-paginate__item--no-gap:after,#enp-quiz .enp-paginate__item--no-gap:before{content:""}#enp-quiz .enp-paginate__item--next-page{margin-left:.2rem}#enp-quiz .enp-paginate__item--previous-page{margin-right:.2rem}#enp-quiz .enp-quiz-breadcrumbs{grid-row:1}#enp-quiz .enp-quiz-breadcrumbs__list{display:flex;list-style:none;margin-left:0;margin-bottom:0}#enp-quiz .enp-quiz-breadcrumbs__item{margin-right:10px;display:flex;justify-content:center;align-content:center;align-items:center;fill:#bf5700;margin-right:5px}#enp-quiz .enp-quiz-breadcrumbs__item:last-of-type{margin-right:0}@media (min-width:400px){#enp-quiz .enp-quiz-breadcrumbs__item{margin-right:10px}}#enp-quiz .enp-quiz-breadcrumbs__link--disabled{opacity:.65;cursor:default}#enp-quiz .enp-quiz-breadcrumbs__link--active{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:2px solid #bf5700;background:transparent;color:#bf5700;box-shadow:none;padding:.4em 1em}#enp-quiz .enp-quiz-breadcrumbs__link--active:focus,#enp-quiz .enp-quiz-breadcrumbs__link--active:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-breadcrumbs__link--active:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-breadcrumbs__link--active:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-breadcrumbs__link--active:disabled,#enp-quiz .enp-quiz-breadcrumbs__link--active:disabled:focus,#enp-quiz .enp-quiz-breadcrumbs__link--active:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-breadcrumbs__link--active:focus,#enp-quiz .enp-quiz-breadcrumbs__link--active:hover{background:transparent;border:2px solid #964400;color:#964400}#enp-quiz .enp-quiz-breadcrumbs__link{font-size:1rem;font-weight:400;text-transform:none;letter-spacing:0}#enp-quiz .enp-quiz-breadcrumbs--fixed{top:0;position:fixed;animation:h .25s}#enp-quiz .enp-results-title{font-size:1.6rem;text-align:center;padding:3.2rem 20px 2.6rem;background:#fdfcfd;margin:-1.2rem 0 2rem;border-bottom:1px solid #ddd}#enp-quiz .enp-results-title:after{font-size:1rem;text-transform:uppercase;display:block;content:"RESULTS";font-weight:400}#enp-quiz .enp-results__container{max-width:80vw;margin:0 auto;display:block}@media (min-width:700px){#enp-quiz .enp-results__container{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-results__container{max-width:1440px;display:flex;justify-content:space-between}}#enp-quiz .enp-quiz-scores__container,#enp-quiz .enp-results-flow__container{width:100%}@media (min-width:1000px){#enp-quiz .enp-quiz-scores__container,#enp-quiz .enp-results-flow__container{width:48%}}#enp-quiz .enp-quiz-scores{margin-top:2.6rem}#enp-quiz .enp-quiz-score__line-chart{height:300px;margin-bottom:1rem}#enp-quiz .enp-quiz-score__line-chart .ct-label{color:#1d1c25}#enp-quiz .enp-quiz-score__line-chart .ct-grid{stroke:#dadada;stroke-dasharray:0}#enp-quiz .enp-quiz-score__line-chart .ct-line{stroke:#60aaad;stroke-width:2px}#enp-quiz .enp-quiz-score__line-chart .ct-point{stroke:#60aaad;stroke-width:8px}#enp-quiz .enp-quiz-scores-table{width:100%;max-width:500px;margin:0 auto}#enp-quiz .enp-quiz-scores-table tr th{background-color:#fff}#enp-quiz .enp-quiz-scores-table__label{padding-left:5%}#enp-quiz .enp-quiz-scores-table__score{text-align:right;padding-right:5%}#enp-quiz .enp-results-flow{position:relative;margin:2rem auto;width:320px;height:320px;border-radius:50%}@media (min-width:400px){#enp-quiz .enp-results-flow{width:390px;height:390px}}@media (min-width:700px){#enp-quiz .enp-results-flow{width:450px;height:450px}}@media (min-width:1000px){#enp-quiz .enp-results-flow{width:400px;height:400px}}#enp-quiz .enp-results-flow__section-title{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-results-flow__item{border-radius:50%;text-align:center;height:100%;width:100%;margin:0 auto;left:0;right:0;padding:12.5% 0 0;letter-spacing:.05rem;border:2px solid #60aaad;animation:.85s a cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-results-flow__item--total-views{background:#fff}#enp-quiz .enp-results-flow__item--quiz-starts{width:65%;height:65%;position:absolute;padding-top:8%;bottom:2.5%;background:#fff}#enp-quiz .enp-results-flow__item--quiz-finishes{width:35%;height:35%;position:absolute;bottom:5%;background:#d6e9ea}#enp-quiz .enp-results-flow__title{font-size:1rem;text-transform:uppercase;color:#444;font-size:.7rem;margin-bottom:0}@media (min-width:700px){#enp-quiz .enp-results-flow__title{font-weight:700;margin-bottom:2px}}#enp-quiz .enp-results-flow__number{font-weight:700;font-size:1.4rem;line-height:1.2}#enp-quiz .enp-results-flow__number--total-views{font-size:2rem}#enp-quiz .enp-results-flow__number--quiz-starts{font-size:1.65rem}#enp-quiz .enp-results-flow__percentage{font-size:.8rem;font-weight:400;position:relative;display:inline-block;top:-.7em;left:-.1rem;color:#444}#enp-quiz .enp-results-flow__percentage:after{content:"%";position:absolute;right:-.75rem;font-size:.7rem;color:#444}#enp-quiz .enp-results-questions__section{padding-top:5rem;padding-bottom:3rem;margin-top:5rem;margin-bottom:3rem}@media (min-width:700px){#enp-quiz .enp-results-questions__section{margin-right:2rem;margin-left:2rem}}#enp-quiz .enp-results-questions__header{align-items:flex-start;flex-direction:column}@media (min-width:400px){#enp-quiz .enp-results-questions__header{display:flex;justify-content:space-between;flex-direction:row;align-items:flex-end}}#enp-quiz .enp-results-questions__key,#enp-quiz .enp-results-questions__title{font-size:1rem;text-transform:uppercase}#enp-quiz .enp-results-questions{list-style:none;margin-left:0}#enp-quiz .enp-results-question{width:100%;font-size:1rem;padding:0;margin-bottom:1rem}#enp-quiz .enp-results-question__header{padding:1rem 1.2rem;position:relative}#enp-quiz .enp-results-question__question,#enp-quiz .enp-results-question__stats{font-size:1rem;line-height:1.4}#enp-quiz .enp-results-question__question{font-weight:400}@media (min-width:400px){#enp-quiz .enp-results-question__question{padding-right:7em;margin-bottom:0}}#enp-quiz .enp-results-question__stats{font-size:.9rem}@media (min-width:400px){#enp-quiz .enp-results-question__stats{position:absolute;bottom:1rem;right:1.2rem;text-align:right}}#enp-quiz .enp-results-question__stats,#enp-quiz .enp-results-questions__key{font-weight:300}#enp-quiz .enp-results-question__content{padding:2rem 1.2rem 1.2rem;border-radius:3px}#enp-quiz .enp-results-question__deep-stats{display:flex;justify-content:space-around;list-style:none;margin-left:0;text-align:center}#enp-quiz .enp-results-question__deep-stat__number{font-size:1.8rem;line-height:1;position:relative}#enp-quiz .enp-results-question__deep-stat__number--correct,#enp-quiz .enp-results-question__deep-stat__number--finishes{color:#4e9497}#enp-quiz .enp-results-question__deep-stat__number--incorrect{color:#c1893e}#enp-quiz .enp-results-question__deep-stat__number--correct:after,#enp-quiz .enp-results-question__deep-stat__number--finishes:after,#enp-quiz .enp-results-question__deep-stat__number--incorrect:after{content:"%";font-size:.9rem;position:absolute;top:.3rem;right:-1rem}#enp-quiz .enp-results-question__deep-stat__label{font-size:1rem;text-transform:uppercase;font-size:.8rem}#enp-quiz .enp-results-question__options{list-style:none;margin-left:0;margin-bottom:0}#enp-quiz .enp-results-question__option{padding:.8rem .8rem .8rem .4rem;border-top:1px solid #ddd}@media (min-width:400px){#enp-quiz .enp-results-question__option{display:flex;justify-content:space-between;flex-direction:row}}#enp-quiz .enp-results-question__option:first-of-type{margin-top:1.4rem}#enp-quiz .enp-results-question__option--correct{background:#fff}#enp-quiz .enp-results-question__option__text{flex-grow:100;margin-right:1rem}#enp-quiz .enp-results-question__option__text__helper{font-weight:300;font-size:1rem;text-transform:uppercase;margin-right:.4rem}@media (min-width:400px){#enp-quiz .enp-results-question__option__icon{margin-right:.3rem;min-width:1.6rem}}#enp-quiz .enp-results-question__option__icon--incorrect{fill:#c1893e;opacity:.5}#enp-quiz .enp-results-question__option__icon--correct{fill:#4e9497;opacity:1}#enp-quiz .enp-results-question__option__percentage--incorrect{color:#c1893e}#enp-quiz .enp-results-question__option__percentage--correct{color:#4e9497}#enp-quiz .enp-results-question__option__number-selected{font-weight:300}#enp-quiz .enp-slider-responses__title{font-size:1rem;text-transform:uppercase;font-weight:400;margin-top:1.6rem}#enp-quiz .enp-slider-responses__line-chart .ct-point{stroke-width:8px}#enp-quiz .enp-slider-responses__line-chart--high,#enp-quiz .enp-slider-responses__line-chart--low{stroke:#bf5700}#enp-quiz .enp-slider-responses__line-chart--correct{stroke:#60aaad}#enp-quiz .enp-slider-responses-table{width:100%}#enp-quiz .enp-slider-responses-table tr.enp-slider-responses-table__response--correct td,#enp-quiz .enp-slider-responses-table tr:nth-child(2n) td{background-color:#fff}#enp-quiz .enp-slider-responses-table__content{box-shadow:none;padding-top:1rem}#enp-quiz .enp-slider-responses-table--hide-zero .enp-slider-responses-table__frequency--zero{display:none}#enp-quiz .enp-slider-responses-table__response-frequency{display:flex;justify-content:space-between;align-items:center}#enp-quiz .enp-slider-responses-table__toggle-zero-frequency{background:#fff;width:100%;box-shadow:inset 1px 1px 0 #ccc,inset -1px -1px 0 #ccc;color:#1d1c25;font-family:Arial,monospace,helvetica,arial,sans-serif;font-size:.9rem;font-weight:400;line-height:1.5;text-transform:none;letter-spacing:0;text-align:left;border:none;border-radius:3px;min-height:3.065rem;padding:1rem 2rem 1rem 1rem;margin:1.6rem 0 0;position:relative;z-index:9;cursor:pointer;transition:all .2s cubic-bezier(0,0,.3,1);width:auto;padding:0 .6rem;margin:0}.enp-quiz-results #enp-quiz .enp-aside{border:none}.enp-quiz-results .enp-results-questions__title__quiz-title{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-results--ab{display:block;margin-bottom:3rem}@media (min-width:1000px){#enp-quiz .enp-results--ab{display:flex;flex-wrap:wrap;align-content:flex-end;width:50%;padding:10px}}@media (min-width:1000px){#enp-quiz .enp-results--a{padding-right:1rem;border-right:1px solid #ddd}}@media (min-width:1000px){#enp-quiz .enp-results--b{padding-left:1rem}}#enp-quiz .enp-results-title--ab,#enp-quiz .enp-results__container--ab .enp-results-flow__container{min-width:100%}#enp-quiz .enp-results--loser .enp-results-flow__item{border:2px solid #bf5700}#enp-quiz .enp-results--loser .enp-results-flow__item--quiz-starts{background:#ffc696}#enp-quiz .enp-results--loser .enp-results-flow__item--quiz-finishes{background:#ffb06d}#enp-quiz .enp-results--loser .enp-results-questions__title,#enp-quiz .enp-results--loser th{color:#964400}#enp-quiz .enp-results--winner .enp-results-questions__title,#enp-quiz .enp-results--winner th{color:#4e9497}#enp-quiz .enp-results-title--a,#enp-quiz .enp-results-title--b{background:transparent}#enp-quiz .enp-ab-scores{max-width:80vw;margin:0 auto}@media (min-width:700px){#enp-quiz .enp-ab-scores{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-ab-scores{max-width:1440px}}#enp-quiz .enp-ab-scores th.enp-quiz-scores-table__label,#enp-quiz .enp-ab-scores th.enp-quiz-scores-table__score{padding-left:0;padding-right:0}#enp-quiz .enp-ab-scores__title{padding-left:50px;font-size:1rem;text-transform:uppercase}#enp-quiz .enp-quiz-score__line-chart .enp-test-loser .ct-line,#enp-quiz .enp-quiz-score__line-chart .enp-test-loser .ct-point{stroke:#bf5700}#enp-quiz .enp-quiz-scores{margin-top:0}#enp-quiz .enp-ab-scores .enp-quiz-scores-table,#enp-quiz .enp-question-results{margin-bottom:1.6rem}@media (min-width:1000px){#enp-quiz .enp-ab-scores .enp-quiz-scores-table,#enp-quiz .enp-question-results{float:left;width:48%;margin:0}#enp-quiz .enp-ab-scores .enp-quiz-scores-table:first-of-type,#enp-quiz .enp-question-results:first-of-type{margin-right:4%}}#enp-quiz .enp-question-results__container{max-width:80vw;margin:0 auto;padding-top:3rem}@media (min-width:700px){#enp-quiz .enp-question-results__container{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-question-results__container{max-width:1440px}}#enp-quiz .enp-question-results--ab .enp-results-questions__section{background:#fff;border:none;padding:1.6rem 0;margin:1.6rem auto}#enp-quiz .enp-question-results--ab .enp-results-questions__container{padding:0}#enp-quiz .enp-ab-new-embed-code__section{max-width:80vw;margin:0 auto;max-width:540px;padding-bottom:2rem;margin-bottom:2rem}#enp-quiz .enp-ab-new-embed-code__section .enp-ab-embed-code{padding:0;margin:0}#enp-quiz .enp-ab-embed-code__section{background:#faf9fb;border-bottom:1px solid #ddd;border-top:1px solid #ddd;padding-top:3rem;padding-bottom:3rem;margin-top:3rem;margin-bottom:3rem;padding-top:5rem;margin-top:5rem}#enp-quiz .enp-ab-embed-code{max-width:80vw;margin:0 auto}#enp-quiz .enp-ab-embed-code__title{font-size:1rem;text-transform:uppercase}#enp-quiz .enp-embed-code__textarea{margin-bottom:0}#enp-quiz .enp-embed-code__instructions{font-size:1.1rem}#enp-quiz .enp-slider{margin-bottom:1.6rem}#enp-quiz .enp-slider-input__container{display:flex;align-items:center;justify-content:center;margin:1.6rem auto;position:relative}#enp-quiz .enp-slider-input__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase}#enp-quiz .enp-slider-input__prefix,#enp-quiz .enp-slider-input__suffix{font-size:1rem}#enp-quiz .enp-slider-input__prefix{margin-right:.2rem;white-space:pre}#enp-quiz .enp-slider-input__suffix{margin-left:.2rem;white-space:pre}#enp-quiz .enp-slider-input__input{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;margin-bottom:0;padding:.75rem;width:auto;transition:all .25s cubic-bezier(0,0,.3,1)}@media (min-width:700px){#enp-quiz .enp-slider-input__input{padding:.8rem;width:100%}}#enp-quiz .enp-slider-input__input--incorrect{color:#bf5700}#enp-quiz .enp-slider-input__input--correct{color:#4e9497}#enp-quiz .enp-slider-input__input--invalid-animation{box-shadow:0 0 2px 1px #c1893e}#enp-quiz .enp-slider_input__range-helper{position:absolute;bottom:-1.2rem;font-size:.8rem}#enp-quiz .enp-slider_input__range-helper--low{left:0}#enp-quiz .enp-slider_input__range-helper--high{right:0}#enp-quiz .enp-slider-input__range-helper__number{position:relative;color:#e8e4ed}#enp-quiz .ui-slider-range-show-correct__tooltip-container{position:relative}#enp-quiz .ui-slider-range-show-correct__tooltip{position:absolute;top:-.4rem;margin-left:-.55rem;height:1rem;width:1.1rem;height:1.1rem;border:2px solid #60aaad;background-color:#fff;border-radius:50%;z-index:9999}#enp-quiz .ui-slider-range-show-correct__tooltip--low{left:0}#enp-quiz .ui-slider-range-show-correct__tooltip--high{right:-.55rem}#enp-quiz .ui-slider-range-show-correct__tooltip__text{position:relative;color:#417d7f;top:-1.35rem;font-size:.825rem;min-width:100%;display:inline-block;text-align:center;text-shadow:0 1px 0 #fff}#enp-quiz .enp-slider{position:relative;text-align:left;background:#ddd}#enp-quiz .enp-slider .ui-helper-hidden{display:none}#enp-quiz .enp-slider .ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}#enp-quiz .enp-slider .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}#enp-quiz .enp-slider .ui-helper-clearfix:after,#enp-quiz .enp-slider .ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}#enp-quiz .enp-slider .ui-helper-clearfix:after{clear:both}#enp-quiz .enp-slider .ui-helper-clearfix{min-height:0}#enp-quiz .enp-slider .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}#enp-quiz .enp-slider .ui-front{z-index:100}#enp-quiz .enp-slider .ui-state-disabled{cursor:default!important}#enp-quiz .enp-slider .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}#enp-quiz .enp-slider .ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}#enp-quiz .enp-slider .ui-slider-handle{background:#fff;border-radius:50%;border:1px solid #aaa;position:absolute;z-index:2;width:1.2rem;height:1.2rem;top:-.4rem;margin-left:-.6rem;cursor:default;touch-action:none;transition:opacity .2s cubic-bezier(0,0,.3,1),height .18s cubic-bezier(0,0,.3,1),width .18s cubic-bezier(0,0,.3,1),transform .18s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-slider .ui-slider-handle:focus{outline:none;box-shadow:0 0 3px 1px #4d90fe}#enp-quiz .enp-slider .ui-slider-handle--correct,#enp-quiz .enp-slider .ui-slider-handle--incorrect{width:1.1rem;height:1.1rem;top:-.4rem;margin-left:-.55rem}#enp-quiz .enp-slider .ui-slider-handle--incorrect{z-index:1;border:2px solid #bf5700}#enp-quiz .enp-slider .ui-slider-handle--correct{border:2px solid #60aaad;z-index:99999}#enp-quiz .enp-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7rem;display:block;border:0;background-position:0 0;top:0;height:100%}#enp-quiz .enp-slider .ui-slider-range-show-correct{background:#60aaad;z-index:9}#enp-quiz .enp-slider .ui-slider-range-min{left:0;background:#00a9b7}#enp-quiz .enp-slider .ui-slider-range-max{right:0}#enp-quiz .enp-slider.ui-state-disabled .ui-slider-handle,#enp-quiz .enp-slider.ui-state-disabled .ui-slider-range{filter:inherit}#enp-quiz .ui-slider-horizontal{height:.3rem}#enp-quiz .enp-question__answered .enp-slider{background:#bbb}#enp-quiz .enp-question__answered .ui-slider-range-min{background:#fff}
+html{font-size:16px!important}html #enp-quiz{box-sizing:border-box}body #enp-quiz{background:#fff;overflow:hidden}#enp-quiz *,#enp-quiz :after,#enp-quiz :before{box-sizing:inherit}#enp-quiz ol,#enp-quiz ul{margin:0 0 1.6rem 1.25rem;padding:0}#enp-quiz textarea{margin-bottom:1rem}#enp-quiz button,#enp-quiz button:active,#enp-quiz button:focus,#enp-quiz button:hover,#enp-quiz iframe,#enp-quiz input[type=button],#enp-quiz input[type=button]:active,#enp-quiz input[type=button]:focus,#enp-quiz input[type=button]:hover,#enp-quiz input[type=reset],#enp-quiz input[type=reset]:active,#enp-quiz input[type=reset]:focus,#enp-quiz input[type=reset]:hover,#enp-quiz input[type=submit],#enp-quiz input[type=submit]:active,#enp-quiz input[type=submit]:focus,#enp-quiz input[type=submit]:hover{border:none}#enp-quiz .enp-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-screen-reader-text:active,#enp-quiz .enp-screen-reader-text:focus,#enp-quiz .enp-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#enp-quiz .enp-accordion-header{background:#fff;width:100%;box-shadow:inset 1px 1px 0 #ccc,inset -1px -1px 0 #ccc;color:#1d1c25;font-family:Arial,monospace,helvetica,arial,sans-serif;font-size:.9rem;font-weight:400;line-height:1.5;text-transform:none;letter-spacing:0;text-align:left;border:none;border-radius:3px;min-height:3.065rem;padding:1rem 2rem 1rem 1rem;margin:1.6rem 0 0;position:relative;z-index:9;cursor:pointer;transition:all .2s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-accordion-header:first-of-type{margin-top:0}#enp-quiz .enp-accordion-header .enp-accordion-header__icon{position:absolute;fill:#e8e4ed;right:.75rem;bottom:.75rem;transition:all .35s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-accordion-header--open .enp-accordion-header__icon{transform:rotateX(180deg)}#enp-quiz .enp-quiz-settings__form .enp-accordion-header{position:relative;overflow-y:hidden}#enp-quiz .enp-accordion-content{background:#fff;width:100%;box-shadow:inset 1px -1px 0 #ccc,inset -1px -1px 0 #ccc;display:block;position:relative;height:auto;overflow:visible;margin-bottom:1.6rem}#enp-quiz .enp-accordion-content--closed{margin-top:0;padding-top:0;animation:d .25s cubic-bezier(0,0,.3,1) forwards;display:none}#enp-quiz .enp-accordion-content--open{padding-top:1.6rem;margin-bottom:2rem;animation:b .45s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-quiz-message{max-width:80vw;margin:0 auto;background:#fff;border:1px solid #eee;border-bottom:1px solid #ccc;padding:1rem;margin-bottom:1.6rem;position:fixed;bottom:0;left:0}#enp-quiz .enp-quiz-message__title{font-size:1rem;text-transform:uppercase}#enp-quiz .enp-message__list{list-style:none;margin-left:0;font-size:1.1rem;margin-bottom:0}#enp-quiz .enp-quiz-message--error{border-left:6px solid #bf5700;color:#bf5700}#enp-quiz .enp-quiz-message__title--error{color:#964400}#enp-quiz .enp-quiz-message--success{border-left:6px solid #60aaad;color:#4e9497}#enp-quiz .enp-quiz-message__title--success{color:#4e9497}#enp-quiz .enp-quiz-message--note{border-left:6px solid #cca562}#enp-quiz .enp-quiz-message__title--note{color:#333f48}#enp-quiz .enp-quiz-message__close{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:5px;right:5px}#enp-quiz .enp-quiz-message--ajax{margin-bottom:.6rem;animation:a .3s}#enp-quiz .enp-quiz-message-ajax-container{z-index:9999;position:fixed;bottom:10px}#enp-quiz .enp-quiz-message--saving__spinner{margin-left:-10px}#enp-quiz .enp-quiz-message--saving__text{font-size:1rem}#enp-quiz input.limited-chars,#enp-quiz textarea.limited-chars{margin-bottom:.2rem}#enp-quiz .limited-chars__container{color:#fdfcfd;font-size:.8rem;display:block;text-align:right;margin-bottom:1.2rem}#enp-quiz .limited-chars__counter{color:#e8e4ed}#enp-quiz .limited-chars__container--error,#enp-quiz .limited-chars__container--error .limited-chars__counter{color:#964400}#enp-quiz input.has-error,#enp-quiz textarea.has-error{border:1px solid #bf5700}#enp-quiz input.has-error:focus,#enp-quiz textarea.has-error:focus{outline-color:#bf5700}#enp-quiz .enp-tooltip{position:relative}#enp-quiz .enp-tooltip__activator:focus+.enp-tooltip__description,#enp-quiz .enp-tooltip__activator:focus>.enp-tooltip__description{display:block}#enp-quiz .enp-tooltip__description{display:none;position:absolute;left:103%;margin-bottom:2rem;border-radius:3px;background:#faf9fb;font-size:.9rem;padding:.9rem;max-width:200px}.enp-sticky{position:relative;left:0;right:0;top:0;z-index:999}.enp-sticky.enp-sticky--fixed{position:fixed}.enp-breadcrumb-link{font-size:.85rem}.enp-breadcrumb-link__icon{position:relative;top:.45rem;left:.4rem}body #enp-quiz{color:#1d1c25;font-family:Arial,monospace,helvetica,arial,sans-serif;font-size:1em;line-height:1.6;font-weight:400}@media (min-width:700px){body #enp-quiz{font-size:1.3em}}#enp-quiz h1,#enp-quiz h2,#enp-quiz h3,#enp-quiz h4,#enp-quiz h5,#enp-quiz h6{font-family:Arial,monospace,helvetica,arial,sans-serif;color:#5d5e5f;clear:both;margin:0 0 .2rem;font-weight:700;line-height:1.2em}#enp-quiz h1{font-size:2em}#enp-quiz h2{font-size:1.75em}#enp-quiz h3{font-size:1.475em}#enp-quiz h4{font-size:1.3em}#enp-quiz h5{font-size:1.125em}#enp-quiz h6{font-size:1em}#enp-quiz p+h1,#enp-quiz p+h2,#enp-quiz p+h3,#enp-quiz p+h4,#enp-quiz p+h5,#enp-quiz p+h6,#enp-quiz ul+h1,#enp-quiz ul+h2,#enp-quiz ul+h3,#enp-quiz ul+h4,#enp-quiz ul+h5,#enp-quiz ul+h6{margin-top:1.8em}#enp-quiz p{font-size:.85em;margin-bottom:1.125em;font-weight:300}#enp-quiz ol,#enp-quiz ul{margin:0 0 1.6em 1.25em}#enp-quiz ul{list-style:disc}#enp-quiz ol{list-style:decimal}#enp-quiz li>ol,#enp-quiz li>ul{margin-bottom:0;margin-left:1.6em}#enp-quiz b,#enp-quiz strong{font-weight:700}#enp-quiz cite,#enp-quiz dfn,#enp-quiz em{font-family:georgia,times,serif;font-style:italic}#enp-quiz pre{background:#eee;font-family:Courier\ 10 Pitch,Courier,monospace;font-size:.95em;line-height:1.6;margin-bottom:1.6em;padding:1.6em;overflow:auto;max-width:100%;overflow:scroll;max-width:68vw;overflow-wrap:break-word}#enp-quiz .code,#enp-quiz code,#enp-quiz kbd,#enp-quiz tt,#enp-quiz var{font:.7em Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}#enp-quiz table{border:none}#enp-quiz table th{font-size:.8rem;text-transform:uppercase;border:none;border-bottom:1px solid #ddd}#enp-quiz table td,#enp-quiz table th{font-family:Arial,monospace,helvetica,arial,sans-serif}#enp-quiz table td{font-size:1rem;border:none;border-bottom:1px solid #eee}#enp-quiz table tr:nth-child(2n) td{background:#fdfcfd}#enp-quiz table tr:last-child td{border-bottom:none}#enp-quiz figure{margin:0}#enp-quiz img{height:auto;max-width:100%}#enp-quiz a{color:#bf5700;text-decoration:none;transition:color .2s;touch-action:manipulation}#enp-quiz a .enp-icon{fill:#bf5700}#enp-quiz a:active,#enp-quiz a:focus,#enp-quiz a:hover{color:#964400}#enp-quiz a:active .enp-icon,#enp-quiz a:focus .enp-icon,#enp-quiz a:hover .enp-icon{fill:#964400}#enp-quiz button:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6}#enp-quiz .enp-btn:focus,#enp-quiz .enp-btn:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-btn:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-btn:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn:disabled,#enp-quiz .enp-btn:disabled:focus,#enp-quiz .enp-btn:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-btn--add{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;width:100%}#enp-quiz .enp-btn--add:focus,#enp-quiz .enp-btn--add:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-btn--add:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-btn--add:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn--add:disabled,#enp-quiz .enp-btn--add:disabled:focus,#enp-quiz .enp-btn--add:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-btn--add:focus,#enp-quiz .enp-btn--add:hover{border:1px dashed #69547e;color:#a897ba;background:hsla(0,0%,100%,.9)}#enp-quiz .enp-btn--disabled{opacity:.65;cursor:default}#enp-quiz .enp-btn--enabled{animation:f .6s}#enp-quiz .enp-icon{width:24px;height:24px;transition:all .2s}#enp-quiz .enp-page-title{font-size:1.6rem}@keyframes a{0%{opacity:0;transform:translate3d(0,100px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes b{0%{opacity:0;height:auto;transform:translate3d(0,-20px,0)}to{opacity:1;height:auto;transform:translateZ(0)}}@keyframes c{0%{opacity:0;height:auto;transform:translate3d(0,-20px,0)}to{opacity:.8;height:auto;transform:translateZ(0)}}@keyframes d{0%{overflow:hidden;height:100px;opacity:1;transform:translateZ(0)}to{height:0;opacity:0;transform:translate3d(0,-20px,0)}}@keyframes e{0%{opacity:1;transform:translateZ(0)}to{padding:0;margin:0;opacity:0;height:0;z-index:-1;transform:translate3d(-200px,0,0)}}@keyframes f{0%{opacity:.8;transform:scaleX(1);box-shadow:0 0 0 rgba(0,0,0,.3)}40%{opacity:1}70%{opacity:1;transform:scale3d(1.1,1.1,1);box-shadow:0 0 8px rgba(0,0,0,.4)}to{opacity:1;transform:scaleX(1);box-shadow:0 0 0 rgba(0,0,0,.3),inset 0 2px 0 rgba(0,0,0,.2)}}@keyframes g{0%{opacity:0}to{opacity:1}}@keyframes h{0%{transform:translate3d(0,-200px,0)}to{transform:translateZ(0)}}.spinner{margin:0 auto;width:70px;text-align:center}.spinner>div{width:18px;height:18px;background-color:#333;border-radius:100%;display:inline-block;animation:i 1.4s infinite ease-in-out both}.spinner .bounce1{animation-delay:-.32s}.spinner .bounce2{animation-delay:-.16s}@keyframes i{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}#enp-quiz{transition:background .25s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-aside{padding:1.6rem;margin-bottom:1.6rem;background:#94a6b3;border-radius:3px;border:1px solid #eee;border-bottom-color:#ccc;max-width:80vw;margin:0 auto;font-size:1.2rem;background:#faf9fb}@media (min-width:700px){#enp-quiz .enp-aside{margin-bottom:2.6rem;padding:1.6rem 2rem}}#enp-quiz .enp-aside__title{font-size:1rem;text-transform:uppercase;font-weight:600}#enp-quiz .enp-page-title{border-bottom:2px solid #00a9b7}#enp-quiz fieldset{border:none;margin:0;padding:0}#enp-quiz .enp-label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase}#enp-quiz .enp-label__sm{font-size:.85rem}#enp-quiz .enp-label.enp-quiz-winlose__label{padding:1rem 0 0}#enp-quiz .enp-legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none;padding-top:0}#enp-quiz .enp-input{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem}@media (min-width:700px){#enp-quiz .enp-input{padding:.8rem;width:100%}}#enp-quiz .enp-input__sm{padding:5px;margin-bottom:5px}#enp-quiz .enp-input.enp-input--has-description{margin-bottom:.2rem}#enp-quiz .enp-input-description,#enp-quiz .enp-textarea-description{margin-bottom:1rem;font-size:.85rem}#enp-quiz .enp-input-description--before,#enp-quiz .enp-textarea-description--before{margin-bottom:0}#enp-quiz .enp-input::-webkit-input-placeholder,#enp-quiz .enp-textarea::-webkit-input-placeholder{font-family:Arial,monospace,helvetica,arial,sans-serif;font-weight:300;color:#7a7697}#enp-quiz .enp-input:-ms-input-placeholder,#enp-quiz .enp-input::-ms-input-placeholder,#enp-quiz .enp-textarea:-ms-input-placeholder,#enp-quiz .enp-textarea::-ms-input-placeholder{font-family:Arial,monospace,helvetica,arial,sans-serif;font-weight:300;color:#7a7697}#enp-quiz .enp-input::placeholder,#enp-quiz .enp-textarea::placeholder{font-family:Arial,monospace,helvetica,arial,sans-serif;font-weight:300;color:#7a7697}#enp-quiz .enp-textarea{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;line-height:1.5}@media (min-width:700px){#enp-quiz .enp-textarea{padding:.8rem;width:100%}}#enp-quiz .enp-textarea:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-textarea.enp-textarea--has-description{margin-bottom:.2rem}#enp-quiz .enp-textarea.enp-textarea--has-description--before{margin-bottom:1.2rem}#enp-quiz .enp-embed-code{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;line-height:1.5;padding:1.6rem;font-size:.7rem;font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}@media (min-width:700px){#enp-quiz .enp-embed-code{padding:.8rem;width:100%}}#enp-quiz .enp-embed-code:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-preview-page-container,#enp-quiz .enp-publish-page-container,#enp-quiz .enp-quiz-form-container{display:grid;grid-column:2/-1;gap:1rem;width:100%;justify-items:center}@media (min-width:700px){#enp-quiz .enp-preview-page-container,#enp-quiz .enp-publish-page-container,#enp-quiz .enp-quiz-form-container{justify-items:start}}#enp-quiz .enp-quiz-form{display:grid;padding-left:0;padding-right:0}@media (min-width:1000px){#enp-quiz .enp-quiz-form{width:100%;max-width:40rem}}#enp-quiz .enp-preview-page-flex-container{display:grid;gap:1rem}@media (min-width:700px){#enp-quiz .enp-preview-page-flex-container{grid-template-columns:1fr 3fr}}#enp-quiz .enp-quiz-title__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-quiz-title__textarea{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;font-weight:700;font-size:1.6rem;margin-bottom:1rem}@media (min-width:700px){#enp-quiz .enp-quiz-title__textarea{padding:.8rem;width:100%}}#enp-quiz .enp-quiz-title__textarea::-webkit-input-placeholder{font-weight:700}#enp-quiz .enp-quiz-title__textarea:-ms-input-placeholder,#enp-quiz .enp-quiz-title__textarea::-ms-input-placeholder{font-weight:700}#enp-quiz .enp-quiz-title__textarea::placeholder{font-weight:700}#enp-quiz textarea{color:#000}#enp-quiz .enp-accordion-container{margin-bottom:1.6rem;position:relative}#enp-quiz .enp-question-content{background:#fff;width:100%;padding-top:0;position:relative}#enp-quiz .enp-question-inner{padding:1.6rem 1.6rem 1rem}@media (min-width:700px){#enp-quiz .enp-question-inner{padding-right:2.8rem;padding-left:2.9rem}}#enp-quiz .enp-question-title__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-question-title__textarea{font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;padding:1rem 1.2rem;font-size:1rem}@media (min-width:700px){#enp-quiz .enp-question-title__textarea{padding:.8rem;width:100%}}#enp-quiz .enp-question-image-upload{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;font-size:1rem;text-transform:uppercase;position:relative;margin-bottom:2rem;transform:translateZ(0);transition:all .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-question-image-upload:focus,#enp-quiz .enp-question-image-upload:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-question-image-upload:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-question-image-upload:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-question-image-upload:disabled,#enp-quiz .enp-question-image-upload:disabled:focus,#enp-quiz .enp-question-image-upload:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-question-image-upload:focus,#enp-quiz .enp-question-image-upload:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}#enp-quiz .enp-question-image-upload .enp-question-image-upload__icon--photo{width:2.8rem;height:2.8rem;opacity:0;position:absolute;top:0;left:0;right:0;margin:0 auto;transform:translateZ(0);z-index:-1;transition:opacity .2s,transform .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-question-image-upload .enp-question-image-upload__icon--add{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;background:#e8e4ed;fill:#faf9fb;margin-right:5px;position:relative;top:.2rem}#enp-quiz .enp-question-image-upload:active,#enp-quiz .enp-question-image-upload:focus,#enp-quiz .enp-question-image-upload:hover{padding-top:5rem;padding-bottom:2rem}#enp-quiz .enp-question-image-upload:active .enp-question-image-upload__icon--photo,#enp-quiz .enp-question-image-upload:focus .enp-question-image-upload__icon--photo,#enp-quiz .enp-question-image-upload:hover .enp-question-image-upload__icon--photo{opacity:1;z-index:1;transform:translate3d(0,1.75rem,0)}#enp-quiz .enp-question-image-upload:active .enp-question-image-upload__icon--add,#enp-quiz .enp-question-image-upload:focus .enp-question-image-upload__icon--add,#enp-quiz .enp-question-image-upload:hover .enp-question-image-upload__icon--add{fill:#fff;background:#a897ba}#enp-quiz .enp-question-image__container{position:relative;margin-bottom:1rem}#enp-quiz .enp-question-image{margin-bottom:1.2rem}#enp-quiz .enp-question-type__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none}#enp-quiz .enp-question-type__input{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-question-type__label{text-transform:capitalize;display:inline-block;padding:.2rem .5rem;border-radius:3px;cursor:pointer}#enp-quiz .enp-question-type__input:checked+.enp-question-type__label{background:#00a9b7;color:#fff;text-shadow:0 0 1px rgba(0,0,0,.7)}#enp-quiz .enp-question-type__input:focus+.enp-question-type__label{z-index:8;outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-question-type__label{position:relative;z-index:9}#enp-quiz .enp-mc-options,#enp-quiz .enp-slider-options{margin-top:0;display:none;animation:d .25s cubic-bezier(0,0,.3,1) forwards;animation-delay:0s,.05s}#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options,#enp-quiz .enp-question-type__input--slider:checked~.enp-slider-options{visibility:visible;display:block;animation:g .45s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-mc-options__list{list-style:none;margin-left:0}#enp-quiz .enp-mc-option{position:relative;padding-left:6px}@media (min-width:700px){#enp-quiz .enp-mc-option{padding-left:0}}#enp-quiz .enp-mc-options__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-mc-option__add,#enp-quiz .enp-mc-option__button--correct,#enp-quiz .enp-mc-option__button--delete{display:none}#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options .enp-mc-option__add,#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options .enp-mc-option__button--correct,#enp-quiz .enp-question-type__input--mc:checked~.enp-mc-options .enp-mc-option__button--delete{display:block}#enp-quiz .enp-button__question-image-delete,#enp-quiz .enp-mc-option__button--delete{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:9px;right:-24px;fill:#bbb;cursor:pointer}@media (min-width:700px){#enp-quiz .enp-button__question-image-delete,#enp-quiz .enp-mc-option__button--delete{right:-30px}}#enp-quiz .enp-button__question-image-delete:focus,#enp-quiz .enp-button__question-image-delete:hover,#enp-quiz .enp-mc-option__button--delete:focus,#enp-quiz .enp-mc-option__button--delete:hover{fill:#bf5700}#enp-quiz .enp-mc-option__button--correct{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:8px;left:-24px}@media (min-width:700px){#enp-quiz .enp-mc-option__button--correct{left:-35px}}#enp-quiz .enp-mc-option__button--correct .enp-mc-option__icon--correct{border-radius:50%;padding:.05em;width:28px;height:28px;fill:#fff;background:#fff;cursor:pointer;border:2px solid #c1893e;transition:all .2s}@media (min-width:700px){#enp-quiz .enp-mc-option__button--correct .enp-mc-option__icon--correct{padding:.15em}}#enp-quiz .enp-mc-option__button--correct:focus .enp-mc-option__icon--correct,#enp-quiz .enp-mc-option__button--correct:hover .enp-mc-option__icon--correct{background:#fff;border-color:#60aaad;fill:#60aaad}#enp-quiz .enp-mc-option__button--correct:disabled{opacity:1}#enp-quiz .enp-mc-option__button--correct:disabled .enp-mc-option__icon--correct{cursor:default;fill:#fff;border:2px solid transparent}#enp-quiz .enp-mc-option--correct .enp-mc-option__input{box-shadow:inset 0 0 3px #00a9b7;border:1px solid #00a9b7}#enp-quiz .enp-mc-option--correct .enp-mc-option__button--correct:focus .enp-mc-option__icon--correct,#enp-quiz .enp-mc-option--correct .enp-mc-option__button--correct:hover .enp-mc-option__icon--correct,#enp-quiz .enp-mc-option--correct .enp-mc-option__icon--correct{fill:#fff;border-color:#00a9b7;background:#00a9b7}#enp-quiz .enp-mc-option__add{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;font-size:1rem;text-transform:uppercase;text-align:left;padding:.7rem .75rem .8rem}#enp-quiz .enp-mc-option__add:focus,#enp-quiz .enp-mc-option__add:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-mc-option__add:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-mc-option__add:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-mc-option__add:disabled,#enp-quiz .enp-mc-option__add:disabled:focus,#enp-quiz .enp-mc-option__add:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-mc-option__add:focus,#enp-quiz .enp-mc-option__add:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}#enp-quiz .enp-mc-option__add .enp-mc-option__add__icon{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;margin-right:5px;background:#e8e4ed;fill:#faf9fb;position:relative;top:.2rem}#enp-quiz .enp-mc-option__add:hover .enp-mc-option__add__icon{fill:#fff;background:#a897ba}#enp-quiz .enp-slider-options .enp-input{max-width:11.8rem}#enp-quiz .enp-slider-correct__container .enp-input,#enp-quiz .enp-slider-range__container .enp-input{max-width:8.8rem}@media (min-width:400px){#enp-quiz .enp-slider-correct__container .enp-input,#enp-quiz .enp-slider-range__container .enp-input{max-width:11.8rem}}#enp-quiz .enp-slider-preview{border:1px solid #ddd;margin-top:.2rem;margin-bottom:1.6rem;padding:1.6rem 1.6rem .6rem;position:relative}#enp-quiz .enp-slider-preview .enp-label--slider-preview{position:absolute;width:100%;top:.2rem;left:.4rem;font-size:.75rem;text-transform:uppercase}#enp-quiz .enp-slider-correct__container,#enp-quiz .enp-slider-range__container{display:flex;justify-content:space-between;align-items:center}#enp-quiz .enp-slider-correct__helper,#enp-quiz .enp-slider-range__helper{color:#777;font-size:.85rem;background:#fff;padding:0 .3rem;position:relative}#enp-quiz .enp-slider-correct__helper:before,#enp-quiz .enp-slider-range__helper:before{content:"";position:absolute;top:44%;height:4px;background:#ddd;width:120px;left:-60px;z-index:-1;transition:width .7s cubic-bezier(0,0,.3,1),background 1.6s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-slider-options{margin-bottom:2rem}#enp-quiz .enp-slider-options .enp-accordion-header{text-transform:uppercase;font-size:.85rem;padding:.675rem}#enp-quiz .enp-slider-options .enp-slider-advanced-options__content{border:none;box-shadow:none;padding-top:1rem;padding-bottom:0;margin-bottom:0}#enp-quiz .enp-slider-correct-high__container{position:relative}#enp-quiz .enp-slider-correct-high__input-container--hidden{display:none}#enp-quiz .enp-slider-correct__helper--hidden:before{width:0;background:#60aaad}#enp-quiz .enp-slider-correct-answer-range--add-range{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;margin-left:.8rem;font-size:.7rem}#enp-quiz .enp-slider-correct-answer-range--add-range:focus,#enp-quiz .enp-slider-correct-answer-range--add-range:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-slider-correct-answer-range--add-range:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-slider-correct-answer-range--add-range:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-slider-correct-answer-range--add-range:disabled,#enp-quiz .enp-slider-correct-answer-range--add-range:disabled:focus,#enp-quiz .enp-slider-correct-answer-range--add-range:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-slider-correct-answer-range--add-range:focus,#enp-quiz .enp-slider-correct-answer-range--add-range:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}@media (min-width:400px){#enp-quiz .enp-slider-correct-answer-range--add-range{font-size:.8rem;padding:.7rem}}@media (min-width:700px){#enp-quiz .enp-slider-correct-answer-range--add-range{padding:.7rem 1.2rem;min-width:11.4rem}}#enp-quiz .enp-slider-correct-answer-range--add-range .enp-slider-correct-answer-range__icon{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;margin-right:5px;background:#e8e4ed;fill:#faf9fb;position:relative;left:-.2rem}#enp-quiz .enp-slider-correct-answer-range--add-range:hover .enp-slider-correct-answer-range__icon{fill:#fff;background:#a897ba}#enp-quiz .enp-slider-correct-answer-range--remove-range{position:absolute;right:-1.6rem;bottom:1.6rem;background:none;border:none;box-shadow:none;padding:0 .1rem}#enp-quiz .enp-slider-correct-answer-range--remove-range .enp-slider-correct-answer-range__icon{width:1.2em;height:1.2em;fill:#e8e4ed}#enp-quiz .enp-slider-correct-answer-range--remove-range:focus .enp-slider-correct-answer-range__icon,#enp-quiz .enp-slider-correct-answer-range--remove-range:hover .enp-slider-correct-answer-range__icon{fill:#bf5700}@media (min-width:700px){#enp-quiz .enp-slider-correct-answer-range--remove-range{top:-.2rem;right:-.2rem;bottom:auto}}#enp-quiz .enp-slider-options .enp-input:-moz-read-only{background:#faf9fb}#enp-quiz .enp-slider-options .enp-input:read-only{background:#faf9fb}#enp-quiz .enp-answer-explanation{background:#faf9fb;padding-top:2rem;box-shadow:inset 1px 0 0 #ccc,inset -1px -1px 0 #ccc,inset 0 1px 0 #ddd}#enp-quiz .enp-answer-explanation__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-question__button--delete{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:9px;right:9px;fill:#bbb;cursor:pointer}@media (min-width:700px){#enp-quiz .enp-question__button--delete{right:-30px}}#enp-quiz .enp-question__button--delete:hover{fill:#bf5700}#enp-quiz .enp-question__move{position:absolute;left:15px}@media (min-width:700px){#enp-quiz .enp-question__move{left:-40px}}#enp-quiz .enp-sort__placeholder{background:#ddd;height:60px;width:100%;max-height:120px;margin-bottom:1.6rem}#enp-quiz .ui-sortable .ui-sortable-helper .ui-sortable-handle{cursor:move;cursor:grabbing;cursor:-webkit-grabbing}#enp-quiz .enp-question__button--move{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;fill:#bbb;cursor:pointer}#enp-quiz .enp-question__button--move:focus,#enp-quiz .enp-question__button--move:hover{fill:#333}#enp-quiz .enp-question__button--move:disabled{opacity:.5}#enp-quiz .enp-question__button--move--up{top:-25px;left:-4px}#enp-quiz .enp-question__button--move--down{top:3px;right:-20px}#enp-quiz .enp-quiz-form__add-question{padding:.75em .8em .7em 1.4em;text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;padding-top:1rem;padding-bottom:1rem;margin-top:1.6rem;margin-bottom:2rem}#enp-quiz .enp-quiz-form__add-question:focus,#enp-quiz .enp-quiz-form__add-question:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-form__add-question:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-form__add-question:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-form__add-question:disabled,#enp-quiz .enp-quiz-form__add-question:disabled:focus,#enp-quiz .enp-quiz-form__add-question:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-form__add-question:focus,#enp-quiz .enp-quiz-form__add-question:hover{border:1px dashed #69547e;color:#a897ba;background:hsla(0,0%,100%,.9)}#enp-quiz .enp-quiz-form__add-question .enp-add-question__icon{width:1rem;height:1rem;border-radius:50%;fill:#fff;padding:.02rem;margin-right:5px;width:1.2rem;height:1.2rem;background:#e8e4ed;fill:#faf9fb;position:relative;top:.2rem}#enp-quiz .enp-quiz-form__add-question:hover .enp-add-question__icon{fill:#fff;background:#a897ba}#enp-quiz .enp-btn--save__btns{display:flex;align-items:center;align-items:flex-start}#enp-quiz .enp-quiz-form__save{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;width:100%;margin-bottom:1rem;opacity:.8;text-shadow:0 -1px 2px rgba(0,0,0,.6)}#enp-quiz .enp-quiz-form__save:focus,#enp-quiz .enp-quiz-form__save:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-form__save:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-form__save:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-form__save:disabled,#enp-quiz .enp-quiz-form__save:disabled:focus,#enp-quiz .enp-quiz-form__save:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-form__save:focus,#enp-quiz .enp-quiz-form__save:hover{opacity:1}@media (min-width:400px){#enp-quiz .enp-quiz-form__save{padding:1.2rem 1.8rem 1.1rem;margin-right:3%;position:relative}}#enp-quiz .enp-quiz-form__save--reveal{animation:c .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-btn--next-step{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;padding:.65em 1.2em .85em 1.4em}#enp-quiz .enp-btn--next-step:focus,#enp-quiz .enp-btn--next-step:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-btn--next-step:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-btn--next-step:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-btn--next-step:disabled,#enp-quiz .enp-btn--next-step:disabled:focus,#enp-quiz .enp-btn--next-step:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-btn--next-step__icon{border-radius:50%;fill:#fff;background:#fff;fill:#bf5700;width:1.2rem;height:1.2rem;margin-left:.5em;position:relative;top:.15rem}#enp-quiz .enp-btn--next-step__icon:hover{background:#fff;fill:#964400}#enp-quiz .enp-btn--next-step{width:100%;padding:1rem 1.4rem}@media (min-width:700px){#enp-quiz .enp-btn--next-step{padding:1.2rem 1.8rem 1.1rem}}#enp-quiz .enp-btn--next-step .enp-btn--next-step__icon{width:1rem;height:1rem}#enp-quiz .enp-btn--next-step--reveal{animation:b .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-accordion-header--inserting,#enp-quiz .enp-mc-option--inputs{animation:a .4s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-mc-option--remove,#enp-quiz .enp-question--remove,#enp-quiz .enp-question__image--remove{animation:e .5s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-image-upload-wait{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;background:#faf9fb;padding-top:4rem;padding-bottom:4rem;margin-bottom:1rem;width:100%}#enp-quiz .enp-image-upload-wait:focus,#enp-quiz .enp-image-upload-wait:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-image-upload-wait:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-image-upload-wait:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-image-upload-wait:disabled,#enp-quiz .enp-image-upload-wait:disabled:focus,#enp-quiz .enp-image-upload-wait:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-image-upload-wait:focus,#enp-quiz .enp-image-upload-wait:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}#enp-quiz .enp-accordion-header.question-has-error{color:#bf5700;box-shadow:0 0 3px #bf5700}.enp-quiz.ui-sortable--sorting #enp-quiz .enp-accordion-content{display:none}#enp-quiz .enp-quiz-settings__title,#enp-quiz .enp-quiz-share__legend{position:relative;font-size:1rem;text-transform:uppercase;font-weight:600;padding-top:0}@media (min-width:700px){#enp-quiz .enp-quiz-settings__title,#enp-quiz .enp-quiz-share__legend{padding:1em 0}}#enp-quiz .enp-quiz-settings__form{margin-bottom:3rem;overflow:visible}@media (min-width:1000px){#enp-quiz .enp-quiz-settings__form{padding:0;margin-bottom:0}}@media (min-width:700px){#enp-quiz .enp-fieldset{position:relative}}#enp-quiz .enp-title-display__legend{padding-top:0}@media (min-width:700px){#enp-quiz .enp-title-display__legend{padding-top:.4rem}}#enp-quiz .enp-quiz-share__input,#enp-quiz .enp-quiz-styles__input{width:100%}#enp-quiz .enp-quiz-styles__textarea--custom-css{font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace;font-size:.9rem;min-height:200px}#enp-quiz .enp-fieldset--section{padding:1.6rem 1rem}@media (min-width:1000px){#enp-quiz .enp-fieldset--section{padding:1rem}}#enp-quiz .enp-fieldset--section.enp-accordion-content--open{margin-bottom:0}#enp-quiz .enp-quiz-share--facebook{margin-bottom:2rem}#enp-quiz .enp-title-display__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none}#enp-quiz .enp-title-display__input{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-title-display__label{text-transform:capitalize;display:inline-block;padding:.2rem .5rem;border-radius:3px;cursor:pointer}#enp-quiz .enp-title-display__input:checked+.enp-title-display__label{background:#00a9b7;color:#fff;text-shadow:0 0 1px rgba(0,0,0,.7)}#enp-quiz .enp-title-display__input:focus+.enp-title-display__label{z-index:8;outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-mc-options-order__legend{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;padding-top:1.6rem;margin-bottom:.2rem;border:none}#enp-quiz .enp-mc-options-order__input{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-mc-options-order__label{text-transform:capitalize;display:inline-block;padding:.2rem .5rem;border-radius:3px;cursor:pointer}#enp-quiz .enp-mc-options-order__input:checked+.enp-mc-options-order__label{background:#00a9b7;color:#fff;text-shadow:0 0 1px rgba(0,0,0,.7)}#enp-quiz .enp-mc-options-order__input:focus+.enp-mc-options-order__label{z-index:8;outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-mc-options-order{margin-bottom:1.6rem}#enp-quiz .enp-quiz-share__textarea{min-height:7.6rem;margin-bottom:2rem}@media (min-width:700px){#enp-quiz .enp-quiz-share__textarea{min-height:4.6rem}}@media (min-width:1000px){#enp-quiz .enp-quiz-share__textarea{min-height:7.6rem}}#enp-quiz .enp-preview-form__submit{margin-top:1.6rem;margin-bottom:1.6rem}#enp-quiz .enp-quiz-preview__title{font-size:1rem;text-transform:uppercase;font-weight:600}@media (min-width:700px){#enp-quiz .enp-quiz-preview__title{padding:1em 0}}#enp-quiz .enp-preview-form__submit{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;width:100%;padding-top:.85rem;padding-bottom:.85rem;margin-bottom:1rem;opacity:.8;text-shadow:0 -1px 2px rgba(0,0,0,.6)}#enp-quiz .enp-preview-form__submit:focus,#enp-quiz .enp-preview-form__submit:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-preview-form__submit:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-preview-form__submit:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-preview-form__submit:disabled,#enp-quiz .enp-preview-form__submit:disabled:focus,#enp-quiz .enp-preview-form__submit:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-preview-form__submit:focus,#enp-quiz .enp-preview-form__submit:hover{opacity:1}#enp-quiz .enp-preview-form__submit--publish{width:100%;position:relative;z-index:99999999;padding:1.05rem 1.8rem .95rem}#enp-quiz .enp-quiz-styles__iris-wrapper{position:relative}#enp-quiz .iris-picker{box-sizing:content-box;position:relative;z-index:9999999999;top:-1.2rem;margin-bottom:1rem;padding-bottom:3rem;padding-right:30px}@media (min-width:1000px){#enp-quiz .iris-picker{position:absolute;top:50px;left:0}}#enp-quiz .iris-picker:last-of-type{margin-bottom:0}#enp-quiz .iris-picker .ui-draggable-handle:focus .ui-slider-handle,#enp-quiz .iris-picker .ui-slider-handle:focus{box-shadow:0 0 3px rgba(0,0,0,.75)}#enp-quiz .enp-quiz-styles__set-default{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:2px solid #bf5700;background:transparent;color:#bf5700;box-shadow:none;font-size:.75rem;position:absolute;left:10px;bottom:10px}#enp-quiz .enp-quiz-styles__set-default:focus,#enp-quiz .enp-quiz-styles__set-default:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-styles__set-default:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-styles__set-default:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-styles__set-default:disabled,#enp-quiz .enp-quiz-styles__set-default:disabled:focus,#enp-quiz .enp-quiz-styles__set-default:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-styles__set-default:focus,#enp-quiz .enp-quiz-styles__set-default:hover{background:transparent;border:2px solid #964400;color:#964400}#enp-quiz .enp-iris__close{border:none;background:none;box-shadow:none;padding:0;margin:0;position:absolute;top:5px;right:5px;fill:#888;cursor:pointer}#enp-quiz .enp-quiz-styles__input--color{padding-left:45px}#enp-quiz .enp-quiz-styles__color-demo{width:30px;height:30px;border:1px solid #ccc;top:8px;left:8px;border-radius:3px;position:absolute}@media (min-width:700px){#enp-quiz .enp-share-quiz__container{padding:0;border:none}}#enp-quiz .enp-share-quiz__url{display:block;font-size:1rem;line-height:1.4;word-wrap:break-word}#enp-quiz .enp-share-quiz{list-style:none;margin-left:0;display:flex;justify-content:center;align-content:center;align-items:center}#enp-quiz .enp-share-quiz__item{margin-right:20px}#enp-quiz .enp-share-quiz__item:last-child{margin-right:0}#enp-quiz .enp-share-quiz__item__icon{width:2.4rem;height:2.4rem;border-radius:50%;fill:#fff;padding:.6rem;fill:#fff!important}#enp-quiz .enp-share-quiz__item__icon--facebook{background-color:#3a5795}#enp-quiz .enp-share-quiz__item__icon--twitter{background-color:#4099ff}#enp-quiz .enp-share-quiz{justify-content:space-around;margin-bottom:0}#enp-quiz .enp-share-quiz .enp-icon--mail{background:#00a9b7}#enp-quiz .enp-ab-create__container{max-width:80vw;margin:0 auto;width:100%;background:#fdfcfd;padding-top:3rem;padding-bottom:3rem}@media (min-width:700px){#enp-quiz .enp-ab-create__container{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-ab-create__container{max-width:1440px;padding-top:0}}#enp-quiz .enp-ab-create__form{max-width:80vw;margin:0 auto}@media (min-width:1000px){#enp-quiz .enp-ab-create__form{max-width:80vw;margin:0 auto;margin:unset}}#enp-quiz .enp-ab-create__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase;font-weight:500}#enp-quiz .enp-ab-create-title__textarea{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;font-weight:700;font-size:1.6rem;margin-bottom:1rem;width:100%}@media (min-width:700px){#enp-quiz .enp-ab-create-title__textarea{padding:.8rem;width:100%}}#enp-quiz .enp-ab-create-title__textarea::-webkit-input-placeholder{font-weight:700}#enp-quiz .enp-ab-create-title__textarea:-ms-input-placeholder,#enp-quiz .enp-ab-create-title__textarea::-ms-input-placeholder{font-weight:700}#enp-quiz .enp-ab-create-title__textarea::placeholder{font-weight:700}#enp-quiz .enp-ab-create__select{width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:.85rem;padding:.7rem 32px .7rem .8rem;border:1px solid #bbb;border-radius:3px;margin-bottom:1.6rem;background:url(../svg/chevron-down.svg) 100% 50% no-repeat;background-color:#fff;box-shadow:inset -26px 0 0 rgba(0,0,0,.1)}#enp-quiz .enp-ab-create__submit{width:100%;padding-top:1em;padding-bottom:1em}#headerimg h1{text-align:center;font-size:40px!important}#enp-quiz.enp-quiz__main{max-width:80vw;margin:0 auto;display:grid;gap:1em;min-height:85vh}@media (min-width:1000px){#enp-quiz.enp-quiz__main{max-width:80vw;margin:0 auto;grid-template-columns:1fr 4fr}}@media (min-width:1000px) and (min-width:700px){#enp-quiz.enp-quiz__main{max-width:1000px}}@media (min-width:1000px) and (min-width:1000px){#enp-quiz.enp-quiz__main{max-width:1440px}}#enp-quiz .enp-dash-container{padding:2rem;transition:all .25s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash__section-aside{background-color:#faf9fb}@media (min-width:700px){#enp-quiz .enp-dash__section-aside{padding:2rem}}#enp-quiz .enp-breadcrumb-link__container{padding-bottom:2rem}#enp-quiz .enp-search-quizzes{display:flex;justify-content:space-between;flex-wrap:wrap;padding:1em}@media (min-width:700px){#enp-quiz .enp-search-quizzes{padding:.2rem 0;flex-wrap:nowrap}}@media (min-width:1000px){#enp-quiz .enp-search-quizzes{display:flex;justify-content:space-between;flex-direction:column}}#enp-quiz .enp-search-quizzes__form-item{margin-bottom:.6rem;flex:0 1 48%}@media (min-width:400px){#enp-quiz .enp-search-quizzes__form-item{margin-bottom:0;margin-right:1rem;flex:1 0 auto}}#enp-quiz .enp-quiz-search{flex:1 0 100%;position:relative}@media (min-width:700px){#enp-quiz .enp-quiz-search{flex:1 0 auto}}#enp-quiz .enp-search-quizzes__label{margin-bottom:0;clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-search-quizzes__select{padding:.3rem;border-radius:3px;width:100%}@media (min-width:1000px){#enp-quiz .enp-search-quizzes__select{min-width:200px;font-size:.85rem}}#enp-quiz .enp-quiz-search__input{width:100%;margin:0 0 .1rem;padding:.3rem .3rem .3rem 26px;font-size:.85rem}#enp-quiz .enp-quiz-search__icon{position:absolute;bottom:.3rem;left:.2rem;width:21px;height:21px}#enp-quiz .enp-search-quizzes__button{padding:.2rem .8rem}#enp-quiz .enp-search-results-description{font-size:.85rem}#enp-quiz .enp-search-results-description__link{white-space:nowrap}#enp-quiz .enp-search-results-description__icon{width:1.3em;height:1.3em;position:relative;top:4px;left:2px}#enp-quiz .enp-dash__section-title{font-size:1rem;text-transform:uppercase;margin-bottom:.325rem;border-bottom:1px solid #e8e4ed}@media (min-width:700px){#enp-quiz .enp-dash__section-title{padding:1em 0}}#enp-quiz .enp-dash__ab-test-helper--not-enough-quizzes{color:#a897ba}#enp-quiz .enp-view-toggle{cursor:pointer;opacity:.5;display:none}@media (min-width:700px){#enp-quiz .enp-view-toggle{display:flex}}#enp-quiz .enp-view-toggle__active{opacity:1}#enp-quiz .enp-sort-by{margin-left:5px}#enp-quiz .enp-dash-list{display:flex;flex-flow:column wrap;align-items:stretch;list-style:none;margin-left:0}#enp-quiz .enp-dash-item{flex-basis:100%;padding:1rem 1.2rem;background-color:#f5f3f7;border:1px solid #eee;border-bottom:1px solid #ddd;list-style:none;transition:all .35s cubic-bezier(0,0,.3,1);margin:0 0 .8rem;justify-content:space-between;display:flex;z-index:1;flex-direction:column;align-content:flex-end;justify-content:flex-end;border:none;border-radius:3px}#enp-quiz .enp-dash-item--published{box-shadow:inset 4px 0 0 #00a9b7,0 1px 0 rgba(0,0,0,.1)}#enp-quiz .enp-dash-item--draft{box-shadow:inset 4px 0 0 #94a6b3,0 1px 0 rgba(0,0,0,.1)}#enp-quiz .enp-dash-item--draft .enp-dash-item__title a{color:#333f48}#enp-quiz .enp-dash-item--remove{animation:e .5s cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-dash-list--list-view .enp-dash-item{margin:0 0 .8rem;flex-basis:100%}#enp-quiz .enp-dash-item__spinner{display:flex;justify-content:center;align-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,59%,90%,.8);width:100%;animation:g .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item__header{padding:.5rem 1rem;background:#faf9fb;border-bottom:1px solid #e8e4ed;display:flex;justify-content:space-between;align-items:center;border-radius:3px}#enp-quiz .enp-dash-item__title{font-size:1rem;padding-bottom:.5rem;padding:0;margin-bottom:0}#enp-quiz .enp-dash-item__title a{color:#00a9b7}#enp-quiz .enp-dash-item__content{padding:0 0 .375rem;position:relative;transition:all .2s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item__meta{font-size:.7rem;font-weight:300;color:#a897ba;font-size:.75rem}#enp-quiz .enp-dash-item__username{word-wrap:break-word;padding-left:.4rem;margin-left:.2rem;border-left:1px solid #ddd}#enp-quiz .enp-dash-item__title--ab-test{padding-bottom:0}#enp-quiz .enp-dash-item__ab-quizzes{list-style:none;margin-left:0;font-size:.75rem;color:#a897ba;margin-bottom:.8rem}#enp-quiz .enp-dash-item__nav{list-style:none;margin-left:0;margin-bottom:0;font-size:.85rem}#enp-quiz .enp-dash-item__nav__item{display:flex;margin:0;width:100%;align-items:center}#enp-quiz .enp-dash-item__nav__item:hover{background-color:#f5f3f7}#enp-quiz .enp-dash-item__nav__item:hover .enp-dash-item__icon{fill:#bf5700}#enp-quiz .enp-dash-item__nav__item a{font-weight:400;color:#a897ba;display:flex;align-items:center;width:100%;padding:12px}#enp-quiz .enp-dash-item__nav__item a:focus,#enp-quiz .enp-dash-item__nav__item a:hover{color:#bf5700;outline:1px dotted #bf5700;outline-offset:1px}#enp-quiz .enp-dash-item__nav__item a:focus .enp-dash-item__icon,#enp-quiz .enp-dash-item__nav__item a:hover .enp-dash-item__icon{fill:#bf5700}#enp-quiz .enp-delete-quiz{width:100%}#enp-quiz .enp-delete-quiz:hover .enp-dash-item__delete{color:#bf5700}#enp-quiz .enp-delete-quiz:hover .enp-icon{fill:#bf5700}#enp-quiz .enp-dash-item__delete{border:none;background:none;box-shadow:none;padding:0;margin:0;display:flex;padding:12px;align-items:center;position:relative;line-height:1.6;color:#a897ba;cursor:pointer;width:100%;font-size:.85rem}#enp-quiz .enp-dash-item__delete .enp-icon{fill:#a897ba}#enp-quiz .enp-dash-item__icon{fill:#a897ba;width:15px;height:15px;margin-right:10px}#enp-quiz .enp-dash-item__nav--collapsible{display:none;position:absolute;z-index:2;top:44px;right:-17px;width:195px;background-color:#fff;text-align:left;transform:translateZ(0);transition:all .2s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item__nav--collapsible .enp-dash-item__nav__item{cursor:pointer}#enp-quiz .enp-dash-item__menu-action{height:24px;background:none;border:none;color:#444;padding:0;bottom:.2rem;right:1.5rem;top:1.5rem;cursor:pointer}#enp-quiz .enp-dash-item__menu-action-wrap{max-width:0;display:flex;flex-direction:column;align-items:flex-end}#enp-quiz .enp-dash-item__menu-action__icon{width:15px;height:15px;fill:#a897ba;transition:all .3s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-dash-item--menu-active{transform:translate3d(0,-3px,0);z-index:2}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__nav-wrap{position:relative}#enp-quiz .enp-dash-item--menu-active.enp-dash-item--published{box-shadow:inset 4px 0 0 #60aaad,0 2px 2px rgba(0,0,0,.2)}#enp-quiz .enp-dash-item--menu-active.enp-dash-item--draft{box-shadow:inset 4px 0 0 #b4d7d8,0 2px 2px rgba(0,0,0,.2)}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__menu-action__icon--bottom{transform:rotateX(180deg)}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__nav--collapsible{display:block;animation:b .25s cubic-bezier(0,0,.3,1) forwards;border-radius:3px;box-shadow:0 2px 2px rgba(0,0,0,.2)}#enp-quiz .enp-dash-item--menu-active .enp-dash-item__content{opacity:.4}#enp-quiz .enp-quiz-results{display:flex;justify-content:space-around;list-style:none;margin:.8rem 0 0;padding:0;text-align:center}#enp-quiz .enp-quiz-results__item{margin:0 2% 0 0;padding:0;color:#5d5e5f}@media (max-width:280px){#enp-quiz .enp-quiz-results__item{width:100%;padding:0;margin-bottom:.6rem}}#enp-quiz .enp-quiz-results__number{font-size:1.6rem;line-height:1;position:relative}#enp-quiz .enp-dash-item--draft .enp-quiz-results__number{opacity:.5}#enp-quiz .enp-quiz-results__number--average-score{color:#4e9497}#enp-quiz .enp-quiz-results__number--average-score:after{content:"%";font-size:.9rem;position:absolute;top:.3rem;right:-1rem}#enp-quiz .enp-quiz-results__label{text-transform:uppercase;font-size:.7rem;font-weight:300;color:#a897ba}#enp-quiz .enp-dash-item--add-new__wrap{display:grid;gap:1em;grid-template-columns:1fr 1fr}#enp-quiz .enp-dash-list--quiz__container{display:grid;gap:1em}@media (min-width:1000px){#enp-quiz .enp-dash-list--quiz__container{grid-template-columns:1fr 1fr}}#enp-quiz .enp-dash-item--add-new{background:none;border:none;padding:0;position:relative}@media (min-width:1000px){#enp-quiz .enp-dash-item--add-new{padding-top:7rem}}#enp-quiz .enp-dash-link--add-new{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;line-height:1.6;border:1px dashed #a897ba;background:none;color:#545454;box-shadow:none;border:2px dashed #a897ba;color:#e8e4ed;transition:all .2s;justify-content:flex-start;color:#94a6b3;padding:1rem 1.2rem}#enp-quiz .enp-dash-link--add-new:focus,#enp-quiz .enp-dash-link--add-new:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-dash-link--add-new:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-dash-link--add-new:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-dash-link--add-new:disabled,#enp-quiz .enp-dash-link--add-new:disabled:focus,#enp-quiz .enp-dash-link--add-new:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-dash-link--add-new:focus,#enp-quiz .enp-dash-link--add-new:hover{border:1px dashed #69547e;background:hsla(0,0%,100%,.9);color:#a897ba;border:2px dashed #999}@media (min-width:700px){#enp-quiz .enp-dash-link--add-new{font-size:1rem;text-transform:uppercase;display:flex;justify-content:center;align-content:center;align-items:center;flex-direction:column;position:absolute;top:0;left:0;right:0;bottom:0}}#enp-quiz .enp-dash-link--add-new .enp-dash-link__icon{border-radius:50%;fill:#fff;width:1.2rem;height:1.2rem;margin-right:5px;background-color:#94a6b3}@media (min-width:700px){#enp-quiz .enp-dash-link--add-new .enp-dash-link__icon{width:2rem;height:2rem;margin:.8rem 0 .2rem}}#enp-quiz .enp-dash-link--add-new:hover{color:#333f48}#enp-quiz .enp-dash-link--add-new:hover .enp-dash-link__icon{fill:#fff;background:#333f48}#enp-quiz .enp-quiz-message--welcome p{color:#1d1c25}#enp-quiz .enp-paginate{list-style:none;margin-left:0;font-size:1rem}#enp-quiz .enp-paginate,#enp-quiz .enp-paginate__link{display:flex;justify-content:center;align-content:center;align-items:center}#enp-quiz .enp-paginate__link{margin:0 .2rem;padding:0 .4rem;border-radius:3px;font-weight:400}#enp-quiz .enp-paginate__link--current-page{border:2px solid #00a9b7}#enp-quiz .enp-paginate__item--first-page,#enp-quiz .enp-paginate__item--last-page{display:flex}#enp-quiz .enp-paginate__item--first-page:after,#enp-quiz .enp-paginate__item--last-page:before{content:"...";font-size:1rem;position:relative;bottom:.2rem;opacity:.6}#enp-quiz .enp-paginate__item--no-gap:after,#enp-quiz .enp-paginate__item--no-gap:before{content:""}#enp-quiz .enp-paginate__item--next-page{margin-left:.2rem}#enp-quiz .enp-paginate__item--previous-page{margin-right:.2rem}#enp-quiz .enp-quiz-breadcrumbs{grid-row:1}#enp-quiz .enp-quiz-breadcrumbs__list{display:flex;list-style:none;margin-left:0;margin-bottom:0}#enp-quiz .enp-quiz-breadcrumbs__item{margin-right:10px;display:flex;justify-content:center;align-content:center;align-items:center;fill:#bf5700;margin-right:5px}#enp-quiz .enp-quiz-breadcrumbs__item:last-of-type{margin-right:0}@media (min-width:400px){#enp-quiz .enp-quiz-breadcrumbs__item{margin-right:10px}}#enp-quiz .enp-quiz-breadcrumbs__link--disabled{opacity:.65;cursor:default}#enp-quiz .enp-quiz-breadcrumbs__link--active{text-align:center;border:none;border-radius:3px;padding:.85em 1.4em .75em;font-size:15px;font-weight:400;letter-spacing:.05em;color:#fff;box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);background:#bf5700;cursor:pointer;text-transform:uppercase;transition:all .2s;line-height:1.6;border:2px solid #bf5700;background:transparent;color:#bf5700;box-shadow:none;padding:.4em 1em}#enp-quiz .enp-quiz-breadcrumbs__link--active:focus,#enp-quiz .enp-quiz-breadcrumbs__link--active:hover{color:#fff;box-shadow:none;background:#964400}#enp-quiz .enp-quiz-breadcrumbs__link--active:active{color:#fff;box-shadow:inset 0 2px 0 rgba(0,0,0,.1);background:#1eeeff}#enp-quiz .enp-quiz-breadcrumbs__link--active:focus{outline-color:#4d90fe;outline-offset:-2px;outline-style:auto;outline-width:5px}#enp-quiz .enp-quiz-breadcrumbs__link--active:disabled,#enp-quiz .enp-quiz-breadcrumbs__link--active:disabled:focus,#enp-quiz .enp-quiz-breadcrumbs__link--active:disabled:hover{background:#bf5700;cursor:default;opacity:.5}#enp-quiz .enp-quiz-breadcrumbs__link--active:focus,#enp-quiz .enp-quiz-breadcrumbs__link--active:hover{background:transparent;border:2px solid #964400;color:#964400}#enp-quiz .enp-quiz-breadcrumbs__link{font-size:1rem;font-weight:400;text-transform:none;letter-spacing:0}#enp-quiz .enp-quiz-breadcrumbs--fixed{top:0;position:fixed;animation:h .25s}#enp-quiz .enp-results-title{font-size:1.6rem;text-align:center;padding:3.2rem 20px 2.6rem;background:#fdfcfd;margin:-1.2rem 0 2rem;border-bottom:1px solid #ddd}#enp-quiz .enp-results-title:after{font-size:1rem;text-transform:uppercase;display:block;content:"RESULTS";font-weight:400}#enp-quiz .enp-results__container{max-width:80vw;margin:0 auto;display:block}@media (min-width:700px){#enp-quiz .enp-results__container{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-results__container{max-width:1440px;display:flex;justify-content:space-between}}#enp-quiz .enp-quiz-scores__container,#enp-quiz .enp-results-flow__container{width:100%}@media (min-width:1000px){#enp-quiz .enp-quiz-scores__container,#enp-quiz .enp-results-flow__container{width:48%}}#enp-quiz .enp-quiz-scores{margin-top:2.6rem}#enp-quiz .enp-quiz-score__line-chart{height:300px;margin-bottom:1rem}#enp-quiz .enp-quiz-score__line-chart .ct-label{color:#1d1c25}#enp-quiz .enp-quiz-score__line-chart .ct-grid{stroke:#dadada;stroke-dasharray:0}#enp-quiz .enp-quiz-score__line-chart .ct-line{stroke:#60aaad;stroke-width:2px}#enp-quiz .enp-quiz-score__line-chart .ct-point{stroke:#60aaad;stroke-width:8px}#enp-quiz .enp-quiz-scores-table{width:100%;max-width:500px;margin:0 auto}#enp-quiz .enp-quiz-scores-table tr th{background-color:#fff}#enp-quiz .enp-quiz-scores-table__label{padding-left:5%}#enp-quiz .enp-quiz-scores-table__score{text-align:right;padding-right:5%}#enp-quiz .enp-results-flow{position:relative;margin:2rem auto;width:320px;height:320px;border-radius:50%}@media (min-width:400px){#enp-quiz .enp-results-flow{width:390px;height:390px}}@media (min-width:700px){#enp-quiz .enp-results-flow{width:450px;height:450px}}@media (min-width:1000px){#enp-quiz .enp-results-flow{width:400px;height:400px}}#enp-quiz .enp-results-flow__section-title{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-results-flow__item{border-radius:50%;text-align:center;height:100%;width:100%;margin:0 auto;left:0;right:0;padding:12.5% 0 0;letter-spacing:.05rem;border:2px solid #60aaad;animation:.85s a cubic-bezier(0,0,.3,1) forwards}#enp-quiz .enp-results-flow__item--total-views{background:#fff}#enp-quiz .enp-results-flow__item--quiz-starts{width:65%;height:65%;position:absolute;padding-top:8%;bottom:2.5%;background:#fff}#enp-quiz .enp-results-flow__item--quiz-finishes{width:35%;height:35%;position:absolute;bottom:5%;background:#d6e9ea}#enp-quiz .enp-results-flow__title{font-size:1rem;text-transform:uppercase;color:#444;font-size:.7rem;margin-bottom:0}@media (min-width:700px){#enp-quiz .enp-results-flow__title{font-weight:700;margin-bottom:2px}}#enp-quiz .enp-results-flow__number{font-weight:700;font-size:1.4rem;line-height:1.2}#enp-quiz .enp-results-flow__number--total-views{font-size:2rem}#enp-quiz .enp-results-flow__number--quiz-starts{font-size:1.65rem}#enp-quiz .enp-results-flow__percentage{font-size:.8rem;font-weight:400;position:relative;display:inline-block;top:-.7em;left:-.1rem;color:#444}#enp-quiz .enp-results-flow__percentage:after{content:"%";position:absolute;right:-.75rem;font-size:.7rem;color:#444}#enp-quiz .enp-results-questions__section{padding-top:5rem;padding-bottom:3rem;margin-top:5rem;margin-bottom:3rem}@media (min-width:700px){#enp-quiz .enp-results-questions__section{margin-right:2rem;margin-left:2rem}}#enp-quiz .enp-results-questions__header{align-items:flex-start;flex-direction:column}@media (min-width:400px){#enp-quiz .enp-results-questions__header{display:flex;justify-content:space-between;flex-direction:row;align-items:flex-end}}#enp-quiz .enp-results-questions__key,#enp-quiz .enp-results-questions__title{font-size:1rem;text-transform:uppercase}#enp-quiz .enp-results-questions{list-style:none;margin-left:0}#enp-quiz .enp-results-question{width:100%;font-size:1rem;padding:0;margin-bottom:1rem}#enp-quiz .enp-results-question__header{padding:1rem 1.2rem;position:relative}#enp-quiz .enp-results-question__question,#enp-quiz .enp-results-question__stats{font-size:1rem;line-height:1.4}#enp-quiz .enp-results-question__question{font-weight:400}@media (min-width:400px){#enp-quiz .enp-results-question__question{padding-right:7em;margin-bottom:0}}#enp-quiz .enp-results-question__stats{font-size:.9rem}@media (min-width:400px){#enp-quiz .enp-results-question__stats{position:absolute;bottom:1rem;right:1.2rem;text-align:right}}#enp-quiz .enp-results-question__stats,#enp-quiz .enp-results-questions__key{font-weight:300}#enp-quiz .enp-results-question__content{padding:2rem 1.2rem 1.2rem;border-radius:3px}#enp-quiz .enp-results-question__deep-stats{display:flex;justify-content:space-around;list-style:none;margin-left:0;text-align:center}#enp-quiz .enp-results-question__deep-stat__number{font-size:1.8rem;line-height:1;position:relative}#enp-quiz .enp-results-question__deep-stat__number--correct,#enp-quiz .enp-results-question__deep-stat__number--finishes{color:#4e9497}#enp-quiz .enp-results-question__deep-stat__number--incorrect{color:#c1893e}#enp-quiz .enp-results-question__deep-stat__number--correct:after,#enp-quiz .enp-results-question__deep-stat__number--finishes:after,#enp-quiz .enp-results-question__deep-stat__number--incorrect:after{content:"%";font-size:.9rem;position:absolute;top:.3rem;right:-1rem}#enp-quiz .enp-results-question__deep-stat__label{font-size:1rem;text-transform:uppercase;font-size:.8rem}#enp-quiz .enp-results-question__options{list-style:none;margin-left:0;margin-bottom:0}#enp-quiz .enp-results-question__option{padding:.8rem .8rem .8rem .4rem;border-top:1px solid #ddd}@media (min-width:400px){#enp-quiz .enp-results-question__option{display:flex;justify-content:space-between;flex-direction:row}}#enp-quiz .enp-results-question__option:first-of-type{margin-top:1.4rem}#enp-quiz .enp-results-question__option--correct{background:#fff}#enp-quiz .enp-results-question__option__text{flex-grow:100;margin-right:1rem}#enp-quiz .enp-results-question__option__text__helper{font-weight:300;font-size:1rem;text-transform:uppercase;margin-right:.4rem}@media (min-width:400px){#enp-quiz .enp-results-question__option__icon{margin-right:.3rem;min-width:1.6rem}}#enp-quiz .enp-results-question__option__icon--incorrect{fill:#c1893e;opacity:.5}#enp-quiz .enp-results-question__option__icon--correct{fill:#4e9497;opacity:1}#enp-quiz .enp-results-question__option__percentage--incorrect{color:#c1893e}#enp-quiz .enp-results-question__option__percentage--correct{color:#4e9497}#enp-quiz .enp-results-question__option__number-selected{font-weight:300}#enp-quiz .enp-slider-responses__title{font-size:1rem;text-transform:uppercase;font-weight:400;margin-top:1.6rem}#enp-quiz .enp-slider-responses__line-chart .ct-point{stroke-width:8px}#enp-quiz .enp-slider-responses__line-chart--high,#enp-quiz .enp-slider-responses__line-chart--low{stroke:#bf5700}#enp-quiz .enp-slider-responses__line-chart--correct{stroke:#60aaad}#enp-quiz .enp-slider-responses-table{width:100%}#enp-quiz .enp-slider-responses-table tr.enp-slider-responses-table__response--correct td,#enp-quiz .enp-slider-responses-table tr:nth-child(2n) td{background-color:#fff}#enp-quiz .enp-slider-responses-table__content{box-shadow:none;padding-top:1rem}#enp-quiz .enp-slider-responses-table--hide-zero .enp-slider-responses-table__frequency--zero{display:none}#enp-quiz .enp-slider-responses-table__response-frequency{display:flex;justify-content:space-between;align-items:center}#enp-quiz .enp-slider-responses-table__toggle-zero-frequency{background:#fff;width:100%;box-shadow:inset 1px 1px 0 #ccc,inset -1px -1px 0 #ccc;color:#1d1c25;font-family:Arial,monospace,helvetica,arial,sans-serif;font-size:.9rem;font-weight:400;line-height:1.5;text-transform:none;letter-spacing:0;text-align:left;border:none;border-radius:3px;min-height:3.065rem;padding:1rem 2rem 1rem 1rem;margin:1.6rem 0 0;position:relative;z-index:9;cursor:pointer;transition:all .2s cubic-bezier(0,0,.3,1);width:auto;padding:0 .6rem;margin:0}.enp-quiz-results #enp-quiz .enp-aside{border:none}.enp-quiz-results .enp-results-questions__title__quiz-title{clip:rect(1px,1px,1px,1px);position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}#enp-quiz .enp-results--ab{display:block;margin-bottom:3rem}@media (min-width:1000px){#enp-quiz .enp-results--ab{display:flex;flex-wrap:wrap;align-content:flex-end;width:50%;padding:10px}}@media (min-width:1000px){#enp-quiz .enp-results--a{padding-right:1rem;border-right:1px solid #ddd}}@media (min-width:1000px){#enp-quiz .enp-results--b{padding-left:1rem}}#enp-quiz .enp-results-title--ab,#enp-quiz .enp-results__container--ab .enp-results-flow__container{min-width:100%}#enp-quiz .enp-results--loser .enp-results-flow__item{border:2px solid #bf5700}#enp-quiz .enp-results--loser .enp-results-flow__item--quiz-starts{background:#ffc696}#enp-quiz .enp-results--loser .enp-results-flow__item--quiz-finishes{background:#ffb06d}#enp-quiz .enp-results--loser .enp-results-questions__title,#enp-quiz .enp-results--loser th{color:#964400}#enp-quiz .enp-results--winner .enp-results-questions__title,#enp-quiz .enp-results--winner th{color:#4e9497}#enp-quiz .enp-results-title--a,#enp-quiz .enp-results-title--b{background:transparent}#enp-quiz .enp-ab-scores{max-width:80vw;margin:0 auto}@media (min-width:700px){#enp-quiz .enp-ab-scores{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-ab-scores{max-width:1440px}}#enp-quiz .enp-ab-scores th.enp-quiz-scores-table__label,#enp-quiz .enp-ab-scores th.enp-quiz-scores-table__score{padding-left:0;padding-right:0}#enp-quiz .enp-ab-scores__title{padding-left:50px;font-size:1rem;text-transform:uppercase}#enp-quiz .enp-quiz-score__line-chart .enp-test-loser .ct-line,#enp-quiz .enp-quiz-score__line-chart .enp-test-loser .ct-point{stroke:#bf5700}#enp-quiz .enp-quiz-scores{margin-top:0}#enp-quiz .enp-ab-scores .enp-quiz-scores-table,#enp-quiz .enp-question-results{margin-bottom:1.6rem}@media (min-width:1000px){#enp-quiz .enp-ab-scores .enp-quiz-scores-table,#enp-quiz .enp-question-results{float:left;width:48%;margin:0}#enp-quiz .enp-ab-scores .enp-quiz-scores-table:first-of-type,#enp-quiz .enp-question-results:first-of-type{margin-right:4%}}#enp-quiz .enp-question-results__container{max-width:80vw;margin:0 auto;padding-top:3rem}@media (min-width:700px){#enp-quiz .enp-question-results__container{max-width:1000px}}@media (min-width:1000px){#enp-quiz .enp-question-results__container{max-width:1440px}}#enp-quiz .enp-question-results--ab .enp-results-questions__section{background:#fff;border:none;padding:1.6rem 0;margin:1.6rem auto}#enp-quiz .enp-question-results--ab .enp-results-questions__container{padding:0}#enp-quiz .enp-ab-new-embed-code__section{max-width:80vw;margin:0 auto;max-width:540px;padding-bottom:2rem;margin-bottom:2rem}#enp-quiz .enp-ab-new-embed-code__section .enp-ab-embed-code{padding:0;margin:0}#enp-quiz .enp-ab-embed-code__section{background:#faf9fb;border-bottom:1px solid #ddd;border-top:1px solid #ddd;padding-top:3rem;padding-bottom:3rem;margin-top:3rem;margin-bottom:3rem;padding-top:5rem;margin-top:5rem}#enp-quiz .enp-ab-embed-code{max-width:80vw;margin:0 auto}#enp-quiz .enp-ab-embed-code__title{font-size:1rem;text-transform:uppercase}#enp-quiz .enp-embed-code__textarea{margin-bottom:0}#enp-quiz .enp-embed-code__instructions{font-size:1.1rem}#enp-quiz .enp-slider{margin-bottom:1.6rem}#enp-quiz .enp-slider-input__container{display:flex;align-items:center;justify-content:center;margin:1.6rem auto;position:relative}#enp-quiz .enp-slider-input__label{display:block;color:#343242;font-weight:400;font-size:.85rem;text-transform:uppercase}#enp-quiz .enp-slider-input__prefix,#enp-quiz .enp-slider-input__suffix{font-size:1rem}#enp-quiz .enp-slider-input__prefix{margin-right:.2rem;white-space:pre}#enp-quiz .enp-slider-input__suffix{margin-left:.2rem;white-space:pre}#enp-quiz .enp-slider-input__input{font-size:1rem;font-family:Arial,monospace,helvetica,arial,sans-serif;padding:.8rem .5rem;background:#fff;border:1px solid #aaa;border-radius:3px;width:20rem;max-width:100%;margin-bottom:1.2rem;margin-bottom:0;padding:.75rem;width:auto;transition:all .25s cubic-bezier(0,0,.3,1)}@media (min-width:700px){#enp-quiz .enp-slider-input__input{padding:.8rem;width:100%}}#enp-quiz .enp-slider-input__input--incorrect{color:#bf5700}#enp-quiz .enp-slider-input__input--correct{color:#4e9497}#enp-quiz .enp-slider-input__input--invalid-animation{box-shadow:0 0 2px 1px #c1893e}#enp-quiz .enp-slider_input__range-helper{position:absolute;bottom:-1.2rem;font-size:.8rem}#enp-quiz .enp-slider_input__range-helper--low{left:0}#enp-quiz .enp-slider_input__range-helper--high{right:0}#enp-quiz .enp-slider-input__range-helper__number{position:relative;color:#e8e4ed}#enp-quiz .ui-slider-range-show-correct__tooltip-container{position:relative}#enp-quiz .ui-slider-range-show-correct__tooltip{position:absolute;top:-.4rem;margin-left:-.55rem;height:1rem;width:1.1rem;height:1.1rem;border:2px solid #60aaad;background-color:#fff;border-radius:50%;z-index:9999}#enp-quiz .ui-slider-range-show-correct__tooltip--low{left:0}#enp-quiz .ui-slider-range-show-correct__tooltip--high{right:-.55rem}#enp-quiz .ui-slider-range-show-correct__tooltip__text{position:relative;color:#417d7f;top:-1.35rem;font-size:.825rem;min-width:100%;display:inline-block;text-align:center;text-shadow:0 1px 0 #fff}#enp-quiz .enp-slider{position:relative;text-align:left;background:#ddd}#enp-quiz .enp-slider .ui-helper-hidden{display:none}#enp-quiz .enp-slider .ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}#enp-quiz .enp-slider .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}#enp-quiz .enp-slider .ui-helper-clearfix:after,#enp-quiz .enp-slider .ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}#enp-quiz .enp-slider .ui-helper-clearfix:after{clear:both}#enp-quiz .enp-slider .ui-helper-clearfix{min-height:0}#enp-quiz .enp-slider .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:alpha(opacity=0)}#enp-quiz .enp-slider .ui-front{z-index:100}#enp-quiz .enp-slider .ui-state-disabled{cursor:default!important}#enp-quiz .enp-slider .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}#enp-quiz .enp-slider .ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}#enp-quiz .enp-slider .ui-slider-handle{background:#fff;border-radius:50%;border:1px solid #aaa;position:absolute;z-index:2;width:1.2rem;height:1.2rem;top:-.4rem;margin-left:-.6rem;cursor:default;touch-action:none;transition:opacity .2s cubic-bezier(0,0,.3,1),height .18s cubic-bezier(0,0,.3,1),width .18s cubic-bezier(0,0,.3,1),transform .18s cubic-bezier(0,0,.3,1)}#enp-quiz .enp-slider .ui-slider-handle:focus{outline:none;box-shadow:0 0 3px 1px #4d90fe}#enp-quiz .enp-slider .ui-slider-handle--correct,#enp-quiz .enp-slider .ui-slider-handle--incorrect{width:1.1rem;height:1.1rem;top:-.4rem;margin-left:-.55rem}#enp-quiz .enp-slider .ui-slider-handle--incorrect{z-index:1;border:2px solid #bf5700}#enp-quiz .enp-slider .ui-slider-handle--correct{border:2px solid #60aaad;z-index:99999}#enp-quiz .enp-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7rem;display:block;border:0;background-position:0 0;top:0;height:100%}#enp-quiz .enp-slider .ui-slider-range-show-correct{background:#60aaad;z-index:9}#enp-quiz .enp-slider .ui-slider-range-min{left:0;background:#00a9b7}#enp-quiz .enp-slider .ui-slider-range-max{right:0}#enp-quiz .enp-slider.ui-state-disabled .ui-slider-handle,#enp-quiz .enp-slider.ui-state-disabled .ui-slider-range{filter:inherit}#enp-quiz .ui-slider-horizontal{height:.3rem}#enp-quiz .enp-question__answered .enp-slider{background:#bbb}#enp-quiz .enp-question__answered .ui-slider-range-min{background:#fff}
/*# sourceMappingURL=enp_quiz-create.min.css.map */
diff --git a/public/quiz-create/css/enp_quiz-create.min.css.map b/public/quiz-create/css/enp_quiz-create.min.css.map
index 1701c2a0..8b8738f7 100644
--- a/public/quiz-create/css/enp_quiz-create.min.css.map
+++ b/public/quiz-create/css/enp_quiz-create.min.css.map
@@ -1 +1 @@
-{"version":3,"sources":["_setup.scss","_utilities.scss","_variables.scss","_structure.scss","_typography.scss","_animations.scss","_base.scss","_forms.scss","_quiz-create.scss","_quiz-preview.scss","_quiz-publish.scss","_ab-create.scss","_dashboard.scss","_breadcrumbs.scss","_quiz-results.scss","_ab-results.scss","../../../quiz-take/css/sass/_slider.scss"],"names":[],"mappings":"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","file":"enp_quiz-create.min.css","sourcesContent":["html {\n font-size: 16px!important; // set our rem value reference\n}\n\nhtml #enp-quiz {\n box-sizing: border-box;\n}\n\nbody #enp-quiz {\n background: #fff;\n overflow: hidden;\n}\n\n#enp-quiz {\n *, *:before, *:after {\n box-sizing: inherit;\n }\n\n ul, ol {\n margin: 0 0 1.6rem 1.25rem;\n padding: 0;\n }\n\n textarea {\n margin-bottom: 1rem;\n }\n\n button, input[type=\"button\"], input[type=\"reset\"], input[type=\"submit\"] {\n border: none;\n &:active,\n &:focus,\n &:hover {\n border: none;\n }\n }\n\n iframe {\n border: none;\n }\n}\n","@mixin focus--glow {\n outline-color: #4D90FE;\n outline-offset: -2px;\n outline-style: auto;\n outline-width: 5px;\n}\n\n@mixin disabled {\n opacity: 0.65;\n cursor: default;\n}\n\n@mixin btn {\n text-align: center;\n border: none;\n border-radius: 3px;\n padding: .85em 1.4em .75em;\n font-size: 15px;\n font-weight: 400;\n letter-spacing: .05em;\n color: #fff;\n box-shadow: inset 0 -2px 0 rgba(0,0,0,.2);\n background: $link;\n cursor: pointer;\n text-transform: uppercase;\n transition: all .2s;\n line-height: 1.6;\n\n &:focus,\n &:hover {\n color: #fff;\n box-shadow: none;\n background: $link_hover;\n }\n\n &:active {\n color: #fff;\n box-shadow: inset 0 2px 0 rgba(0,0,0,.1);\n background: lighten($blue, 20);\n }\n\n &:focus {\n @include focus--glow;\n }\n\n &:disabled,\n &:disabled:focus,\n &:disabled:hover {\n background: $link;\n cursor: default;\n opacity: .5;\n\n\n }\n}\n\n@mixin btn--reset {\n border: none;\n background: none;\n box-shadow: none;\n padding: 0;\n margin: 0;\n}\n\n@mixin btn--submit {\n @include btn;\n}\n\n@mixin btn--ghost {\n @include btn;\n border: 2px solid $link;\n background: transparent;\n color: $link;\n box-shadow: none;\n\n &:focus,\n &:hover {\n background: transparent;\n border: 2px solid $link_hover;\n color: $link_hover;\n }\n}\n\n@mixin box-shadow {\n box-shadow: 0 2px 2px rgba(0,0,0,.2);\n}\n\n@mixin btn--dashed {\n @include btn;\n border: 1px dashed $darker_gray;\n background: none;\n color: #545454;\n box-shadow: none;\n\n &:hover,\n &:focus {\n border: 1px dashed $darkest_gray;\n color: $darker_gray;\n background: rgba(255,255,255,.9);\n }\n}\n\n@mixin btn--dashed--light {\n @include btn--dashed;\n border: 2px dashed $darker-gray;\n color: $dark_gray;\n transition: all .2s;\n\n &:hover,\n &:focus {\n color: $darker_gray;\n border: 2px dashed #999;\n }\n}\n\n@mixin btn--dashed--light--alt-bg {\n @include btn--dashed--light ;\n background: $light_gray;\n}\n\n@mixin btn--small {\n font-size: 13px;\n}\n\n@mixin btn--thin {\n padding: 0.4em 1em;\n}\n\n@mixin btn--icon {\n @include btn;\n padding: .75em 0.8em .7em 1.4em;\n}\n\n@mixin btn--icon__icon {\n @include icon--white;\n @include icon--xl;\n position: relative;\n top: 4px;\n}\n\n/*\n* @usage: @include btn--icon(BEM-root-class);\n* Button with icon with white circular background.\n* --------------\n* | BTN TEXT > |\n* --------------\n* @param $rootBEM: root class name that will be extended\n\n@mixin btn--icon($rootBEM) {\n .(#){$rootBEM} {\n @include btn--icon;\n }\n\n .(#){$rootBEM}__icon {\n @include btn--icon__icon ;\n }\n}\n*/\n\n@mixin btn--icon--icon-circle {\n @include btn;\n padding: .65em 1.2em .85em 1.4em;\n}\n\n// use when the icon is larger and on the right\n@mixin btn--icon__icon--circle {\n @include icon--circle;\n @include icon--white-bg;\n @include icon--normal;\n margin-left: 0.5em;\n position: relative;\n top: 0.15rem;\n}\n\n@mixin btn--icon__icon--circle--hover {\n @include icon--white-bg--hover;\n}\n\n/*\n* @usage: @include btn--icon--circle(BEM-root-class);\n* Button with icon with white circular background.\n* ---------------\n* | BTN TEXT (>) |\n* ---------------\n* @param $rootBEM: root class name that will be extended\n*/\n@mixin btn--icon--circle($rootBEM) {\n .#{$rootBEM} {\n @include btn--icon--icon-circle;\n }\n\n .#{$rootBEM}__icon {\n @include btn--icon__icon--circle ;\n\n\n &:hover {\n @include btn--icon__icon--circle--hover ;\n }\n }\n}\n\n/*\n* @usage: @include btn--icon--hover-circle(BEM-root-class);\n* Button with icon. Hovering/focusing button moves\n* the icon to right and fades in a white circular background\n* -------------- ----------------\n* | BTN TEXT > | --hover/focus--> | BTN TEXT (>) |\n* -------------- ----------------\n* @param $rootBEM: root class name that will be extended\n*/\n@mixin btn--icon--hover-circle($rootBEM) {\n .#{$rootBEM} {\n @include btn--icon--icon-circle;\n padding-right: 0.8em;\n }\n\n .#{$rootBEM}__icon {\n @include btn--icon__icon--circle ;\n margin-left: 0;\n width: 1em;\n height: 1em;\n background: transparent;\n fill: #fff;\n transform: translate3d(0, 0, 0);\n transition: all .3s ease-in-out;\n }\n\n .#{$rootBEM}:hover .#{$rootBEM}__icon {\n @include btn--icon__icon--circle--hover ;\n transform: translate3d(1em, 0, 0);\n margin-right: 1em;\n }\n\n\n}\n\n// use on small icons and placed on the left\n@mixin btn--icon__icon--circle--small {\n @include icon--circle--small;\n margin-right: 5px;\n}\n\n\n// use this to match the icon to the inline font-size\n@mixin icon--inline {\n width: 1em;\n height: 1em;\n position: relative;\n top: .125em;\n}\n\n@mixin icon--small {\n width: 1rem;\n height: 1rem;\n}\n\n@mixin icon--normal {\n width: 1.2rem;\n height: 1.2rem;\n}\n\n@mixin icon--large {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n@mixin icon--xl {\n width: 1.8rem;\n height: 1.8rem;\n}\n\n@mixin icon--xxl {\n width: 2.4rem;\n height: 2.4rem;\n}\n\n@mixin icon--xxxl {\n width: 2.8rem;\n height: 2.8rem;\n}\n\n@mixin icon--circle {\n border-radius: 50%;\n fill: #fff;\n}\n\n@mixin border-radius {\n border-radius: 3px;\n}\n\n@mixin icon--circle--pad {\n @include icon--circle ;\n padding: 0.05em;\n\n @include breakpoint(medium) {\n padding: 0.15em;\n }\n}\n\n@mixin icon--circle--pad--xl {\n @include icon--circle ;\n padding: 0.6rem;\n}\n\n@mixin icon--circle--small {\n @include icon--small;\n @include icon--circle;\n padding: 0.02rem;\n}\n\n@mixin icon--white {\n fill: #fff;\n}\n\n@mixin icon--white-bg {\n background: #fff;\n fill: $link;\n}\n\n@mixin icon--white-bg--hover {\n background: #fff;\n fill: $link_hover;\n}\n\n@mixin icon--gray-bg {\n background: $dark_gray;\n fill: $light_gray;\n}\n\n@mixin icon--gray-bg--hover {\n fill: #fff;\n background: $darker_gray;\n}\n\n@mixin small-uppercase {\n font-size: 1rem;\n text-transform: uppercase;\n}\n\n@mixin hint {\n font-size: .7rem;\n font-weight: 300;\n color: $darker_gray;\n}\n\n@mixin green {\n color: $green;\n}\n\n@mixin dark-green {\n color: $dark_green;\n}\n\n@mixin red {\n color: $red;\n}\n\n@mixin fade-red {\n color: $fade_red;\n}\n\n/* Text meant only for screen readers */\n@mixin screen-reader-text {\n clip: rect(1px, 1px, 1px, 1px);\n position: absolute !important;\n left:-10000px;\n top:auto;\n width:1px;\n height:1px;\n overflow:hidden;\n}\n\n@mixin screen-reader-text--hover {\n background-color: #f1f1f1;\n border-radius: 3px;\n box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n clip: auto !important;\n color: #21759b;\n display: block;\n font-size: 14px;\n font-weight: bold;\n height: auto;\n left: 5px;\n line-height: normal;\n padding: 15px 23px 14px;\n text-decoration: none;\n top: 5px;\n width: auto;\n z-index: 100000;\n}\n\n@mixin xmargin-vertical {\n margin-top: 2rem;\n margin-bottom: 2rem;\n}\n\n@mixin xmargin-horizontal {\n margin-right: 2rem;\n margin-left: 2rem;\n}\n\n@mixin xpadding-vertical {\n padding-top: 2rem;\n padding-bottom: 2rem;\n}\n\n@mixin xpadding-vertical-top {\n padding-top: 2rem;\n}\n\n@mixin xpadding-horizontal {\n padding-right: 2rem;\n padding-left: 2rem;\n}\n\n@mixin header-space {\n @include breakpoint(large) {\n padding-top: 7rem;\n }\n}\n\n@mixin ul-no-style {\n list-style: none;\n margin-left: 0;\n}\n\n@mixin hidden--accessible {\n height: 0;\n opacity: 0;\n padding: 0;\n overflow: hidden;\n}\n\n@mixin accordion {\n background: #fff;\n width: 100%;\n}\n\n@mixin accordion__header {\n @include accordion ;\n box-shadow: inset 1px 1px 0 #ccc, inset -1px -1px 0 #ccc;\n color: $font;\n font-family: $fontTitle;\n font-size: .9rem;\n font-weight: 400;\n line-height: 1.5;\n text-transform: none;\n letter-spacing: 0;\n text-align: left;\n border: none;\n border-radius: 3px;\n min-height: 3.065rem;\n padding: 1rem 2rem 1rem 1rem;\n margin: 1.6rem 0 0;\n position: relative;\n z-index: 9;\n cursor: pointer;\n transition: all .2s $fastInEaseOut;\n}\n\n@mixin accordion__content {\n @include accordion ;\n box-shadow: inset 1px -1px 0 #ccc, inset -1px -1px 0 #ccc;\n display: block;\n position: relative;\n height: auto;\n overflow: visible;\n margin-bottom: 1.6rem;\n}\n\n@mixin accordion__content--closed {\n // TEMP DEV comment out\n margin-top: 0;\n padding-top: 0rem;\n animation: slideOutTop .25s $fastInEaseOut forwards;\n display: none;\n}\n\n@mixin accordion__content--open {\n padding-top: 1.6rem;\n margin-bottom: 2rem;\n animation: slideInTop .45s $fastInEaseOut forwards;\n}\n\n// Share Icons\n@mixin share_icons($rootBEM) {\n\n .#{$rootBEM} {\n @include ul-no-style;\n @include flex-center;\n }\n\n .#{$rootBEM}__item {\n margin-right: 20px;\n\n &:last-child {\n margin-right: 0;\n }\n }\n\n .#{$rootBEM}__item__icon {\n @include icon--xxl;\n @include icon--circle--pad--xl;\n\n fill: #fff!important;\n }\n\n .#{$rootBEM}__item__icon--facebook {\n background-color: #3a5795;\n }\n\n .#{$rootBEM}__item__icon--twitter {\n background-color: #4099ff;\n }\n}\n\n@mixin section--alt {\n background: $light_gray;\n border-bottom: 1px solid #ddd;\n border-top: 1px solid #ddd;\n padding-top: 3rem;\n padding-bottom: 3rem;\n margin-top: 3rem;\n margin-bottom: 3rem;\n}\n\n#enp-quiz {\n .enp-screen-reader-text {\n @include screen-reader-text;\n }\n\n .enp-screen-reader-text:hover,\n .enp-screen-reader-text:active,\n .enp-screen-reader-text:focus {\n @include screen-reader-text--hover;\n }\n\n .enp-accordion-header {\n @include accordion__header ;\n\n &:first-of-type {\n margin-top: 0;\n }\n\n .enp-accordion-header__icon {\n position: absolute;\n fill: $dark_gray;\n right: 0.75rem;\n bottom: 0.75rem;\n transition: all .35s $fastInEaseOut;\n }\n }\n\n .enp-accordion-header--open {\n\n .enp-accordion-header__icon {\n transform: rotateX(180deg);\n }\n\n }\n\n .enp-quiz-settings__form .enp-accordion-header {\n position: relative;\n overflow-y: hidden;\n }\n\n .enp-accordion-content {\n @include accordion__content ;\n\n }\n\n .enp-accordion-content--closed {\n @include accordion__content--closed ;\n }\n\n .enp-accordion-content--open {\n @include accordion__content--open ;\n }\n\n .enp-quiz-message {\n @include container--thin;\n background: #fff;\n border: 1px solid #eee;\n border-bottom: 1px solid #ccc;\n padding: 1rem;\n margin-bottom: 1.6rem;\n position: fixed;\n bottom: 0;\n left: 0;\n }\n\n .enp-quiz-message__title {\n @include small-uppercase;\n }\n\n .enp-message__list {\n @include ul-no-style;\n font-size: 1.1rem;\n margin-bottom: 0;\n }\n\n .enp-quiz-message--error {\n border-left: 6px solid $red;\n color: $red;\n }\n\n .enp-quiz-message__title--error {\n color: $dark_red;\n }\n\n .enp-quiz-message--success {\n border-left: 6px solid $green;\n color: $dark_green;\n }\n\n .enp-quiz-message__title--success {\n color: $dark_green;\n }\n\n .enp-quiz-message--note {\n border-left: 6px solid $khaki;\n }\n\n .enp-quiz-message__title--note {\n color: $dark_blue;\n }\n\n .enp-quiz-message__close {\n @include btn--reset;\n position: absolute;\n top: 5px;\n right: 5px;\n }\n\n .enp-quiz-message--ajax {\n margin-bottom: .6rem;\n animation: slideInBottom .3s;\n }\n\n .enp-quiz-message-ajax-container {\n z-index: 9999;\n position: fixed;\n bottom: 10px;\n }\n\n .enp-quiz-message--saving__spinner {\n margin-left: -10px;\n }\n\n .enp-quiz-message--saving__text {\n font-size: 1rem;\n }\n\n textarea.limited-chars,\n input.limited-chars {\n margin-bottom: 0.2rem;\n }\n\n .limited-chars__container {\n color: lighten($dark_gray, 8);\n font-size: 0.8rem;\n display: block;\n text-align: right;\n margin-bottom: 1.2rem;\n }\n\n .limited-chars__counter {\n color: $dark_gray;\n }\n\n .limited-chars__container--error {\n color: $dark_red;\n\n .limited-chars__counter {\n color: $dark_red;\n }\n }\n\n textarea.has-error,\n input.has-error {\n border: 1px solid $red;\n &:focus {\n outline-color: $red;\n }\n\n }\n\n\n\n .enp-tooltip {\n position: relative;\n }\n\n .enp-tooltip__activator {\n\n &:focus + .enp-tooltip__description,\n &:focus > .enp-tooltip__description {\n display: block;\n }\n }\n\n .enp-tooltip__description {\n display: none;\n position: absolute;\n left: 103%;\n margin-bottom: 2rem;\n border-radius: 3px;\n background: $light_gray;\n font-size: 0.9rem;\n padding: 0.9rem;\n max-width: 200px;\n }\n\n\n}\n\n.enp-sticky {\n position: relative;\n left: 0;\n right: 0;\n top: 0;\n z-index: 999;\n\n &.enp-sticky--fixed {\n position: fixed;\n }\n}\n\n.enp-breadcrumb-link {\n font-size: 0.85rem;\n}\n\n.enp-breadcrumb-link__icon {\n position: relative;\n top: 0.45rem;\n left: 0.4rem;\n}\n","//fonts\n$fontBody : Arial,monospace, helvetica, arial, sans-serif;\n$fontTitle : Arial,monospace, helvetica, arial, sans-serif;\n\n// // // colors\n$font : #1d1c25;\n$background: #FAF9FB;\n$title : #5D5E5F;\n\n// Blues\n$blue: #00A9B7;\n$dark_blue: #333F48;\n$light_blue: lighten($dark_blue, 40);\n\n// Grays\n$light_gray: #FAF9FB;\n$really_light_gray: lighten($light_gray, 1);\n$gray: darken($light_gray, 2);\n$dark_gray: darken($gray, 5);\n$darker_gray: darken($dark_gray, 25);\n$darkest_gray: darken($dark_gray, 50);\n\n// Other colors\n$khaki: #CCA562;\n$green: #60AAAD;\n$dark_green: darken($green, 8);\n$red: #bf5700;\n$dark_red: darken($red, 8);\n$fade_red: #C1893E;\n\n// Elements\n$link: #bf5700;\n$link_hover: darken($link, 8);\n// animation\n$fastInEaseOut: cubic-bezier(0.000, 0, .3, 1);\n\n\n$breakpoints: (\n \"small\" : 400px,\n \"medium\" : 700px,\n \"large\" : 1000px\n);\n\n// -----------------------------------------------------------------------------\n// Core\n// -----------------------------------------------------------------------------\n\n// Caching current breakpoint\n// Not meant to be manually edited\n$default-breakpoint: root;\n$current-breakpoint: $default-breakpoint;\n\n// The usual breakpoint mixin\n// Except it updates the $current-breakpoint variable\n// 1. If breakpoint name exists in map\n// 2. Update $current-breakpoint\n// 3. Open a media query\n// 4. Let the user dump content\n// 5. Then reset $current-breakpoint\n// 6. If breakpoint name doesn't exist in map, warn the user\n@mixin breakpoint($breakpoint) {\n $value: map-get($breakpoints, $breakpoint);\n\n @if $value != null { // 1\n $current-breakpoint: $breakpoint !global; // 2\n @media (min-width: $value) { @content; } // 3\n $current-breakpoint: $default-breakpoint !global; // 5\n }\n\n @else {\n @warn \"Invalid breakpoint `#{$breakpoint}`.\"; // 6\n }\n}\n\n// for only targeting a specific device\n// NOTE: DOESN'T SUPPORT THE @include placeholders!!!\n@mixin media($query) {\n @if $query == max-small {\n $media_query: \"max-width: #{map-get($breakpoints, \"small\")}\";\n } @else if $query == only-medium {\n $media_query: \"min-width: #{map-get($breakpoints, \"medium\")}) and (max-width: #{(map-get($breakpoints, \"large\") - 1px)}\";\n } @else if $query == max-medium {\n $media_query: \"max-width: #{(map-get($breakpoints, \"medium\") - 1px)}\";\n } @else if $query == max-large {\n $media_query: \"max-width: #{(map-get($breakpoints, \"large\") - 1px)}\";\n } @else {\n // just use the number provided as a max width\n $media_query: \"max-width: #{$query}\";\n }\n\n @if variable-exists(media_query) {\n @media ($media_query) {\n @content;\n }\n }\n\n}\n","@mixin clearfix {\n &:after {\n content: \"\";\n display: table;\n clear: both;\n }\n}\n\n@mixin container {\n max-width: 80vw;\n margin: 0 auto;\n // @include clearfix;\n}\n\n@mixin well {\n padding: 1.6rem;\n margin-bottom: 1.6rem;\n background: $light_blue;\n @include border-radius;\n border: 1px solid #eee;\n border-bottom-color: #ccc;\n\n @include breakpoint(medium) {\n margin-bottom: 2.6rem;\n padding: 1.6rem 2rem;\n }\n}\n\n@mixin container--wide {\n @include container;\n\n @include breakpoint(medium) {\n max-width: 1000px;\n }\n\n @include breakpoint(large) {\n max-width: 1440px;\n }\n}\n\n\n@mixin container--thin {\n @include container;\n // max-width: 512px;\n}\n\n@mixin container--really-thin {\n @include container;\n max-width: 300px;\n}\n\n@mixin container--form {\n @include container--thin;\n\n .enp-input,\n .enp-textarea {\n width: 100%;\n }\n}\n\n@mixin container--form--thin {\n @include well;\n @include container--really-thin;\n\n .enp-input,\n .enp-textarea {\n width: 100%;\n }\n}\n\n@mixin flex-container { // no pseudo element to clear and break spacing\n @include container;\n}\n\n@mixin flex-container--wide { // no pseudo element to clear and break spacing\n @include flex-container;\n\n @include breakpoint(medium) {\n max-width: 840px;\n }\n\n @include breakpoint(large) {\n max-width: 1000px;\n }\n}\n\n@mixin flex {\n display: flex;\n}\n\n@mixin flex-list__item {\n flex-basis: 100%;\n margin: 0;\n border-bottom-color: #ddd;\n}\n\n@mixin flex-spread {\n @include flex;\n justify-content: space-between;\n}\n\n@mixin flex-spread-vertical {\n @include flex-spread;\n flex-direction: column;\n}\n\n@mixin flex-spread-around {\n @include flex;\n justify-content: space-around;\n}\n\n@mixin flex-bottom {\n @include flex;\n align-items: flex-end;\n align-content: flex-end;\n}\n\n@mixin flex-center {\n @include flex;\n justify-content: center;\n align-content: center;\n align-items: center;\n}\n\n@mixin flex-vertical-center {\n @include flex;\n align-content: center;\n align-items: center;\n}\n\n@mixin flex-inline {\n @include flex;\n @include ul-no-style;\n margin-bottom: 0;\n}\n\n@mixin flex-inline__item {\n margin-right: 10px;\n\n &:last-of-type {\n margin-right: 0;\n }\n}\n\n\n@mixin flex-grid {\n @include flex;\n flex-flow: column wrap;\n align-items: stretch;\n @include ul-no-style;\n}\n\n@mixin flex-grid__item {\n flex-basis: 100%;\n padding: 1rem 1.2rem;\n background-color: $gray;\n border: 1px solid #eee;\n border-bottom: 1px solid #ddd;\n list-style: none;\n transition: all .35s $fastInEaseOut;\n margin: 0 0 0.8rem;\n\n // @include breakpoint(medium) {\n // flex-basis: 100%;\n // max-width: 100%;\n // margin: 0 2% 0.8rem 0;\n\n // &:nth-child(2n) {\n // margin-right: 0;\n // }\n // }\n\n // @include breakpoint(large) {\n // flex-basis: 100%;\n // max-width: 100%;\n // margin-right: 1.25%;\n\n // &:nth-child(2n) {\n // margin-right: 1.25%;\n // }\n\n // &:nth-child(3n) {\n // margin-right: 0;\n // }\n // }\n}\n\n@mixin flex-grid__title {\n font-size: 1rem;\n padding-bottom: 0.5rem;\n}\n","body #enp-quiz {\n color: $font;\n font-family: $fontBody;\n font-size: 1em;\n line-height: 1.6;\n font-weight: 400;\n\n @include breakpoint(medium) {\n font-size: 1.3em;\n }\n}\n\n#enp-quiz {\n /* Headings */\n h1,h2,h3,h4,h5,h6 {\n font-family: $fontTitle;\n color: $title;\n clear: both;\n margin: 0 0 .2rem;\n font-weight: bold;\n line-height: 1.2em;\n }\n\n h1 {\n font-size: 2em;\n }\n\n h2 {\n font-size: 1.75em;\n }\n\n h3 {\n font-size: 1.475em;\n }\n\n h4 {\n font-size: 1.3em;\n }\n\n h5 {\n font-size: 1.125em;\n }\n\n h6 {\n font-size: 1em;\n }\n\n p+h1, ul+h1,\n p+h2, ul+h2,\n p+h3, ul+h3,\n p+h4, ul+h4,\n p+h5, ul+h5,\n p+h6, ul+h6 {\n margin-top: 1.8em;\n }\n\n /* Text elements */\n p {\n font-size: 0.85em;\n margin-bottom: 1.125em;\n font-weight: 300;\n }\n ul, ol {\n margin: 0 0 1.6em 1.25em;\n }\n ul {\n list-style: disc;\n }\n ol {\n list-style: decimal;\n }\n li > ul,\n li > ol {\n margin-bottom: 0;\n margin-left: 1.6em;\n }\n\n b, strong {\n font-weight: bold;\n }\n\n dfn, cite, em {\n font-family: georgia, times, serif;\n font-style: italic;\n }\n\n pre {\n background: #eee;\n font-family: \"Courier 10 Pitch\", Courier, monospace;\n font-size: .95em;\n line-height: 1.6;\n margin-bottom: 1.6em;\n padding: 1.6em;\n overflow: auto;\n max-width: 100%;\n overflow: scroll;\n max-width: 68vw;\n overflow-wrap: break-word;\n }\n .code, code, kbd, tt, var {\n font: .7em Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n }\n\n table {\n border: none;\n\n th {\n font-family: $fontTitle;\n font-size: .8rem;\n text-transform: uppercase;\n border: none;\n border-bottom: 1px solid #ddd;\n }\n\n td {\n font-family: $fontBody;\n font-size: 1rem;\n border: none;\n border-bottom: 1px solid #eee;\n }\n\n tr:nth-child(even) td {\n background: $really_light_gray;\n }\n\n tr:last-child td {\n border-bottom: none;\n }\n }\n\n figure {\n margin: 0;\n }\n\n img {\n height: auto; /* Make sure images are scaled correctly. */\n max-width: 100%; /* Adhere to container width. */\n }\n\n /* Links */\n a {\n color: $link;\n text-decoration: none;\n transition: color .2s;\n touch-action: manipulation; // remove 300ms delay for ie\n\n .enp-icon {\n fill: $link;\n }\n }\n\n a:hover,\n a:focus,\n a:active {\n color: $link_hover;\n\n .enp-icon {\n fill: $link_hover;\n }\n }\n\n button {\n &:focus {\n @include focus--glow;\n }\n }\n\n .enp-btn {\n @include btn;\n }\n\n\n .enp-btn--add {\n @include btn--dashed;\n width: 100%;\n }\n\n .enp-btn--disabled {\n @include disabled;\n }\n\n .enp-btn--enabled {\n animation: expand .6s;\n }\n\n .enp-icon {\n width: 24px;\n height: 24px;\n transition: all .2s;\n }\n\n .enp-page-title {\n font-size: 1.6rem;\n }\n}\n","@keyframes slideInBottom {\n 0% {\n opacity: 0;\n transform: translate3d(0, 100px, 0);\n }\n 100% {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n}\n\n@keyframes slideInTop {\n 0% {\n opacity: 0;\n height: auto;\n transform: translate3d(0, -20px, 0);\n }\n 100% {\n opacity: 1;\n height: auto;\n transform: translate3d(0, 0, 0);\n }\n}\n\n@keyframes slideInTop--reduced-opacity {\n 0% {\n opacity: 0;\n height: auto;\n transform: translate3d(0, -20px, 0);\n }\n 100% {\n opacity: 0.8;\n height: auto;\n transform: translate3d(0, 0, 0);\n }\n}\n\n\n@keyframes slideOutTop {\n 0% {\n overflow: hidden;\n height: 100px;\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n 100% {\n height: 0;\n opacity: 0;\n transform: translate3d(0, -20px, 0);\n }\n}\n\n@keyframes removeElement {\n 0% {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n 100% {\n padding: 0;\n margin: 0;\n opacity: 0;\n height: 0;\n z-index: -1;\n transform: translate3d(-200px, 0, 0);\n }\n}\n\n@keyframes removeAnswers {\n 0% {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n 100% {\n padding: 0;\n opacity: 0;\n display: none;\n height: 0;\n z-index: -1;\n transform: translate3d(-200px, 0, 0);\n }\n}\n\n@keyframes removeQuestion {\n 0% {\n opacity: 1;\n transform: translateX(0);\n }\n 100% {\n opacity: 0;\n transform: translateX(-200px);\n }\n}\n\n@keyframes showNextQuestion {\n 0% {\n opacity: 0;\n transform: translateX(200px);\n }\n\n 100% {\n opacity: 1;\n transform: translateX(0);\n }\n}\n\n@keyframes expand {\n 0% {\n opacity: 0.8;\n transform: scale3d(1, 1, 1);\n box-shadow: 0 0 0px rgba(0,0,0,.3);\n }\n\n 40% {\n opacity: 1;\n }\n\n 70% {\n opacity: 1;\n transform: scale3d(1.1, 1.1, 1);\n box-shadow: 0 0 8px rgba(0,0,0,.4);\n }\n\n 100% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n box-shadow: 0 0 0px rgba(0,0,0,.3), inset 0 2px 0 rgba(0,0,0,.2);\n }\n}\n\n@keyframes checkmark {\n 0% {\n opacity: 0;\n transform: scale3d(0.2, 0.2, 1);\n }\n 5% {\n opacity: 1;\n }\n 10% {\n transform: scale3d(1.4, 1.4, 1);\n }\n 12% {\n transform: scale3d(1, 1, 1);\n }\n 90% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n 92% {\n transform: scale3d(1.4, 1.4, 1);\n }\n 100% {\n opacity: 0;\n transform: scale3d(0.2, 0.2, 1);\n }\n\n}\n\n@keyframes fadeOut {\n 0% {\n opacity: 1;\n }\n 100% {\n opacity: 0;\n }\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n@keyframes navSlideIn {\n 0% {\n transform: translate3d(0, -200px, 0);\n }\n 100% {\n transform: translate3d(0, 0, 0);\n }\n}\n\n\n.spinner {\n margin: 0 auto;\n width: 70px;\n text-align: center;\n}\n\n.spinner > div {\n width: 18px;\n height: 18px;\n background-color: #333;\n\n border-radius: 100%;\n display: inline-block;\n -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;\n animation: sk-bouncedelay 1.4s infinite ease-in-out both;\n}\n\n.spinner .bounce1 {\n -webkit-animation-delay: -0.32s;\n animation-delay: -0.32s;\n}\n\n.spinner .bounce2 {\n -webkit-animation-delay: -0.16s;\n animation-delay: -0.16s;\n}\n\n@-webkit-keyframes sk-bouncedelay {\n 0%, 80%, 100% { -webkit-transform: scale(0) }\n 40% { -webkit-transform: scale(1.0) }\n}\n\n@keyframes sk-bouncedelay {\n 0%, 80%, 100% {\n -webkit-transform: scale(0);\n transform: scale(0);\n } 40% {\n -webkit-transform: scale(1.0);\n transform: scale(1.0);\n }\n}\n","#enp-quiz {\n transition: background .25s $fastInEaseOut;\n\n .enp-container {\n // @include container;\n }\n\n .enp-aside {\n @include well;\n @include container--thin;\n font-size: 1.2rem;\n background: $light_gray;\n }\n\n .enp-aside__title {\n @include small-uppercase;\n font-weight: 600;\n }\n\n .enp-page-title {\n border-bottom: 2px solid $blue;\n }\n}\n","\n\n// enter the root BEM class and this will output the correct CSS for you\n@mixin radio-block($rootBEM) {\n .#{$rootBEM}__legend {\n @include radio-block__legend ;\n }\n\n .#{$rootBEM}__input {\n @include radio-block__input ;\n }\n\n .#{$rootBEM}__label {\n @include radio-block__label ;\n }\n\n .#{$rootBEM}__input:checked + .#{$rootBEM}__label {\n @include radio-block__label--checked ;\n }\n\n .#{$rootBEM}__input:focus + .#{$rootBEM}__label {\n @include radio-block__label--focus ;\n }\n}\n\n@mixin radio-inline($rootBEM) {\n .#{$rootBEM}__legend {\n @include radio-inline__legend ;\n }\n\n .#{$rootBEM}__input {\n @include radio-inline__input ;\n }\n\n .#{$rootBEM}__label {\n @include radio-inline__label ;\n }\n\n .#{$rootBEM}__input:checked + .#{$rootBEM}__label {\n @include radio-inline__label--checked ;\n }\n\n .#{$rootBEM}__input:focus + .#{$rootBEM}__label {\n @include radio-inline__label--focus ;\n }\n\n}\n\n@mixin label {\n display: block;\n color: lighten($font, 10);\n font-weight: normal;\n font-size: 0.85rem;\n text-transform: uppercase;\n}\n\n@mixin legend {\n @include label;\n padding-top: 1.6rem;\n margin-bottom: 0.2rem;\n border: none;\n}\n\n@mixin label--bold {\n @include label;\n font-weight: 500;\n}\n\n@mixin legend--bold {\n @include label--bold;\n}\n\n@mixin input {\n font-size: 1rem;\n font-family: $fontBody;\n padding: 0.8rem 0.5rem;\n background: #fff;\n border: 1px solid #aaa;\n border-radius: 3px;\n width: 20rem;\n max-width: 100%;\n margin-bottom: 1.2rem;\n\n @include breakpoint(medium) {\n padding: 0.8rem;\n width: 100%;\n }\n}\n\n@mixin input--large {\n @include input;\n padding: 1rem 1.2rem;\n font-size: 1rem;\n}\n\n@mixin input--xl {\n @include input;\n font-weight: bold;\n font-size: 1.6rem;\n margin-bottom: 1rem;\n\n &::placeholder {\n font-weight: bold;\n }\n}\n\n@mixin textarea {\n @include input;\n line-height: 1.5;\n\n &:focus {\n @include focus--glow;\n }\n}\n\n\n/*\n@mixin no-radio__input {\n display: inline-block;\n width: 0;\n margin: 0;\n padding: 0;\n opacity: 0;\n overflow: hidden;\n}\n\n@mixin no-radio__label {\n display: inline-block;\n position: relative;\n left: -1rem;\n padding: .2rem .6rem;\n @include small-uppercase;\n font-size: .8rem;\n font-weight: normal;\n background: transparent;\n border-radius: 3px;\n transition: all .2s;\n}*/\n\n@mixin radio-block__legend {\n @include legend;\n margin-bottom: 0.6rem;\n}\n\n@mixin radio-block__input {\n position: absolute;\n z-index: 9;\n margin-left: 9px;\n}\n\n@mixin radio-block__label {\n text-transform: capitalize;\n background: #f2f2f2;\n display: block;\n padding: 5px 10px 5px 39px;\n position: relative;\n top: -6px;\n box-shadow: inset -1px -1px 0 rgba(0,0,0,.1), inset 30px 0px 0 rgba(255,255,255,.7), inset 31px 0px 0 rgba(0,0,0,.1);\n}\n\n@mixin radio-block__label--checked {\n background: $blue;\n color: #fff;\n text-shadow: 0 0 1px rgba(0,0,0,.7);\n}\n\n@mixin radio-block__label--focus {\n z-index: 8;\n @include focus--glow ;\n}\n\n@mixin radio-inline__legend {\n @include legend;\n}\n\n@mixin radio-inline__input {\n @include screen-reader-text;\n}\n\n@mixin radio-inline__label {\n text-transform: capitalize;\n display: inline-block;\n padding: 0.2rem 0.5rem;\n border-radius: 3px;\n cursor: pointer;\n}\n\n@mixin radio-inline__label--checked {\n @include radio-block__label--checked ;\n}\n\n@mixin radio-inline__label--focus {\n @include radio-block__label--focus ;\n}\n\n@mixin select--wide--chevron {\n width: 100%;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-size: 0.85rem;\n padding: 0.7rem 32px 0.7rem 0.8rem;\n border: 1px solid #bbb;\n border-radius: 3px;\n margin-bottom: 1.6rem;\n background: url(../svg/chevron-down.svg) 100% 50% no-repeat;\n background-color: #fff;\n box-shadow: inset -26px 0 0 rgba(0,0,0,.1);\n}\n\n\n#enp-quiz {\n\n fieldset {\n border: none;\n margin: 0;\n padding: 0;\n }\n\n .enp-label {\n @include label;\n &__sm {\n font-size: 0.85rem;\n }\n &.enp-quiz-winlose__label {\n padding: 1rem 0 0 0;\n }\n }\n\n .enp-legend {\n @include legend;\n padding-top: 0;\n }\n\n .enp-input {\n @include input;\n &__sm {\n padding: 5px;\n margin-bottom: 5px;\n }\n &.enp-input--has-description {\n margin-bottom: 0.2rem;\n }\n }\n\n .enp-textarea-description,\n .enp-input-description {\n margin-bottom: 1rem;\n font-size: 0.85rem;\n }\n\n .enp-textarea-description--before,\n .enp-input-description--before {\n margin-bottom: 0;\n }\n\n .enp-input::placeholder,\n .enp-textarea::placeholder {\n font-family: $fontBody;\n font-weight: 300;\n color: lighten($font, 40);\n }\n\n .enp-textarea {\n @include textarea;\n\n &.enp-textarea--has-description {\n margin-bottom: 0.2rem;\n }\n &.enp-textarea--has-description--before {\n margin-bottom: 1.2rem;\n }\n }\n\n .enp-embed-code {\n @include textarea;\n padding: 1.6rem;\n font-size: 0.7rem;\n font-family: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n\n @include media(max-medium) {\n padding: .8rem;\n }\n }\n}\n","#enp-quiz {\n // .enp-publish-page-container,\n // .enp-preview-page-container {\n // @include container--wide;\n // position: relative;\n // @include xpadding-vertical;\n // background: $really_light_gray;\n\n\n // }\n\n .enp-publish-page-container,\n .enp-quiz-form-container,\n .enp-preview-page-container {\n display: grid;\n grid-column: 2/-1;\n gap: 1rem;;\n width: 100%;\n justify-items: center;\n \n @include media(max-small) {\n padding-left: 8px;\n padding-right: 8px;\n }\n @include breakpoint(medium) {\n justify-items: start;\n }\n }\n // .enp-breadcrumb-link__container {\n // display: grid;\n // grid-column: 1/span 1;\n // justify-content: center;\n // align-items: flex-start;\n // @include xpadding-vertical;\n // }\n .enp-quiz-form {\n display: grid;\n padding-left: 0;\n padding-right: 0;\n @include breakpoint(large) {\n width: 100%;\n max-width: 40rem;\n }\n }\n\n .enp-preview-page-flex-container {\n display: grid;\n gap: 1rem;\n\n @include breakpoint(medium) {\n grid-template-columns: 1fr 3fr;\n // padding: 0 2rem;\n }\n }\n\n .enp-quiz-title__label {\n @include label--bold;\n }\n\n .enp-quiz-title__textarea {\n @include input--xl;\n }\n \n textarea {\n color: #000;\n }\n\n .enp-accordion-container {\n margin-bottom: 1.6rem;\n position: relative;\n }\n\n .enp-question-content {\n @include accordion;\n padding-top: 0;\n position: relative;\n }\n\n .enp-question-inner {\n padding: 1.6rem 1.6rem 1rem;\n\n @include breakpoint(medium) {\n padding-right: 2.8rem;\n padding-left: 2.9rem;\n }\n\n }\n\n .enp-question-title__label {\n @include label--bold;\n }\n\n .enp-question-title__textarea {\n @include input--large;\n }\n\n .enp-question-image-upload {\n @include btn--dashed--light--alt-bg;\n @include small-uppercase;\n position: relative;\n margin-bottom: 2rem;\n transform: translate3d(0, 0, 0);\n transition: all .3s $fastInEaseOut;\n\n .enp-question-image-upload__icon--photo {\n @include icon--xxxl;\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n margin: 0 auto;\n transform: translate3d(0, 0, 0);\n z-index: -1;\n transition: opacity .2s, transform .3s $fastInEaseOut;\n }\n\n .enp-question-image-upload__icon--add {\n @include icon--circle--small;\n @include icon--gray-bg;\n margin-right: 5px;\n position: relative;\n top: 0.2rem;\n }\n\n &:hover,\n &:focus,\n &:active {\n padding-top: 5rem;\n padding-bottom: 2rem;\n\n .enp-question-image-upload__icon--photo {\n opacity: 1;\n z-index: 1;\n transform: translate3d(0, 1.75rem, 0);\n }\n\n .enp-question-image-upload__icon--add {\n @include icon--gray-bg--hover;\n }\n }\n }\n\n .enp-question-image__container {\n position: relative;\n margin-bottom: 1rem;\n }\n\n .enp-question-image {\n margin-bottom: 1.2rem;\n }\n\n @include radio-inline(enp-question-type);\n\n .enp-question-type__label {\n position: relative;\n z-index: 9;\n }\n\n .enp-slider-options,\n .enp-mc-options {\n margin-top: 0rem;\n display: none;\n animation: slideOutTop .25s $fastInEaseOut forwards;\n animation-delay: 0s, .05s;\n }\n\n .enp-question-type__input--slider:checked ~ .enp-slider-options,\n .enp-question-type__input--mc:checked ~ .enp-mc-options {\n visibility: visible;\n display: block;\n animation: fadeIn .45s $fastInEaseOut forwards;\n }\n\n .enp-mc-options__list {\n @include ul-no-style;\n }\n\n .enp-mc-option {\n position: relative;\n padding-left: 6px;\n\n @include breakpoint(medium) {\n padding-left: 0;\n }\n }\n\n .enp-mc-options__legend {\n @include legend--bold;\n }\n\n .enp-mc-option__add,\n .enp-mc-option__button--correct,\n .enp-mc-option__button--delete {\n display: none;\n }\n\n .enp-question-type__input--mc:checked ~ .enp-mc-options {\n .enp-mc-option__add,\n .enp-mc-option__button--correct,\n .enp-mc-option__button--delete {\n display: block;\n }\n }\n\n .enp-button__question-image-delete,\n .enp-mc-option__button--delete {\n @include btn--reset;\n position: absolute;\n top: 9px;\n right: -24px;\n fill: #bbb;\n cursor: pointer;\n\n @include breakpoint(medium) {\n right: -30px;\n }\n\n &:focus,\n &:hover {\n fill: $red;\n }\n }\n\n .enp-mc-option__button--correct {\n @include btn--reset;\n position: absolute;\n top: 8px;\n left: -24px;\n\n @include breakpoint(medium) {\n left: -35px;\n }\n\n .enp-mc-option__icon--correct {\n @include icon--circle--pad;\n width: 28px;\n height: 28px;\n fill: #fff;\n background: #fff;\n cursor: pointer;\n border: 2px solid $fade_red;\n transition: all .2s;\n }\n\n &:focus .enp-mc-option__icon--correct,\n &:hover .enp-mc-option__icon--correct {\n background: #fff;\n border-color: $green;\n fill: $green;\n }\n\n &:disabled {\n opacity: 1;\n\n .enp-mc-option__icon--correct {\n cursor: default;\n fill: #fff;\n border: 2px solid transparent;\n }\n }\n }\n\n .enp-mc-option--correct {\n .enp-mc-option__input {\n box-shadow: inset 0 0 3px $blue;\n border: 1px solid $blue;\n }\n\n .enp-mc-option__button--correct:focus .enp-mc-option__icon--correct,\n .enp-mc-option__button--correct:hover .enp-mc-option__icon--correct,\n .enp-mc-option__icon--correct {\n fill: #fff;\n border-color: $blue;\n background: $blue;\n }\n }\n\n .enp-mc-option__add {\n @include btn--dashed--light--alt-bg;\n @include small-uppercase;\n text-align: left;\n padding: 0.7rem 0.75rem 0.8rem;\n\n .enp-mc-option__add__icon {\n @include btn--icon__icon--circle--small ;\n @include icon--gray-bg;\n position: relative;\n top: 0.2rem;\n }\n\n &:hover .enp-mc-option__add__icon {\n @include icon--gray-bg--hover;\n }\n }\n\n .enp-slider-options .enp-input {\n max-width: 11.8rem;\n }\n\n .enp-slider-range__container .enp-input,\n .enp-slider-correct__container .enp-input {\n max-width: 8.8rem;\n @include breakpoint('small') {\n max-width: 11.8rem;\n }\n }\n\n .enp-slider-preview {\n border: 1px solid #ddd;\n margin-top: 0.2rem;\n margin-bottom: 1.6rem;\n padding: 1.6rem 1.6rem .6rem;\n position: relative;\n\n .enp-label--slider-preview {\n position: absolute;\n width: 100%;\n top: 0.2rem;\n left: 0.4rem;\n font-size: 0.75rem;\n text-transform: uppercase;\n }\n }\n\n .enp-slider-range__container,\n .enp-slider-correct__container {\n @include flex-spread;\n align-items: center;\n }\n\n .enp-slider-range__helper,\n .enp-slider-correct__helper {\n color: #777;\n font-size: 0.85rem;\n background: #fff;\n padding: 0 .3rem;\n position: relative;\n\n &:before {\n content: '';\n position: absolute;\n top: 44%;\n height: 4px;\n background: #ddd;\n width: 120px;\n left: -60px;\n z-index: -1;\n transition: width 0.7s $fastInEaseOut, background 1.6s $fastInEaseOut;\n }\n }\n\n .enp-slider-options {\n margin-bottom: 2rem;\n\n .enp-accordion-header {\n text-transform: uppercase;\n font-size: 0.85rem;\n padding: 0.675rem;\n }\n\n .enp-slider-advanced-options__content {\n border: none;\n box-shadow: none;\n padding-top: 1rem;\n padding-bottom: 0;\n margin-bottom: 0;\n }\n }\n\n .enp-slider-correct-high__container {\n position: relative;\n }\n\n .enp-slider-correct-high__input-container--hidden {\n display: none;\n }\n\n .enp-slider-correct__helper--hidden {\n &:before {\n width: 0;\n background: $green;\n }\n }\n\n .enp-slider-correct-answer-range--add-range {\n @include btn--dashed--light--alt-bg;\n margin-left: 0.8rem;\n font-size: 0.7rem;\n\n @include breakpoint('small') {\n font-size: 0.8rem;\n padding: .7rem;\n }\n\n @include breakpoint('medium') {\n padding: .7rem 1.2rem;\n min-width: 11.4rem;\n }\n\n .enp-slider-correct-answer-range__icon {\n @include btn--icon__icon--circle--small ;\n @include icon--gray-bg;\n position: relative;\n left: -0.2rem;\n }\n\n &:hover .enp-slider-correct-answer-range__icon {\n @include icon--gray-bg--hover;\n }\n }\n\n .enp-slider-correct-answer-range--remove-range {\n position: absolute;\n right: -1.6rem;\n bottom: 1.6rem;\n background: none;\n border: none;\n box-shadow: none;\n padding: 0 0.1rem;\n\n .enp-slider-correct-answer-range__icon {\n width: 1.2em;\n height: 1.2em;\n fill: $dark_gray;\n }\n\n &:hover,\n &:focus {\n .enp-slider-correct-answer-range__icon {\n fill: $red;\n }\n }\n\n @include breakpoint(medium) {\n top: -0.2rem;\n right: -0.2rem;\n bottom: auto;\n }\n\n }\n\n .enp-slider-options .enp-input:read-only {\n background: $light_gray;\n }\n\n .enp-answer-explanation {\n background: $light_gray;\n padding-top: 2rem;\n box-shadow: inset 1px 0px 0 #ccc, inset -1px -1px 0 #ccc, inset 0 1px 0 #ddd;\n }\n\n .enp-answer-explanation__label {\n @include label--bold;\n\n }\n\n .enp-question__button--delete {\n @include btn--reset;\n position: absolute;\n top: 9px;\n right: 9px;\n fill: #bbb;\n cursor: pointer;\n\n @include breakpoint(medium) {\n right: -30px;\n }\n\n &:hover {\n fill: $red;\n }\n }\n\n .enp-question__move {\n position: absolute;\n left: 15px;\n\n @include breakpoint(medium) {\n left: -40px;\n }\n }\n\n .enp-sort__placeholder {\n background: #ddd;\n height: 60px;\n width: 100%;\n max-height: 120px;\n margin-bottom: 1.6rem;\n }\n\n .ui-sortable .ui-sortable-helper {\n .ui-sortable-handle {\n cursor: move;\n cursor: grabbing;\n cursor: -webkit-grabbing;\n }\n }\n \n\n .enp-question__button--move {\n @include btn--reset;\n position: absolute;\n fill: #bbb;\n cursor: pointer;\n\n &:hover, &:focus {\n fill: #333;\n }\n\n &:disabled {\n opacity: 0.5;\n }\n }\n\n .enp-question__button--move--up {\n top: -25px;\n left: -4px;\n }\n\n\n .enp-question__button--move--down {\n top: 3px;\n right: -20px;\n }\n\n .enp-quiz-form__add-question {\n @include btn--icon;\n @include btn--dashed;\n padding-top: 1rem;\n padding-bottom: 1rem;\n margin-top: 1.6rem;\n margin-bottom: 2rem;\n\n .enp-add-question__icon {\n @include btn--icon__icon--circle--small;\n @include icon--normal;\n @include icon--gray-bg;\n position: relative;\n top: 0.2rem;\n }\n\n &:hover .enp-add-question__icon {\n @include icon--gray-bg--hover;\n }\n }\n\n .enp-btn--save__btns {\n @include flex;\n align-items: center;\n align-items: flex-start;\n }\n\n .enp-quiz-form__save {\n @include btn;\n width: 100%;\n margin-bottom: 1rem;\n opacity: 0.8;\n text-shadow: 0px -1px 2px rgba(0,0,0,.6);\n\n &:hover,\n &:focus {\n opacity: 1;\n }\n\n @include breakpoint(small) {\n padding: 1.2rem 1.8rem 1.1rem;\n margin-right: 3%;\n position: relative;\n }\n }\n\n .enp-quiz-form__save--reveal {\n animation: slideInTop--reduced-opacity .3s $fastInEaseOut;\n }\n\n @include btn--icon--circle(enp-btn--next-step);\n\n .enp-btn--next-step {\n // @include btn;\n width: 100%;\n padding: 1rem 1.4rem 1rem;\n\n @include breakpoint(medium) {\n padding: 1.2rem 1.8rem 1.1rem;\n }\n .enp-btn--next-step__icon {\n width: 1rem;\n height: 1rem;\n }\n // @include breakpoint(small) {\n // width: auto;\n // }\n\n /*\n * AFTER we have removed the Save button,\n * use this code to add the preview button into the\n * header\n @include media(max-medium) {\n padding: 1rem 1.4rem 1rem;\n }\n\n @include breakpoint(medium) {\n position: absolute;\n right: 20px;\n top: 10px;\n width: auto;\n z-index: 999999;\n\n &.enp-btn--next-step--fixed {\n position: fixed;\n animation: navSlideIn .25s;\n }\n }*/\n\n }\n\n .enp-btn--next-step--reveal {\n animation: slideInTop .3s $fastInEaseOut;\n }\n\n\n // UX interactions\n .enp-mc-option--inputs,\n .enp-accordion-header--inserting {\n animation: slideInBottom .4s $fastInEaseOut forwards;\n }\n\n .enp-mc-option--remove,\n .enp-question--remove,\n .enp-question__image--remove {\n animation: removeElement .5s $fastInEaseOut forwards;\n }\n\n .enp-image-upload-wait {\n @include btn--dashed--light--alt-bg;\n padding-top: 4rem;\n padding-bottom: 4rem;\n margin-bottom: 1rem;\n width: 100%;\n }\n\n // validation\n .enp-accordion-header.question-has-error {\n color: $red;\n box-shadow: 0 0 3px $red;\n }\n\n}\n\n.enp-quiz.ui-sortable--sorting #enp-quiz .enp-accordion-content {\n display: none;\n}","#enp-quiz {\n\n\n .enp-quiz-settings-container {\n\n @include breakpoint(large) {\n // margin: 0;\n // width: 40%;\n // float: left;\n }\n }\n\n .enp-quiz-preview-container {\n\n @include breakpoint(large) {\n // width: 60%;\n // float: left;\n }\n\n }\n\n .enp-quiz-share__legend,\n .enp-quiz-settings__title {\n position: relative;\n @include small-uppercase;\n font-weight: 600;\n padding-top: 0;\n\n @include breakpoint(medium) {\n padding: 1em 0;\n }\n }\n\n .enp-quiz-settings__form {\n margin-bottom: 3rem;\n overflow: visible;\n @include breakpoint(large) {\n padding: 0;\n margin-bottom: 0;\n }\n }\n\n .enp-fieldset {\n @include breakpoint(medium) {\n // this is necessary to keep the form elements visible on top of the\n // white BG on the sidebar. We can't set this on the whole form bc\n // then the publish button won't be positioned right\n position: relative;\n }\n }\n\n .enp-title-display__legend {\n padding-top: 0;\n\n @include breakpoint(medium) {\n padding-top: 0.4rem;\n }\n }\n\n .enp-quiz-share__input,\n .enp-quiz-styles__input {\n width: 100%;\n }\n\n .enp-quiz-styles__textarea--custom-css {\n font-family: Monaco,Consolas,\"Andale Mono\",\"DejaVu Sans Mono\",monospace;\n font-size: 0.9rem;\n min-height: 200px;\n }\n\n .enp-fieldset--section {\n padding: 1.6rem 1rem;\n @include breakpoint(large) {\n padding: 1rem;\n }\n\n &.enp-accordion-content--open {\n margin-bottom: 0;\n }\n }\n\n .enp-quiz-share--facebook {\n margin-bottom: 2rem;\n }\n\n @include radio-inline(enp-title-display);\n @include radio-inline(enp-mc-options-order);\n\n .enp-mc-options-order {\n margin-bottom: 1.6rem;\n }\n\n .enp-quiz-share__textarea {\n min-height: 7.6rem;\n margin-bottom: 2rem;\n\n @include breakpoint('medium') {\n min-height: 4.6rem;\n }\n\n @include breakpoint('large') {\n min-height: 7.6rem;\n }\n\n\n }\n\n .enp-preview-form__submit {\n margin-top: 1.6rem;\n margin-bottom: 1.6rem;\n }\n\n .enp-quiz-preview__title {\n @include small-uppercase;\n font-weight: 600;\n @include breakpoint(medium) {\n padding: 1em 0;\n }\n }\n\n .enp-preview-form__submit {\n @include btn;\n width: 100%;\n padding-top: 0.85rem;\n padding-bottom: 0.85rem;\n margin-bottom: 1rem;\n opacity: 0.8;\n text-shadow: 0px -1px 2px rgba(0,0,0,.6);\n\n &:hover,\n &:focus {\n opacity: 1;\n }\n }\n\n .enp-preview-form__submit--publish {\n width: 100%;\n position: relative;\n z-index: 99999999;\n padding: 1.05rem 1.8rem .95rem;\n }\n\n .enp-quiz-styles__iris-wrapper {\n position: relative;\n }\n\n // Fix for WP Color Picker formatting\n .iris-picker {\n box-sizing: content-box;\n position: relative;\n z-index: 9999999999;\n top: -1.2rem;\n margin-bottom: 1rem;\n padding-bottom: 3rem;\n padding-right: 30px;\n\n @include breakpoint(large) {\n position: absolute;\n top: 50px;\n left: 0;\n }\n\n &:last-of-type {\n margin-bottom: 0;\n }\n\n .ui-slider-handle:focus,\n .ui-draggable-handle:focus .ui-slider-handle {\n box-shadow: 0 0 3px rgba(0,0,0,.75);\n }\n\n }\n\n .enp-quiz-styles__set-default {\n @include btn--ghost;\n font-size: 0.75rem;\n position: absolute;\n left: 10px;\n bottom: 10px;\n }\n\n .enp-iris__close {\n @include btn--reset;\n position: absolute;\n top: 5px;\n right: 5px;\n fill: #888;\n cursor: pointer;\n }\n\n .enp-quiz-styles__input--color {\n padding-left: 45px;\n }\n\n .enp-quiz-styles__color-demo {\n width: 30px;\n height: 30px;\n border: 1px solid #ccc;\n top: 8px;\n left: 8px;\n border-radius: 3px;\n\n position: absolute;\n }\n\n\n}\n","#enp-quiz {\n .enp-share-quiz__container {\n @include breakpoint(medium) {\n padding: 0;\n border: none;\n }\n }\n /* Removing flexbox layout temporarily\n * because it wasn't laying out correctly before content loading\n * It would snap into the correct layout after a resize or textarea highlight\n .enp-publish-page-container {\n &:before {\n @include breakpoint(medium) {\n position: absolute;\n top: 0;\n bottom: 0;\n left: -100%;\n width: 128%;\n content: '';\n background: #fff;\n border-right: 1px solid #ddd;\n }\n\n @include breakpoint(large) {\n width: 124%;\n }\n }\n\n .enp-quiz-message {\n @include breakpoint(medium) {\n margin-left: 33%;\n }\n\n @include breakpoint(large) {\n margin-left: 26%;\n }\n }\n }\n\n .enp-publish-page-flex-container {\n @include breakpoint(medium) {\n @include flex;\n align-items: stretch;\n flex-direction: row-reverse;\n }\n }\n\n .enp-publish-page__aside-container {\n\n @include breakpoint(medium) {\n position: relative;\n margin: 0 6% 0 0;\n padding: 0;\n width: 24%;\n }\n\n @include breakpoint(large) {\n margin: 0;\n //padding-left: 20px;\n width: 20%;\n }\n }\n\n .enp-share-quiz__container,\n .enp-ab-ad__container {\n @include breakpoint(medium) {\n padding: 0;\n border: none;\n }\n }\n */\n\n .enp-share-quiz__url {\n display: block;\n font-size: 1rem;\n line-height: 1.4;\n word-wrap: break-word;\n }\n\n @include share_icons(enp-share-quiz);\n\n .enp-share-quiz {\n justify-content: space-around;\n margin-bottom: 0;\n .enp-icon--mail {\n background: $blue;\n }\n }\n}\n","#enp-quiz {\n .enp-ab-create__container {\n @include container--wide;\n width: 100%;\n background: $really_light_gray;\n padding-top: 3rem;\n padding-bottom: 3rem;\n @include breakpoint(large) {\n padding-top: 0;\n }\n }\n\n .enp-ab-create__form {\n @include container--thin;\n @include breakpoint(large) {\n @include container;\n margin: unset;\n }\n }\n\n .enp-ab-create__label {\n @include label--bold;\n }\n\n .enp-ab-create-title__textarea {\n @include input--xl;\n width: 100%;\n }\n\n .enp-ab-create__select {\n @include select--wide--chevron;\n }\n\n .enp-ab-create__submit {\n width: 100%;\n padding-top: 1em;\n padding-bottom: 1em;\n }\n}\n","// TEMP for dev theme\n#headerimg h1 {\n text-align: center;\n font-size: 40px !important;\n}\n#enp-quiz {\n\n &.enp-quiz__main {\n @include container;\n display: grid;\n gap: 1em;\n min-height: 85vh;\n \n @include breakpoint(large) {\n @include container--wide;\n grid-template-columns: 1fr 4fr;\n }\n }\n\n .enp-dash-container {\n @include xpadding-vertical;\n @include xpadding-horizontal;\n transition: all .25s $fastInEaseOut;\n }\n\n .enp-dash__section-aside {\n background-color: $background;\n @include breakpoint(medium) {\n @include xpadding-vertical;\n @include xpadding-horizontal;\n }\n }\n\n .enp-breadcrumb-link__container {\n padding-bottom: 2rem;\n }\n\n .enp-search-quizzes {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n padding: 1em;\n\n @include breakpoint(medium) {\n padding: 0.2rem 0;\n flex-wrap: nowrap;\n }\n @include breakpoint(large) {\n @include flex-spread-vertical;\n }\n }\n\n .enp-search-quizzes__form-item {\n margin-bottom: 0.6rem;\n flex: 0 1 48%;\n\n @include breakpoint(small) {\n margin-bottom: 0;\n margin-right: 1rem;\n flex: 1 0 auto;\n }\n\n }\n\n .enp-quiz-search {\n flex: 1 0 100%;\n position: relative;\n @include breakpoint(medium) {\n flex: 1 0 auto;\n }\n }\n\n .enp-search-quizzes__label {\n margin-bottom: 0;\n @include screen-reader-text ;\n }\n\n .enp-search-quizzes__select {\n padding: .3rem;\n border-radius: 3px;\n width: 100%;\n background-color: #ececec;\n @include breakpoint(large) {\n min-width: 200px;\n font-size: 0.85rem;\n }\n }\n\n .enp-quiz-search__input {\n width: 100%;\n margin: 0 0 0.1rem;\n padding: .3rem .3rem .3rem 26px;\n font-size: 0.85rem;\n @include breakpoint(medium) {\n // max-width: 200px;\n }\n }\n\n .enp-quiz-search__icon {\n position: absolute;\n bottom: 0.3rem;\n left: 0.2rem;\n width: 21px;\n height: 21px;\n }\n\n .enp-search-quizzes__button {\n padding: 0.2rem 0.8rem;\n }\n\n .enp-search-results-description {\n font-size: 0.85rem;\n }\n\n .enp-search-results-description__link {\n white-space: nowrap;\n }\n\n .enp-search-results-description__icon {\n width: 1.3em;\n height: 1.3em;\n position: relative;\n top: 4px;\n left: 2px;\n }\n\n .enp-dash__section-title {\n @include small-uppercase;\n margin-bottom: 0.325rem;\n border-bottom: 1px solid $dark-gray;\n @include breakpoint(medium) {\n padding: 2.5em 0 1em 0;\n }\n @include breakpoint(large) {\n padding: 1em 0;\n }\n }\n\n .enp-dash__ab-test-helper--not-enough-quizzes {\n color: $darker-gray;\n }\n\n .enp-view-toggle {\n cursor: pointer;\n opacity: .5;\n display: none; // hide the buttons for small screens\n\n @include breakpoint(medium) {\n display: flex;\n }\n }\n\n .enp-view-toggle__active {\n opacity: 1;\n }\n\n .enp-sort-by {\n margin-left: 5px;\n }\n\n .enp-dash-list {\n @include flex-grid;\n }\n\n .enp-dash-item {\n @include flex-grid__item ;\n @include flex-spread-vertical;\n display: flex;\n z-index: 1;\n flex-direction: column;\n align-content: flex-end;\n justify-content: flex-end;\n border: none;\n border-radius: 3px;\n }\n\n .enp-dash-item--published {\n box-shadow: inset 4px 0 0 $blue, 0 1px 0 rgba(0,0,0,.1);\n }\n\n .enp-dash-item--draft {\n box-shadow: inset 4px 0 0 $light_blue, 0 1px 0 rgba(0,0,0,.1);\n .enp-dash-item__title a {\n color: $dark_blue;\n }\n }\n\n .enp-dash-item--remove {\n animation: removeElement .5s $fastInEaseOut forwards;\n }\n\n .enp-dash-list--list-view {\n .enp-dash-item {\n margin: 0 0 0.8rem;\n flex-basis: 100%;\n }\n }\n\n .enp-dash-item__spinner {\n @include flex-center ;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n background: rgba(245,216,216,0.8);\n width: 100%;\n animation: fadeIn .3s $fastInEaseOut;\n }\n\n .enp-dash-item__header {\n padding: 0.5rem 1rem;\n background: $light_gray;\n border-bottom: 1px solid $dark_gray;\n display: flex;\n justify-content: space-between;\n align-items: center;\n @include border-radius;\n }\n\n .enp-dash-item__title {\n @include flex-grid__title ;\n padding: 0;\n margin-bottom: 0;\n a {\n color: $blue;\n }\n }\n\n .enp-dash-item__content {\n padding: 0rem 0 0.375rem;\n position: relative;\n transition: all .2s $fastInEaseOut;\n }\n\n .enp-dash-item__meta {\n @include hint;\n font-size: 0.75rem;\n }\n\n .enp-dash-item__username {\n word-wrap: break-word;\n padding-left: 0.4rem;\n margin-left: 0.2rem;\n border-left: 1px solid #ddd;\n }\n\n .enp-dash-item__title--ab-test {\n padding-bottom: 0;\n }\n\n .enp-dash-item__ab-quizzes {\n @include ul-no-style;\n font-size: 0.75rem;\n color: $darker_gray;\n margin-bottom: 0.8rem;\n }\n\n .enp-dash-item__nav {\n @include ul-no-style;\n margin-bottom: 0;\n font-size: 0.85rem;\n }\n\n .enp-dash-item__nav__item {\n display: flex;\n margin: 0;\n width: 100%;\n align-items: center;\n &:hover {\n background-color: $gray;\n .enp-dash-item__icon {\n fill: $red;\n }\n }\n a {\n font-weight: normal;\n color: $darker_gray;\n @include flex;\n align-items: center;\n width: 100%;\n padding: 12px;\n &:focus,\n &:hover {\n color: $red;\n outline: 1px dotted $link;\n outline-offset: 1px;\n .enp-dash-item__icon {\n fill: $red;\n }\n }\n }\n }\n .enp-delete-quiz {\n width: 100%;\n &:hover {\n .enp-dash-item__delete {\n color: $red;\n }\n .enp-icon {\n fill: $red;\n }\n }\n }\n .enp-dash-item__delete {\n @include btn--reset;\n @include flex;\n padding: 12px;\n align-items: center;\n position: relative;\n line-height: 1.6;\n color: $darker_gray;\n cursor: pointer;\n width: 100%;\n font-size: 0.85rem;\n .enp-icon {\n fill: $darker_gray;\n }\n }\n .enp-dash-item__icon {\n fill: $darker_gray;\n width: 15px;\n height: 15px;\n margin-right: 10px;\n }\n\n .enp-dash-item__nav--collapsible {\n display: none;\n position: absolute;\n z-index: 2;\n top: 44px;\n right: -17px;\n width: 195px;\n background-color: #fff;\n text-align: left;\n transform: translate3d(0,0,0);\n transition: all .2s $fastInEaseOut;\n\n .enp-dash-item__nav__item {\n cursor: pointer;\n }\n }\n\n .enp-dash-item__menu-action {\n height: 24px;\n background: none;\n border: none;\n color: #444;\n padding: 0;\n bottom: 0.2rem;\n right: 1.5rem;\n top: 1.5rem;\n cursor: pointer;\n }\n\n .enp-dash-item__menu-action-wrap {\n max-width: 0;\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n }\n\n .enp-dash-item__menu-action__icon {\n width: 15px;\n height: 15px;\n fill: $darker_gray;\n transition: all .3s $fastInEaseOut;\n }\n\n .enp-dash-item__menu-action__icon--bottom {\n \n }\n\n .enp-dash-item--menu-active {\n transform: translate3d(0,-3px,0);\n z-index: 2;\n .enp-dash-item__nav-wrap {\n position: relative;\n }\n\n &.enp-dash-item--published {\n box-shadow: inset 4px 0 0 $green, 0 2px 2px rgba(0,0,0,.2);\n }\n\n &.enp-dash-item--draft {\n box-shadow: inset 4px 0 0 lighten($green, 25%), 0 2px 2px rgba(0,0,0,.2);\n }\n\n .enp-dash-item__menu-action__icon--bottom {\n transform: rotateX(180deg);\n }\n\n .enp-dash-item__nav--collapsible {\n display: block;\n animation: slideInTop .25s $fastInEaseOut forwards;\n @include border-radius;\n @include box-shadow;\n }\n\n .enp-dash-item__content {\n opacity: 0.4;\n }\n\n }\n\n\n .enp-quiz-results {\n display: flex;\n justify-content: space-around;\n list-style: none;\n margin: 0.8rem 0 0;\n padding: 0;\n text-align: center;\n }\n\n .enp-quiz-results__item {\n\n margin: 0 2% 0 0;\n padding: 0;\n color: $title;\n\n @media (max-width:280px) {\n width: 100%;\n padding: 0;\n margin-bottom: 0.6rem;\n }\n }\n\n .enp-quiz-results__number {\n font-size: 1.6rem;\n line-height: 1;\n position: relative;\n }\n\n .enp-dash-item--draft .enp-quiz-results__number {\n opacity: 0.5;\n }\n\n .enp-quiz-results__number--average-score {\n color: darken($green, 8);\n\n &:after {\n content: '%';\n font-size: .9rem;\n position: absolute;\n top: .3rem;\n right: -1rem;\n }\n }\n\n .enp-quiz-results__label {\n text-transform: uppercase;\n font-size: .7rem;\n font-weight: 300;\n color: $darker_gray;\n }\n\n\n .enp-quiz-list__view {\n // @include flex-bottom;\n }\n\n .enp-dash-item--add-new__wrap {\n display: grid;\n gap: 1em;\n grid-template-columns: 1fr 1fr;\n }\n\n .enp-dash-list--quiz__container {\n display: grid;\n gap: 1em;\n @include breakpoint(large) {\n grid-template-columns: 1fr 1fr;\n }\n }\n\n .enp-dash-item--add-new {\n background: none;\n border: none;\n padding: 0;\n position: relative;\n @include header-space;\n }\n\n .enp-dash-link--add-new {\n @include btn--dashed--light;\n justify-content: flex-start;\n color: $light_blue;\n padding: 1rem 1.2rem;\n\n\n @include breakpoint(medium) {\n @include small-uppercase;\n @include flex-center;\n flex-direction: column;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n padding: 0.75rem 1.2rem 1.5rem 1.2rem;\n }\n\n .enp-dash-link__icon {\n @include icon--circle;\n @include icon--normal;\n margin-right: 5px;\n background-color: $light_blue;\n\n @include breakpoint(medium) {\n width: 2rem;\n height: 2rem;\n margin: 0.8rem 0 0.2rem;\n }\n }\n\n &:hover {\n color: $dark_blue;\n\n .enp-dash-link__icon {\n fill: #fff;\n background: $dark_blue;\n }\n }\n\n }\n\n .enp-quiz-message--welcome p {\n color: $font;\n }\n\n // pagination\n .enp-paginate {\n @include ul-no-style ;\n @include flex-center ;\n font-size: 1rem;\n }\n\n .enp-paginate__link {\n @include flex-center ;\n margin: 0 0.2rem;\n padding: 0 0.4rem;\n border-radius: 3px;\n font-weight: normal;\n\n }\n\n .enp-paginate__link--current-page {\n border: 2px solid $blue;\n }\n\n .enp-paginate__item--last-page,\n .enp-paginate__item--first-page {\n display: flex;\n }\n\n .enp-paginate__item--first-page:after,\n .enp-paginate__item--last-page:before {\n content: '...';\n font-size: 1rem;\n position: relative;\n bottom: 0.2rem;\n opacity: 0.6;\n }\n\n .enp-paginate__item--no-gap {\n &:before,\n &:after {\n content:'';\n }\n }\n\n .enp-paginate__item--next-page {\n margin-left: 0.2rem;\n }\n\n .enp-paginate__item--previous-page {\n margin-right: 0.2rem;\n }\n}\n","#enp-quiz {\n .enp-quiz-breadcrumbs {\n grid-row: 1;\n // @include flex-center;\n // position: absolute;\n // top: 0;\n // width: 1000%;\n // left: -500%;\n // right: -500%;\n // margin-left: auto;\n // margin-right: auto;\n // background: #fff;\n // border-bottom: 1px solid #ddd;\n // padding: 10px;\n // z-index: 99999;\n }\n\n .enp-quiz-breadcrumbs__list {\n @include flex-inline;\n }\n\n .enp-quiz-breadcrumbs__item {\n @include flex-inline__item ;\n @include flex-center;\n fill: $link;\n margin-right: 5px;\n\n @include breakpoint(small) {\n margin-right: 10px;\n }\n }\n\n .enp-quiz-breadcrumbs__link--disabled {\n @include disabled;\n }\n\n .enp-quiz-breadcrumbs__link--active {\n @include btn--ghost;\n @include btn--thin;\n }\n\n .enp-quiz-breadcrumbs__link {\n font-size: 1rem;\n font-weight: 400;\n text-transform: none;\n letter-spacing: 0;\n }\n\n // JS\n .enp-quiz-breadcrumbs--fixed {\n top: 0;\n position: fixed;\n animation: navSlideIn .25s;\n }\n}\n","#enp-quiz {\n .enp-results-title {\n font-size: 1.6rem;\n text-align: center;\n padding: 3.2rem 20px 2.6rem;\n background: $really_light_gray;\n margin: -1.2rem 0 2rem;\n border-bottom: 1px solid #ddd;\n\n &:after {\n @include small-uppercase;\n display: block;\n content: \"RESULTS\";\n font-weight: normal;\n }\n }\n\n .enp-results__container {\n @include container--wide;\n display: block;\n\n @include breakpoint(large) {\n display: flex;\n @include flex-spread;\n }\n }\n\n .enp-results__container,\n .enp-quiz-scores__container,\n .enp-results-flow__container {\n @include media(max-medium) {\n padding: 8px;\n }\n }\n\n .enp-quiz-scores__container,\n .enp-results-flow__container {\n width: 100%;\n\n @include breakpoint(large) {\n width: 48%;\n }\n }\n\n .enp-quiz-scores {\n margin-top: 2.6rem;\n }\n\n .enp-quiz-score__line-chart {\n height: 300px;\n margin-bottom: 1rem;\n\n .ct-label {\n color: $font;\n }\n\n .ct-grid {\n stroke: #dadada;\n stroke-dasharray: 0;\n }\n\n .ct-line {\n stroke: $green;\n stroke-width: 2px;\n }\n\n .ct-point {\n stroke: $green;\n stroke-width: 8px;\n }\n }\n\n .enp-quiz-scores-table {\n width: 100%;\n max-width: 500px;\n margin: 0 auto;\n\n tr th {\n background-color: #fff;\n }\n }\n\n .enp-quiz-scores-table__label {\n padding-left: 5%;\n }\n\n .enp-quiz-scores-table__score {\n text-align: right;\n padding-right: 5%;\n }\n\n .enp-results-flow {\n position: relative;\n margin: 2rem auto;\n width: 320px;\n height: 320px;\n border-radius: 50%;\n\n @include media(300px) {\n left: -100px;\n }\n\n @include breakpoint(small) {\n width: 390px;\n height: 390px;\n }\n\n @include breakpoint(medium) {\n width: 450px;\n height: 450px;\n }\n\n @include breakpoint(large) {\n width: 400px;\n height: 400px;\n }\n\n }\n\n .enp-results-flow__section-title {\n @include screen-reader-text;\n }\n\n .enp-results-flow__item {\n border-radius: 50%;\n text-align: center;\n height: 100%;\n width: 100%;\n margin: 0 auto;\n left: 0;\n right: 0;\n padding: 12.5% 0 0;\n letter-spacing: 0.05rem;\n border: 2px solid $green;\n animation: 0.85s slideInBottom $fastInEaseOut forwards;\n }\n\n .enp-results-flow__item--total-views {\n background: #fff;\n }\n\n .enp-results-flow__item--quiz-starts {\n width: 65%;\n height: 65%;\n position: absolute;\n padding-top: 8%;\n bottom: 2.5%;\n background: lighten($green, 48);\n }\n\n .enp-results-flow__item--quiz-finishes {\n width: 35%;\n height: 35%;\n position: absolute;\n bottom: 5%;\n background: lighten($green, 35);\n }\n\n .enp-results-flow__title {\n @include small-uppercase;\n color: #444;\n font-size: .7rem;\n margin-bottom: 0px;\n\n @include breakpoint(medium) {\n font-weight: bold;\n margin-bottom: 2px;\n }\n }\n\n .enp-results-flow__number {\n font-weight: bold;\n font-size: 1.4rem;\n line-height: 1.2;\n }\n\n .enp-results-flow__number--total-views {\n font-size: 2rem;\n }\n\n .enp-results-flow__number--quiz-starts {\n font-size: 1.65rem;\n }\n\n .enp-results-flow__percentage {\n font-size: .8rem;\n font-weight: normal;\n position: relative;\n display: inline-block;\n top: -0.7em;\n left: -.1rem;\n color: #444;\n\n &:after {\n content: '%';\n position: absolute;\n right: -0.75rem;\n font-size: .7rem;\n color: #444;\n }\n }\n\n .enp-results-questions__section {\n // @include section--alt;\n padding-top: 5rem;\n padding-bottom: 3rem;\n margin-top: 5rem;\n margin-bottom: 3rem;\n @include breakpoint(medium) {\n @include xmargin-horizontal;\n }\n }\n\n .enp-results-questions__container {\n @include media(max-small) {\n padding-left: 8px;\n padding-right: 8px;\n }\n }\n\n .enp-results-questions__header {\n align-items: flex-start;\n flex-direction: column;\n\n @include breakpoint(small) {\n @include flex-spread;\n flex-direction: row;\n align-items: flex-end;\n }\n }\n\n .enp-results-questions__title {\n @include small-uppercase;\n }\n\n .enp-results-questions__key {\n @include small-uppercase;\n }\n\n .enp-results-questions {\n @include ul-no-style;\n }\n\n .enp-results-question {\n width: 100%;\n font-size: 1rem;\n padding: 0;\n margin-bottom: 1rem;\n }\n\n .enp-results-question__header {\n padding: 1rem 1.2rem;\n position: relative;\n }\n\n .enp-results-question__question,\n .enp-results-question__stats {\n font-size: 1rem;\n line-height: 1.4;\n }\n\n .enp-results-question__question {\n font-weight: normal;\n\n @include breakpoint(small) {\n padding-right: 7em;\n margin-bottom: 0;\n }\n }\n\n .enp-results-question__stats {\n font-size: .9rem;\n\n @include breakpoint(small) {\n position: absolute;\n bottom: 1rem;\n right: 1.2rem;\n text-align: right;\n }\n }\n\n .enp-results-questions__key,\n .enp-results-question__stats {\n font-weight: 300;\n }\n\n .enp-results-question__content {\n padding: 2rem 1.2rem 1.2rem;\n @include border-radius;\n }\n\n .enp-results-question__deep-stats {\n @include flex-spread-around;\n @include ul-no-style;\n text-align: center;\n\n @include media(500px) {\n flex-wrap: wrap;\n }\n }\n\n .enp-results-question__deep-stat {\n\n @include media(500px) {\n width: 48%;\n margin: 0 2% 2% 0;\n padding: 1.6rem 0;\n\n &:nth-child(even) {\n margin-right: 0;\n }\n }\n\n @include media(280px) {\n width: 100%;\n padding: 0;\n margin-bottom: 1.6rem;\n }\n }\n\n .enp-results-question__deep-stat__number {\n font-size: 1.8rem;\n line-height: 1;\n position: relative;\n }\n\n .enp-results-question__deep-stat__number--finishes,\n .enp-results-question__deep-stat__number--correct {\n @include dark-green;\n }\n\n .enp-results-question__deep-stat__number--incorrect {\n @include fade-red;\n }\n\n .enp-results-question__deep-stat__number--correct,\n .enp-results-question__deep-stat__number--incorrect,\n .enp-results-question__deep-stat__number--finishes {\n &:after {\n content: '%';\n font-size: .9rem;\n position: absolute;\n top: .3rem;\n right: -1rem;\n }\n }\n\n .enp-results-question__deep-stat__label {\n @include small-uppercase;\n font-size: .8rem;\n }\n\n .enp-results-question__options {\n @include ul-no-style;\n margin-bottom: 0;\n }\n\n .enp-results-question__option {\n padding: 0.8rem 0.8rem 0.8rem 0.4rem;\n border-top: 1px solid #ddd;\n @include media(max-small) {\n position: relative;\n flex-direction: column;\n }\n\n @include breakpoint(small) {\n @include flex-spread;\n flex-direction: row;\n }\n\n &:first-of-type {\n margin-top: 1.4rem;\n }\n\n }\n\n .enp-results-question__option--correct {\n background: lighten($green, 48);\n }\n\n .enp-results-question__option__text {\n flex-grow: 100;\n margin-right: 1rem;\n }\n\n .enp-results-question__option__text__helper {\n font-weight: 300;\n @include small-uppercase;\n margin-right: 0.4rem;\n }\n\n .enp-results-question__option__icon {\n @include media(max-small) {\n position: relative;\n left: -3px;\n }\n\n @include breakpoint(small) {\n margin-right: 0.3rem;\n min-width: 1.6rem;\n }\n }\n\n .enp-results-question__option__icon--incorrect {\n fill: $fade_red;\n opacity: 0.5;\n }\n\n .enp-results-question__option__icon--correct {\n fill: $dark_green;\n opacity: 1;\n }\n\n .enp-results-question__option__percentage--incorrect {\n @include fade-red;\n }\n\n .enp-results-question__option__percentage--correct {\n @include dark-green;\n }\n\n .enp-results-question__option__number-selected {\n font-weight: 300;\n\n @include media(max-small) {\n position: absolute;\n top: 0.8rem;\n right: 0.8rem;\n }\n }\n\n .enp-slider-responses__title {\n @include small-uppercase;\n font-weight: 400;\n margin-top: 1.6rem;\n }\n\n .enp-slider-responses__line-chart {\n .ct-point {\n stroke-width: 8px;\n }\n }\n\n .enp-slider-responses__line-chart--low,\n .enp-slider-responses__line-chart--high {\n stroke: $red;\n }\n\n .enp-slider-responses__line-chart--correct {\n stroke: $green;\n }\n\n .enp-slider-responses-table {\n width: 100%;\n }\n\n .enp-slider-responses-table tr:nth-child(even) td {\n background-color: #fff;\n }\n\n .enp-slider-responses-table tr.enp-slider-responses-table__response--correct td {\n background-color: lighten($green, 48);\n }\n\n .enp-slider-responses-table__content {\n box-shadow: none;\n padding-top: 1rem;\n }\n\n .enp-slider-responses-table--hide-zero {\n .enp-slider-responses-table__frequency--zero {\n display: none;\n }\n }\n\n .enp-slider-responses-table__response-frequency {\n @include flex-spread ;\n align-items: center;\n }\n\n .enp-slider-responses-table__toggle-zero-frequency {\n @include accordion__header ;\n width: auto;\n padding: 0 0.6rem;\n margin: 0;\n }\n\n\n\n}\n\n.enp-quiz-results {\n #enp-quiz .enp-aside {\n border: none;\n }\n\n .enp-results-questions__title__quiz-title {\n @include screen-reader-text;\n }\n}\n","#enp-quiz {\n\n .enp-results--ab {\n display: block;\n margin-bottom: 3rem;\n\n @include breakpoint(large) {\n display: flex;\n flex-wrap: wrap;\n align-content: flex-end;\n width: 50%;\n padding: 10px;\n }\n\n }\n\n .enp-results--a {\n @include breakpoint(large) {\n padding-right: 1rem;\n border-right: 1px solid #ddd;\n }\n }\n\n .enp-results--b {\n @include breakpoint(large) {\n padding-left: 1rem;\n }\n }\n\n .enp-results-title--ab,\n .enp-results__container--ab .enp-results-flow__container {\n min-width: 100%;\n }\n\n .enp-results--loser {\n .enp-results-flow__item {\n border: 2px solid $red;\n }\n\n .enp-results-flow__item--quiz-starts {\n background: lighten($red, 42);\n }\n\n .enp-results-flow__item--quiz-finishes {\n background: lighten($red, 34);\n }\n\n th,\n .enp-results-questions__title {\n color: $dark_red;\n }\n\n }\n\n .enp-results--winner {\n th,\n .enp-results-questions__title {\n color: $dark_green;\n }\n\n }\n\n .enp-results-title--a,\n .enp-results-title--b {\n background: transparent;\n }\n\n .enp-ab-scores {\n @include container--wide;\n\n th.enp-quiz-scores-table__label,\n th.enp-quiz-scores-table__score {\n padding-left: 0;\n padding-right: 0;\n }\n }\n\n .enp-ab-scores__title {\n padding-left: 50px;\n @include small-uppercase;\n }\n\n .enp-quiz-score__line-chart .enp-test-loser {\n\n .ct-line,\n .ct-point {\n stroke: $red;\n }\n }\n\n .enp-quiz-scores {\n margin-top: 0;\n }\n\n .enp-question-results,\n .enp-ab-scores .enp-quiz-scores-table {\n margin-bottom: 1.6rem;\n\n @include breakpoint(large) {\n float: left;\n width: 48%;\n margin: 0;\n\n &:first-of-type {\n margin-right: 4%;\n }\n }\n }\n\n .enp-question-results__container {\n @include container--wide;\n padding-top: 3rem;\n }\n\n .enp-question-results--ab {\n\n .enp-results-questions__section {\n background: #fff;\n border: none;\n padding: 1.6rem 0;\n margin: 1.6rem auto;\n }\n\n .enp-results-questions__container {\n padding: 0;\n }\n\n }\n\n .enp-ab-new-embed-code__section {\n @include container--thin;\n max-width: 540px;\n padding-bottom: 2rem;\n margin-bottom: 2rem;\n\n .enp-ab-embed-code {\n padding: 0;\n margin: 0;\n }\n }\n\n .enp-ab-embed-code__section {\n @include section--alt;\n padding-top: 5rem;\n margin-top: 5rem;\n }\n\n .enp-ab-embed-code {\n @include container;\n }\n\n .enp-ab-embed-code__title {\n @include small-uppercase;\n }\n\n .enp-embed-code__textarea {\n margin-bottom: 0;\n }\n\n .enp-embed-code__instructions {\n font-size: 1.1rem;\n }\n}\n","#enp-quiz {\n\n .enp-slider {\n margin-bottom: 1.6rem;\n }\n\n .enp-slider-input__container {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 1.6rem auto;\n position: relative;\n }\n\n .enp-slider-input__label {\n @include label;\n }\n\n .enp-slider-input__prefix,\n .enp-slider-input__suffix {\n font-size: 1rem;\n }\n\n .enp-slider-input__prefix {\n margin-right: .2rem;\n white-space: pre;\n }\n\n .enp-slider-input__suffix {\n margin-left: .2rem;\n white-space: pre;\n }\n\n .enp-slider-input__input {\n @include input;\n margin-bottom: 0;\n padding: .75rem;\n width: auto;\n transition: all .25s $fastInEaseOut;\n }\n\n .enp-slider-input__input--incorrect {\n color: $red;\n }\n\n .enp-slider-input__input--correct {\n color: $dark_green;\n }\n\n .enp-slider-input__input--invalid-animation {\n box-shadow: 0 0 2px 1px $fade_red;\n }\n\n .enp-slider_input__range-helper {\n position: absolute;\n bottom: -1.2rem;\n font-size: 0.8rem;\n }\n\n .enp-slider_input__range-helper--low {\n left: 0;\n }\n\n .enp-slider_input__range-helper--high {\n right: 0;\n }\n\n .enp-slider-input__range-helper__number {\n position: relative;\n color: $dark_gray;\n }\n\n .enp-slider_input__range-helper__number--low {\n\n }\n\n .enp-slider_input__range-helper__number--high {\n\n }\n\n .ui-slider-range-show-correct__tooltip-container {\n position: relative;\n }\n\n .ui-slider-range-show-correct__tooltip {\n position: absolute;\n top: -0.4rem;\n margin-left: -0.55rem;\n height: 1rem;\n width: 1.1rem;\n height: 1.1rem;\n border: 2px solid $green;\n background-color: #fff;\n border-radius: 50%;\n z-index: 9999;\n }\n\n .ui-slider-range-show-correct__tooltip--low {\n left: 0;\n }\n\n .ui-slider-range-show-correct__tooltip--high {\n right: -0.55rem;\n }\n\n .ui-slider-range-show-correct__tooltip__text {\n position: relative;\n color: darken($green, 15);\n top: -1.35rem;\n font-size: .825rem;\n min-width: 100%;\n display: inline-block;\n text-align: center;\n text-shadow: 0 1px 0 #fff;\n }\n\n .ui-slider-range-show-correct__tooltip__text--low {\n\n }\n\n .ui-slider-range-show-correct__tooltip__text--high {\n\n }\n\n .ui-slider-range-show-correct__tooltip__text--low-center {\n //left: 0; // not perfectly centered for huge numbers, but is for small numbers\n }\n\n // JQUERY SLIDER\n .enp-slider {\n\t\tposition: relative;\n\t\ttext-align: left;\n\t\tbackground: #ddd;\n\n\t\t/* Layout helpers\n\t\t----------------------------------*/\n\t\t.ui-helper-hidden {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.ui-helper-hidden-accessible {\n\t\t\tborder: 0;\n\t\t\tclip: rect(0 0 0 0);\n\t\t\theight: 1px;\n\t\t\tmargin: -1px;\n\t\t\toverflow: hidden;\n\t\t\tpadding: 0;\n\t\t\tposition: absolute;\n\t\t\twidth: 1px;\n\t\t}\n\t\t.ui-helper-reset {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tborder: 0;\n\t\t\toutline: 0;\n\t\t\tline-height: 1.3;\n\t\t\ttext-decoration: none;\n\t\t\tfont-size: 100%;\n\t\t\tlist-style: none;\n\t\t}\n\t\t.ui-helper-clearfix:before,\n\t\t.ui-helper-clearfix:after {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: table;\n\t\t\tborder-collapse: collapse;\n\t\t}\n\t\t.ui-helper-clearfix:after {\n\t\t\tclear: both;\n\t\t}\n\t\t.ui-helper-clearfix {\n\t\t\tmin-height: 0; /* support: IE7 */\n\t\t}\n\t\t.ui-helper-zfix {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\topacity: 0;\n\t\t\tfilter:alpha(opacity=0); /* support: IE8 */\n\t\t}\n\n\t\t.ui-front {\n\t\t\tz-index: 100;\n\t\t}\n\n\n\t\t/* Interaction Cues\n\t\t----------------------------------*/\n\t\t.ui-state-disabled {\n\t\t\tcursor: default !important;\n\t\t}\n\n\n\t\t/* Icons\n\t\t----------------------------------*/\n\n\t\t/* states and images */\n\t\t.ui-icon {\n\t\t\tdisplay: block;\n\t\t\ttext-indent: -99999px;\n\t\t\toverflow: hidden;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\n\t\t/* Misc visuals\n\t\t----------------------------------*/\n\n\t\t/* Overlays */\n\t\t.ui-widget-overlay {\n\t\t\tposition: fixed;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\n\t\t.ui-slider-handle {\n\t\t\tbackground: #fff;\n\t\t\tborder-radius: 50%;\n\t\t\tborder: 1px solid #aaa;\n\t\t\tposition: absolute;\n\t\t\tz-index: 2;\n\t\t\twidth: 1.2rem;\n\t\t\theight: 1.2rem;\n top: -.4rem;\n\t\t\tmargin-left: -.6rem;\n\t\t\tcursor: default;\n\t\t\t-ms-touch-action: none;\n\t\t\ttouch-action: none;\n\t\t\ttransition: opacity 0.2s $fastInEaseOut, height .18s $fastInEaseOut, width .18s $fastInEaseOut, transform 0.18s $fastInEaseOut;\n\n @include media(max-medium) {\n width: 2rem;\n \t\t\theight: 2rem;\n top: -.85rem;\n margin-left: -1rem;\n transform: rotate(225deg);\n }\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tbox-shadow: 0 0 3px 1px #4D90FE;\n\t\t\t}\n\n &.ui-state-active {\n @include media(max-medium) {\n width: 2.2rem;\n height: 2.2rem;\n border-top-left-radius: 0;\n transform: translate3d(-0.2rem, -0.8rem, 0) rotate(225deg);\n }\n\n }\n\n\t\t}\n\n .ui-slider-handle--correct,\n\t\t.ui-slider-handle--incorrect {\n width: 1.1rem;\n\t\t\theight: 1.1rem;\n top: -.4rem;\n margin-left: -.55rem;\n }\n\n .ui-slider-handle--incorrect {\n z-index: 1;\n\t\t\tborder: 2px solid $red;\n\t\t}\n\n .ui-slider-handle--correct {\n border: 2px solid $green;\n z-index: 99999;\n }\n\n\t\t.ui-slider-range {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\tfont-size: .7rem;\n\t\t\tdisplay: block;\n\t\t\tborder: 0;\n\t\t\tbackground-position: 0 0;\n\t\t\ttop: 0;\n\t\t\theight: 100%;\n\t\t}\n\n .ui-slider-range-show-correct {\n background: $green;\n z-index: 9;\n }\n\n\t\t.ui-slider-range-min {\n\t\t\tleft: 0;\n\t\t\tbackground: $blue;\n\t\t}\n\n\t\t.ui-slider-range-max {\n\t\t\tright: 0;\n\t\t}\n\n\t\t/* support: IE8 - See #6727 */\n\t\t&.ui-state-disabled .ui-slider-handle,\n\t\t&.ui-state-disabled .ui-slider-range {\n\t\t\tfilter: inherit;\n\t\t}\n\t}\n\n\t.ui-slider-horizontal {\n\t\theight: .3rem;\n\t}\n\n\t.enp-question__answered {\n\t\t.enp-slider {\n\t\t\tbackground: #bbb;\n\t\t}\n\n\t\t.ui-slider-range-min {\n\t\t\tbackground: #fff;\n\t\t}\n\n\t}\n\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["_setup.scss","_utilities.scss","_variables.scss","_structure.scss","_typography.scss","_animations.scss","_base.scss","_forms.scss","_quiz-create.scss","_quiz-preview.scss","_quiz-publish.scss","_ab-create.scss","_dashboard.scss","_breadcrumbs.scss","_quiz-results.scss","_ab-results.scss","../../../quiz-take/css/sass/_slider.scss"],"names":[],"mappings":"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","file":"enp_quiz-create.min.css","sourcesContent":["html {\n font-size: 16px!important; // set our rem value reference\n}\n\nhtml #enp-quiz {\n box-sizing: border-box;\n}\n\nbody #enp-quiz {\n background: #fff;\n overflow: hidden;\n}\n\n#enp-quiz {\n *, *:before, *:after {\n box-sizing: inherit;\n }\n\n ul, ol {\n margin: 0 0 1.6rem 1.25rem;\n padding: 0;\n }\n\n textarea {\n margin-bottom: 1rem;\n }\n\n button, input[type=\"button\"], input[type=\"reset\"], input[type=\"submit\"] {\n border: none;\n &:active,\n &:focus,\n &:hover {\n border: none;\n }\n }\n\n iframe {\n border: none;\n }\n}\n","@mixin focus--glow {\n outline-color: #4D90FE;\n outline-offset: -2px;\n outline-style: auto;\n outline-width: 5px;\n}\n\n@mixin disabled {\n opacity: 0.65;\n cursor: default;\n}\n\n@mixin btn {\n text-align: center;\n border: none;\n border-radius: 3px;\n padding: .85em 1.4em .75em;\n font-size: 15px;\n font-weight: 400;\n letter-spacing: .05em;\n color: #fff;\n box-shadow: inset 0 -2px 0 rgba(0,0,0,.2);\n background: $link;\n cursor: pointer;\n text-transform: uppercase;\n transition: all .2s;\n line-height: 1.6;\n\n &:focus,\n &:hover {\n color: #fff;\n box-shadow: none;\n background: $link_hover;\n }\n\n &:active {\n color: #fff;\n box-shadow: inset 0 2px 0 rgba(0,0,0,.1);\n background: lighten($blue, 20);\n }\n\n &:focus {\n @include focus--glow;\n }\n\n &:disabled,\n &:disabled:focus,\n &:disabled:hover {\n background: $link;\n cursor: default;\n opacity: .5;\n\n\n }\n}\n\n@mixin btn--reset {\n border: none;\n background: none;\n box-shadow: none;\n padding: 0;\n margin: 0;\n}\n\n@mixin btn--submit {\n @include btn;\n}\n\n@mixin btn--ghost {\n @include btn;\n border: 2px solid $link;\n background: transparent;\n color: $link;\n box-shadow: none;\n\n &:focus,\n &:hover {\n background: transparent;\n border: 2px solid $link_hover;\n color: $link_hover;\n }\n}\n\n@mixin box-shadow {\n box-shadow: 0 2px 2px rgba(0,0,0,.2);\n}\n\n@mixin btn--dashed {\n @include btn;\n border: 1px dashed $darker_gray;\n background: none;\n color: #545454;\n box-shadow: none;\n\n &:hover,\n &:focus {\n border: 1px dashed $darkest_gray;\n color: $darker_gray;\n background: rgba(255,255,255,.9);\n }\n}\n\n@mixin btn--dashed--light {\n @include btn--dashed;\n border: 2px dashed $darker-gray;\n color: $dark_gray;\n transition: all .2s;\n\n &:hover,\n &:focus {\n color: $darker_gray;\n border: 2px dashed #999;\n }\n}\n\n@mixin btn--dashed--light--alt-bg {\n @include btn--dashed--light ;\n background: $light_gray;\n}\n\n@mixin btn--small {\n font-size: 13px;\n}\n\n@mixin btn--thin {\n padding: 0.4em 1em;\n}\n\n@mixin btn--icon {\n @include btn;\n padding: .75em 0.8em .7em 1.4em;\n}\n\n@mixin btn--icon__icon {\n @include icon--white;\n @include icon--xl;\n position: relative;\n top: 4px;\n}\n\n/*\n* @usage: @include btn--icon(BEM-root-class);\n* Button with icon with white circular background.\n* --------------\n* | BTN TEXT > |\n* --------------\n* @param $rootBEM: root class name that will be extended\n\n@mixin btn--icon($rootBEM) {\n .(#){$rootBEM} {\n @include btn--icon;\n }\n\n .(#){$rootBEM}__icon {\n @include btn--icon__icon ;\n }\n}\n*/\n\n@mixin btn--icon--icon-circle {\n @include btn;\n padding: .65em 1.2em .85em 1.4em;\n}\n\n// use when the icon is larger and on the right\n@mixin btn--icon__icon--circle {\n @include icon--circle;\n @include icon--white-bg;\n @include icon--normal;\n margin-left: 0.5em;\n position: relative;\n top: 0.15rem;\n}\n\n@mixin btn--icon__icon--circle--hover {\n @include icon--white-bg--hover;\n}\n\n/*\n* @usage: @include btn--icon--circle(BEM-root-class);\n* Button with icon with white circular background.\n* ---------------\n* | BTN TEXT (>) |\n* ---------------\n* @param $rootBEM: root class name that will be extended\n*/\n@mixin btn--icon--circle($rootBEM) {\n .#{$rootBEM} {\n @include btn--icon--icon-circle;\n }\n\n .#{$rootBEM}__icon {\n @include btn--icon__icon--circle ;\n\n\n &:hover {\n @include btn--icon__icon--circle--hover ;\n }\n }\n}\n\n/*\n* @usage: @include btn--icon--hover-circle(BEM-root-class);\n* Button with icon. Hovering/focusing button moves\n* the icon to right and fades in a white circular background\n* -------------- ----------------\n* | BTN TEXT > | --hover/focus--> | BTN TEXT (>) |\n* -------------- ----------------\n* @param $rootBEM: root class name that will be extended\n*/\n@mixin btn--icon--hover-circle($rootBEM) {\n .#{$rootBEM} {\n @include btn--icon--icon-circle;\n padding-right: 0.8em;\n }\n\n .#{$rootBEM}__icon {\n @include btn--icon__icon--circle ;\n margin-left: 0;\n width: 1em;\n height: 1em;\n background: transparent;\n fill: #fff;\n transform: translate3d(0, 0, 0);\n transition: all .3s ease-in-out;\n }\n\n .#{$rootBEM}:hover .#{$rootBEM}__icon {\n @include btn--icon__icon--circle--hover ;\n transform: translate3d(1em, 0, 0);\n margin-right: 1em;\n }\n\n\n}\n\n// use on small icons and placed on the left\n@mixin btn--icon__icon--circle--small {\n @include icon--circle--small;\n margin-right: 5px;\n}\n\n\n// use this to match the icon to the inline font-size\n@mixin icon--inline {\n width: 1em;\n height: 1em;\n position: relative;\n top: .125em;\n}\n\n@mixin icon--small {\n width: 1rem;\n height: 1rem;\n}\n\n@mixin icon--normal {\n width: 1.2rem;\n height: 1.2rem;\n}\n\n@mixin icon--large {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n@mixin icon--xl {\n width: 1.8rem;\n height: 1.8rem;\n}\n\n@mixin icon--xxl {\n width: 2.4rem;\n height: 2.4rem;\n}\n\n@mixin icon--xxxl {\n width: 2.8rem;\n height: 2.8rem;\n}\n\n@mixin icon--circle {\n border-radius: 50%;\n fill: #fff;\n}\n\n@mixin border-radius {\n border-radius: 3px;\n}\n\n@mixin icon--circle--pad {\n @include icon--circle ;\n padding: 0.05em;\n\n @include breakpoint(medium) {\n padding: 0.15em;\n }\n}\n\n@mixin icon--circle--pad--xl {\n @include icon--circle ;\n padding: 0.6rem;\n}\n\n@mixin icon--circle--small {\n @include icon--small;\n @include icon--circle;\n padding: 0.02rem;\n}\n\n@mixin icon--white {\n fill: #fff;\n}\n\n@mixin icon--white-bg {\n background: #fff;\n fill: $link;\n}\n\n@mixin icon--white-bg--hover {\n background: #fff;\n fill: $link_hover;\n}\n\n@mixin icon--gray-bg {\n background: $dark_gray;\n fill: $light_gray;\n}\n\n@mixin icon--gray-bg--hover {\n fill: #fff;\n background: $darker_gray;\n}\n\n@mixin small-uppercase {\n font-size: 1rem;\n text-transform: uppercase;\n}\n\n@mixin hint {\n font-size: .7rem;\n font-weight: 300;\n color: $darker_gray;\n}\n\n@mixin green {\n color: $green;\n}\n\n@mixin dark-green {\n color: $dark_green;\n}\n\n@mixin red {\n color: $red;\n}\n\n@mixin fade-red {\n color: $fade_red;\n}\n\n/* Text meant only for screen readers */\n@mixin screen-reader-text {\n clip: rect(1px, 1px, 1px, 1px);\n position: absolute !important;\n left:-10000px;\n top:auto;\n width:1px;\n height:1px;\n overflow:hidden;\n}\n\n@mixin screen-reader-text--hover {\n background-color: #f1f1f1;\n border-radius: 3px;\n box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);\n clip: auto !important;\n color: #21759b;\n display: block;\n font-size: 14px;\n font-weight: bold;\n height: auto;\n left: 5px;\n line-height: normal;\n padding: 15px 23px 14px;\n text-decoration: none;\n top: 5px;\n width: auto;\n z-index: 100000;\n}\n\n@mixin xmargin-vertical {\n margin-top: 2rem;\n margin-bottom: 2rem;\n}\n\n@mixin xmargin-horizontal {\n margin-right: 2rem;\n margin-left: 2rem;\n}\n\n@mixin xpadding-vertical {\n padding-top: 2rem;\n padding-bottom: 2rem;\n}\n\n@mixin xpadding-vertical-top {\n padding-top: 2rem;\n}\n\n@mixin xpadding-horizontal {\n padding-right: 2rem;\n padding-left: 2rem;\n}\n\n@mixin header-space {\n @include breakpoint(large) {\n padding-top: 7rem;\n }\n}\n\n@mixin ul-no-style {\n list-style: none;\n margin-left: 0;\n}\n\n@mixin hidden--accessible {\n height: 0;\n opacity: 0;\n padding: 0;\n overflow: hidden;\n}\n\n@mixin accordion {\n background: #fff;\n width: 100%;\n}\n\n@mixin accordion__header {\n @include accordion ;\n box-shadow: inset 1px 1px 0 #ccc, inset -1px -1px 0 #ccc;\n color: $font;\n font-family: $fontTitle;\n font-size: .9rem;\n font-weight: 400;\n line-height: 1.5;\n text-transform: none;\n letter-spacing: 0;\n text-align: left;\n border: none;\n border-radius: 3px;\n min-height: 3.065rem;\n padding: 1rem 2rem 1rem 1rem;\n margin: 1.6rem 0 0;\n position: relative;\n z-index: 9;\n cursor: pointer;\n transition: all .2s $fastInEaseOut;\n}\n\n@mixin accordion__content {\n @include accordion ;\n box-shadow: inset 1px -1px 0 #ccc, inset -1px -1px 0 #ccc;\n display: block;\n position: relative;\n height: auto;\n overflow: visible;\n margin-bottom: 1.6rem;\n}\n\n@mixin accordion__content--closed {\n // TEMP DEV comment out\n margin-top: 0;\n padding-top: 0rem;\n animation: slideOutTop .25s $fastInEaseOut forwards;\n display: none;\n}\n\n@mixin accordion__content--open {\n padding-top: 1.6rem;\n margin-bottom: 2rem;\n animation: slideInTop .45s $fastInEaseOut forwards;\n}\n\n// Share Icons\n@mixin share_icons($rootBEM) {\n\n .#{$rootBEM} {\n @include ul-no-style;\n @include flex-center;\n }\n\n .#{$rootBEM}__item {\n margin-right: 20px;\n\n &:last-child {\n margin-right: 0;\n }\n }\n\n .#{$rootBEM}__item__icon {\n @include icon--xxl;\n @include icon--circle--pad--xl;\n\n fill: #fff!important;\n }\n\n .#{$rootBEM}__item__icon--facebook {\n background-color: #3a5795;\n }\n\n .#{$rootBEM}__item__icon--twitter {\n background-color: #4099ff;\n }\n}\n\n@mixin section--alt {\n background: $light_gray;\n border-bottom: 1px solid #ddd;\n border-top: 1px solid #ddd;\n padding-top: 3rem;\n padding-bottom: 3rem;\n margin-top: 3rem;\n margin-bottom: 3rem;\n}\n\n#enp-quiz {\n .enp-screen-reader-text {\n @include screen-reader-text;\n }\n\n .enp-screen-reader-text:hover,\n .enp-screen-reader-text:active,\n .enp-screen-reader-text:focus {\n @include screen-reader-text--hover;\n }\n\n .enp-accordion-header {\n @include accordion__header ;\n\n &:first-of-type {\n margin-top: 0;\n }\n\n .enp-accordion-header__icon {\n position: absolute;\n fill: $dark_gray;\n right: 0.75rem;\n bottom: 0.75rem;\n transition: all .35s $fastInEaseOut;\n }\n }\n\n .enp-accordion-header--open {\n\n .enp-accordion-header__icon {\n transform: rotateX(180deg);\n }\n\n }\n\n .enp-quiz-settings__form .enp-accordion-header {\n position: relative;\n overflow-y: hidden;\n }\n\n .enp-accordion-content {\n @include accordion__content ;\n\n }\n\n .enp-accordion-content--closed {\n @include accordion__content--closed ;\n }\n\n .enp-accordion-content--open {\n @include accordion__content--open ;\n }\n\n .enp-quiz-message {\n @include container--thin;\n background: #fff;\n border: 1px solid #eee;\n border-bottom: 1px solid #ccc;\n padding: 1rem;\n margin-bottom: 1.6rem;\n position: fixed;\n bottom: 0;\n left: 0;\n }\n\n .enp-quiz-message__title {\n @include small-uppercase;\n }\n\n .enp-message__list {\n @include ul-no-style;\n font-size: 1.1rem;\n margin-bottom: 0;\n }\n\n .enp-quiz-message--error {\n border-left: 6px solid $red;\n color: $red;\n }\n\n .enp-quiz-message__title--error {\n color: $dark_red;\n }\n\n .enp-quiz-message--success {\n border-left: 6px solid $green;\n color: $dark_green;\n }\n\n .enp-quiz-message__title--success {\n color: $dark_green;\n }\n\n .enp-quiz-message--note {\n border-left: 6px solid $khaki;\n }\n\n .enp-quiz-message__title--note {\n color: $dark_blue;\n }\n\n .enp-quiz-message__close {\n @include btn--reset;\n position: absolute;\n top: 5px;\n right: 5px;\n }\n\n .enp-quiz-message--ajax {\n margin-bottom: .6rem;\n animation: slideInBottom .3s;\n }\n\n .enp-quiz-message-ajax-container {\n z-index: 9999;\n position: fixed;\n bottom: 10px;\n }\n\n .enp-quiz-message--saving__spinner {\n margin-left: -10px;\n }\n\n .enp-quiz-message--saving__text {\n font-size: 1rem;\n }\n\n textarea.limited-chars,\n input.limited-chars {\n margin-bottom: 0.2rem;\n }\n\n .limited-chars__container {\n color: lighten($dark_gray, 8);\n font-size: 0.8rem;\n display: block;\n text-align: right;\n margin-bottom: 1.2rem;\n }\n\n .limited-chars__counter {\n color: $dark_gray;\n }\n\n .limited-chars__container--error {\n color: $dark_red;\n\n .limited-chars__counter {\n color: $dark_red;\n }\n }\n\n textarea.has-error,\n input.has-error {\n border: 1px solid $red;\n &:focus {\n outline-color: $red;\n }\n\n }\n\n\n\n .enp-tooltip {\n position: relative;\n }\n\n .enp-tooltip__activator {\n\n &:focus + .enp-tooltip__description,\n &:focus > .enp-tooltip__description {\n display: block;\n }\n }\n\n .enp-tooltip__description {\n display: none;\n position: absolute;\n left: 103%;\n margin-bottom: 2rem;\n border-radius: 3px;\n background: $light_gray;\n font-size: 0.9rem;\n padding: 0.9rem;\n max-width: 200px;\n }\n\n\n}\n\n.enp-sticky {\n position: relative;\n left: 0;\n right: 0;\n top: 0;\n z-index: 999;\n\n &.enp-sticky--fixed {\n position: fixed;\n }\n}\n\n.enp-breadcrumb-link {\n font-size: 0.85rem;\n}\n\n.enp-breadcrumb-link__icon {\n position: relative;\n top: 0.45rem;\n left: 0.4rem;\n}\n","//fonts\n$fontBody : Arial,monospace, helvetica, arial, sans-serif;\n$fontTitle : Arial,monospace, helvetica, arial, sans-serif;\n\n// // // colors\n$font : #1d1c25;\n$background: #FAF9FB;\n$title : #5D5E5F;\n\n// Blues\n$blue: #00A9B7;\n$dark_blue: #333F48;\n$light_blue: lighten($dark_blue, 40);\n\n// Grays\n$light_gray: #FAF9FB;\n$really_light_gray: lighten($light_gray, 1);\n$gray: darken($light_gray, 2);\n$dark_gray: darken($gray, 5);\n$darker_gray: darken($dark_gray, 25);\n$darkest_gray: darken($dark_gray, 50);\n\n// Other colors\n$khaki: #CCA562;\n$green: #60AAAD;\n$dark_green: darken($green, 8);\n$red: #bf5700;\n$dark_red: darken($red, 8);\n$fade_red: #C1893E;\n\n// Elements\n$link: #bf5700;\n$link_hover: darken($link, 8);\n// animation\n$fastInEaseOut: cubic-bezier(0.000, 0, .3, 1);\n\n\n$breakpoints: (\n \"small\" : 400px,\n \"medium\" : 700px,\n \"large\" : 1000px\n);\n\n// -----------------------------------------------------------------------------\n// Core\n// -----------------------------------------------------------------------------\n\n// Caching current breakpoint\n// Not meant to be manually edited\n$default-breakpoint: root;\n$current-breakpoint: $default-breakpoint;\n\n// The usual breakpoint mixin\n// Except it updates the $current-breakpoint variable\n// 1. If breakpoint name exists in map\n// 2. Update $current-breakpoint\n// 3. Open a media query\n// 4. Let the user dump content\n// 5. Then reset $current-breakpoint\n// 6. If breakpoint name doesn't exist in map, warn the user\n@mixin breakpoint($breakpoint) {\n $value: map-get($breakpoints, $breakpoint);\n\n @if $value != null { // 1\n $current-breakpoint: $breakpoint !global; // 2\n @media (min-width: $value) { @content; } // 3\n $current-breakpoint: $default-breakpoint !global; // 5\n }\n\n @else {\n @warn \"Invalid breakpoint `#{$breakpoint}`.\"; // 6\n }\n}\n\n// for only targeting a specific device\n// NOTE: DOESN'T SUPPORT THE @include placeholders!!!\n@mixin media($query) {\n @if $query == max-small {\n $media_query: \"max-width: #{map-get($breakpoints, \"small\")}\";\n } @else if $query == only-medium {\n $media_query: \"min-width: #{map-get($breakpoints, \"medium\")}) and (max-width: #{(map-get($breakpoints, \"large\") - 1px)}\";\n } @else if $query == max-medium {\n $media_query: \"max-width: #{(map-get($breakpoints, \"medium\") - 1px)}\";\n } @else if $query == max-large {\n $media_query: \"max-width: #{(map-get($breakpoints, \"large\") - 1px)}\";\n } @else {\n // just use the number provided as a max width\n $media_query: \"max-width: #{$query}\";\n }\n\n @if variable-exists(media_query) {\n @media ($media_query) {\n @content;\n }\n }\n\n}\n","@mixin clearfix {\n &:after {\n content: \"\";\n display: table;\n clear: both;\n }\n}\n\n@mixin container {\n max-width: 80vw;\n margin: 0 auto;\n // @include clearfix;\n}\n\n@mixin well {\n padding: 1.6rem;\n margin-bottom: 1.6rem;\n background: $light_blue;\n @include border-radius;\n border: 1px solid #eee;\n border-bottom-color: #ccc;\n\n @include breakpoint(medium) {\n margin-bottom: 2.6rem;\n padding: 1.6rem 2rem;\n }\n}\n\n@mixin container--wide {\n @include container;\n\n @include breakpoint(medium) {\n max-width: 1000px;\n }\n\n @include breakpoint(large) {\n max-width: 1440px;\n }\n}\n\n\n@mixin container--thin {\n @include container;\n // max-width: 512px;\n}\n\n@mixin container--really-thin {\n @include container;\n max-width: 300px;\n}\n\n@mixin container--form {\n @include container--thin;\n\n .enp-input,\n .enp-textarea {\n width: 100%;\n }\n}\n\n@mixin container--form--thin {\n @include well;\n @include container--really-thin;\n\n .enp-input,\n .enp-textarea {\n width: 100%;\n }\n}\n\n@mixin flex-container { // no pseudo element to clear and break spacing\n @include container;\n}\n\n@mixin flex-container--wide { // no pseudo element to clear and break spacing\n @include flex-container;\n\n @include breakpoint(medium) {\n max-width: 840px;\n }\n\n @include breakpoint(large) {\n max-width: 1000px;\n }\n}\n\n@mixin flex {\n display: flex;\n}\n\n@mixin flex-list__item {\n flex-basis: 100%;\n margin: 0;\n border-bottom-color: #ddd;\n}\n\n@mixin flex-spread {\n @include flex;\n justify-content: space-between;\n}\n\n@mixin flex-spread-vertical {\n @include flex-spread;\n flex-direction: column;\n}\n\n@mixin flex-spread-around {\n @include flex;\n justify-content: space-around;\n}\n\n@mixin flex-bottom {\n @include flex;\n align-items: flex-end;\n align-content: flex-end;\n}\n\n@mixin flex-center {\n @include flex;\n justify-content: center;\n align-content: center;\n align-items: center;\n}\n\n@mixin flex-vertical-center {\n @include flex;\n align-content: center;\n align-items: center;\n}\n\n@mixin flex-inline {\n @include flex;\n @include ul-no-style;\n margin-bottom: 0;\n}\n\n@mixin flex-inline__item {\n margin-right: 10px;\n\n &:last-of-type {\n margin-right: 0;\n }\n}\n\n\n@mixin flex-grid {\n @include flex;\n flex-flow: column wrap;\n align-items: stretch;\n @include ul-no-style;\n}\n\n@mixin flex-grid__item {\n flex-basis: 100%;\n padding: 1rem 1.2rem;\n background-color: $gray;\n border: 1px solid #eee;\n border-bottom: 1px solid #ddd;\n list-style: none;\n transition: all .35s $fastInEaseOut;\n margin: 0 0 0.8rem;\n\n // @include breakpoint(medium) {\n // flex-basis: 100%;\n // max-width: 100%;\n // margin: 0 2% 0.8rem 0;\n\n // &:nth-child(2n) {\n // margin-right: 0;\n // }\n // }\n\n // @include breakpoint(large) {\n // flex-basis: 100%;\n // max-width: 100%;\n // margin-right: 1.25%;\n\n // &:nth-child(2n) {\n // margin-right: 1.25%;\n // }\n\n // &:nth-child(3n) {\n // margin-right: 0;\n // }\n // }\n}\n\n@mixin flex-grid__title {\n font-size: 1rem;\n padding-bottom: 0.5rem;\n}\n","body #enp-quiz {\n color: $font;\n font-family: $fontBody;\n font-size: 1em;\n line-height: 1.6;\n font-weight: 400;\n\n @include breakpoint(medium) {\n font-size: 1.3em;\n }\n}\n\n#enp-quiz {\n /* Headings */\n h1,h2,h3,h4,h5,h6 {\n font-family: $fontTitle;\n color: $title;\n clear: both;\n margin: 0 0 .2rem;\n font-weight: bold;\n line-height: 1.2em;\n }\n\n h1 {\n font-size: 2em;\n }\n\n h2 {\n font-size: 1.75em;\n }\n\n h3 {\n font-size: 1.475em;\n }\n\n h4 {\n font-size: 1.3em;\n }\n\n h5 {\n font-size: 1.125em;\n }\n\n h6 {\n font-size: 1em;\n }\n\n p+h1, ul+h1,\n p+h2, ul+h2,\n p+h3, ul+h3,\n p+h4, ul+h4,\n p+h5, ul+h5,\n p+h6, ul+h6 {\n margin-top: 1.8em;\n }\n\n /* Text elements */\n p {\n font-size: 0.85em;\n margin-bottom: 1.125em;\n font-weight: 300;\n }\n ul, ol {\n margin: 0 0 1.6em 1.25em;\n }\n ul {\n list-style: disc;\n }\n ol {\n list-style: decimal;\n }\n li > ul,\n li > ol {\n margin-bottom: 0;\n margin-left: 1.6em;\n }\n\n b, strong {\n font-weight: bold;\n }\n\n dfn, cite, em {\n font-family: georgia, times, serif;\n font-style: italic;\n }\n\n pre {\n background: #eee;\n font-family: \"Courier 10 Pitch\", Courier, monospace;\n font-size: .95em;\n line-height: 1.6;\n margin-bottom: 1.6em;\n padding: 1.6em;\n overflow: auto;\n max-width: 100%;\n overflow: scroll;\n max-width: 68vw;\n overflow-wrap: break-word;\n }\n .code, code, kbd, tt, var {\n font: .7em Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n }\n\n table {\n border: none;\n\n th {\n font-family: $fontTitle;\n font-size: .8rem;\n text-transform: uppercase;\n border: none;\n border-bottom: 1px solid #ddd;\n }\n\n td {\n font-family: $fontBody;\n font-size: 1rem;\n border: none;\n border-bottom: 1px solid #eee;\n }\n\n tr:nth-child(even) td {\n background: $really_light_gray;\n }\n\n tr:last-child td {\n border-bottom: none;\n }\n }\n\n figure {\n margin: 0;\n }\n\n img {\n height: auto; /* Make sure images are scaled correctly. */\n max-width: 100%; /* Adhere to container width. */\n }\n\n /* Links */\n a {\n color: $link;\n text-decoration: none;\n transition: color .2s;\n touch-action: manipulation; // remove 300ms delay for ie\n\n .enp-icon {\n fill: $link;\n }\n }\n\n a:hover,\n a:focus,\n a:active {\n color: $link_hover;\n\n .enp-icon {\n fill: $link_hover;\n }\n }\n\n button {\n &:focus {\n @include focus--glow;\n }\n }\n\n .enp-btn {\n @include btn;\n }\n\n\n .enp-btn--add {\n @include btn--dashed;\n width: 100%;\n }\n\n .enp-btn--disabled {\n @include disabled;\n }\n\n .enp-btn--enabled {\n animation: expand .6s;\n }\n\n .enp-icon {\n width: 24px;\n height: 24px;\n transition: all .2s;\n }\n\n .enp-page-title {\n font-size: 1.6rem;\n }\n}\n","@keyframes slideInBottom {\n 0% {\n opacity: 0;\n transform: translate3d(0, 100px, 0);\n }\n 100% {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n}\n\n@keyframes slideInTop {\n 0% {\n opacity: 0;\n height: auto;\n transform: translate3d(0, -20px, 0);\n }\n 100% {\n opacity: 1;\n height: auto;\n transform: translate3d(0, 0, 0);\n }\n}\n\n@keyframes slideInTop--reduced-opacity {\n 0% {\n opacity: 0;\n height: auto;\n transform: translate3d(0, -20px, 0);\n }\n 100% {\n opacity: 0.8;\n height: auto;\n transform: translate3d(0, 0, 0);\n }\n}\n\n\n@keyframes slideOutTop {\n 0% {\n overflow: hidden;\n height: 100px;\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n 100% {\n height: 0;\n opacity: 0;\n transform: translate3d(0, -20px, 0);\n }\n}\n\n@keyframes removeElement {\n 0% {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n 100% {\n padding: 0;\n margin: 0;\n opacity: 0;\n height: 0;\n z-index: -1;\n transform: translate3d(-200px, 0, 0);\n }\n}\n\n@keyframes removeAnswers {\n 0% {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n }\n 100% {\n padding: 0;\n opacity: 0;\n display: none;\n height: 0;\n z-index: -1;\n transform: translate3d(-200px, 0, 0);\n }\n}\n\n@keyframes removeQuestion {\n 0% {\n opacity: 1;\n transform: translateX(0);\n }\n 100% {\n opacity: 0;\n transform: translateX(-200px);\n }\n}\n\n@keyframes showNextQuestion {\n 0% {\n opacity: 0;\n transform: translateX(200px);\n }\n\n 100% {\n opacity: 1;\n transform: translateX(0);\n }\n}\n\n@keyframes expand {\n 0% {\n opacity: 0.8;\n transform: scale3d(1, 1, 1);\n box-shadow: 0 0 0px rgba(0,0,0,.3);\n }\n\n 40% {\n opacity: 1;\n }\n\n 70% {\n opacity: 1;\n transform: scale3d(1.1, 1.1, 1);\n box-shadow: 0 0 8px rgba(0,0,0,.4);\n }\n\n 100% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n box-shadow: 0 0 0px rgba(0,0,0,.3), inset 0 2px 0 rgba(0,0,0,.2);\n }\n}\n\n@keyframes checkmark {\n 0% {\n opacity: 0;\n transform: scale3d(0.2, 0.2, 1);\n }\n 5% {\n opacity: 1;\n }\n 10% {\n transform: scale3d(1.4, 1.4, 1);\n }\n 12% {\n transform: scale3d(1, 1, 1);\n }\n 90% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n 92% {\n transform: scale3d(1.4, 1.4, 1);\n }\n 100% {\n opacity: 0;\n transform: scale3d(0.2, 0.2, 1);\n }\n\n}\n\n@keyframes fadeOut {\n 0% {\n opacity: 1;\n }\n 100% {\n opacity: 0;\n }\n}\n\n@keyframes fadeIn {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n@keyframes navSlideIn {\n 0% {\n transform: translate3d(0, -200px, 0);\n }\n 100% {\n transform: translate3d(0, 0, 0);\n }\n}\n\n\n.spinner {\n margin: 0 auto;\n width: 70px;\n text-align: center;\n}\n\n.spinner > div {\n width: 18px;\n height: 18px;\n background-color: #333;\n\n border-radius: 100%;\n display: inline-block;\n -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;\n animation: sk-bouncedelay 1.4s infinite ease-in-out both;\n}\n\n.spinner .bounce1 {\n -webkit-animation-delay: -0.32s;\n animation-delay: -0.32s;\n}\n\n.spinner .bounce2 {\n -webkit-animation-delay: -0.16s;\n animation-delay: -0.16s;\n}\n\n@-webkit-keyframes sk-bouncedelay {\n 0%, 80%, 100% { -webkit-transform: scale(0) }\n 40% { -webkit-transform: scale(1.0) }\n}\n\n@keyframes sk-bouncedelay {\n 0%, 80%, 100% {\n -webkit-transform: scale(0);\n transform: scale(0);\n } 40% {\n -webkit-transform: scale(1.0);\n transform: scale(1.0);\n }\n}\n","#enp-quiz {\n transition: background .25s $fastInEaseOut;\n\n .enp-container {\n // @include container;\n }\n\n .enp-aside {\n @include well;\n @include container--thin;\n font-size: 1.2rem;\n background: $light_gray;\n }\n\n .enp-aside__title {\n @include small-uppercase;\n font-weight: 600;\n }\n\n .enp-page-title {\n border-bottom: 2px solid $blue;\n }\n}\n","\n\n// enter the root BEM class and this will output the correct CSS for you\n@mixin radio-block($rootBEM) {\n .#{$rootBEM}__legend {\n @include radio-block__legend ;\n }\n\n .#{$rootBEM}__input {\n @include radio-block__input ;\n }\n\n .#{$rootBEM}__label {\n @include radio-block__label ;\n }\n\n .#{$rootBEM}__input:checked + .#{$rootBEM}__label {\n @include radio-block__label--checked ;\n }\n\n .#{$rootBEM}__input:focus + .#{$rootBEM}__label {\n @include radio-block__label--focus ;\n }\n}\n\n@mixin radio-inline($rootBEM) {\n .#{$rootBEM}__legend {\n @include radio-inline__legend ;\n }\n\n .#{$rootBEM}__input {\n @include radio-inline__input ;\n }\n\n .#{$rootBEM}__label {\n @include radio-inline__label ;\n }\n\n .#{$rootBEM}__input:checked + .#{$rootBEM}__label {\n @include radio-inline__label--checked ;\n }\n\n .#{$rootBEM}__input:focus + .#{$rootBEM}__label {\n @include radio-inline__label--focus ;\n }\n\n}\n\n@mixin label {\n display: block;\n color: lighten($font, 10);\n font-weight: normal;\n font-size: 0.85rem;\n text-transform: uppercase;\n}\n\n@mixin legend {\n @include label;\n padding-top: 1.6rem;\n margin-bottom: 0.2rem;\n border: none;\n}\n\n@mixin label--bold {\n @include label;\n font-weight: 500;\n}\n\n@mixin legend--bold {\n @include label--bold;\n}\n\n@mixin input {\n font-size: 1rem;\n font-family: $fontBody;\n padding: 0.8rem 0.5rem;\n background: #fff;\n border: 1px solid #aaa;\n border-radius: 3px;\n width: 20rem;\n max-width: 100%;\n margin-bottom: 1.2rem;\n\n @include breakpoint(medium) {\n padding: 0.8rem;\n width: 100%;\n }\n}\n\n@mixin input--large {\n @include input;\n padding: 1rem 1.2rem;\n font-size: 1rem;\n}\n\n@mixin input--xl {\n @include input;\n font-weight: bold;\n font-size: 1.6rem;\n margin-bottom: 1rem;\n\n &::placeholder {\n font-weight: bold;\n }\n}\n\n@mixin textarea {\n @include input;\n line-height: 1.5;\n\n &:focus {\n @include focus--glow;\n }\n}\n\n\n/*\n@mixin no-radio__input {\n display: inline-block;\n width: 0;\n margin: 0;\n padding: 0;\n opacity: 0;\n overflow: hidden;\n}\n\n@mixin no-radio__label {\n display: inline-block;\n position: relative;\n left: -1rem;\n padding: .2rem .6rem;\n @include small-uppercase;\n font-size: .8rem;\n font-weight: normal;\n background: transparent;\n border-radius: 3px;\n transition: all .2s;\n}*/\n\n@mixin radio-block__legend {\n @include legend;\n margin-bottom: 0.6rem;\n}\n\n@mixin radio-block__input {\n position: absolute;\n z-index: 9;\n margin-left: 9px;\n}\n\n@mixin radio-block__label {\n text-transform: capitalize;\n background: #f2f2f2;\n display: block;\n padding: 5px 10px 5px 39px;\n position: relative;\n top: -6px;\n box-shadow: inset -1px -1px 0 rgba(0,0,0,.1), inset 30px 0px 0 rgba(255,255,255,.7), inset 31px 0px 0 rgba(0,0,0,.1);\n}\n\n@mixin radio-block__label--checked {\n background: $blue;\n color: #fff;\n text-shadow: 0 0 1px rgba(0,0,0,.7);\n}\n\n@mixin radio-block__label--focus {\n z-index: 8;\n @include focus--glow ;\n}\n\n@mixin radio-inline__legend {\n @include legend;\n}\n\n@mixin radio-inline__input {\n @include screen-reader-text;\n}\n\n@mixin radio-inline__label {\n text-transform: capitalize;\n display: inline-block;\n padding: 0.2rem 0.5rem;\n border-radius: 3px;\n cursor: pointer;\n}\n\n@mixin radio-inline__label--checked {\n @include radio-block__label--checked ;\n}\n\n@mixin radio-inline__label--focus {\n @include radio-block__label--focus ;\n}\n\n@mixin select--wide--chevron {\n width: 100%;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-size: 0.85rem;\n padding: 0.7rem 32px 0.7rem 0.8rem;\n border: 1px solid #bbb;\n border-radius: 3px;\n margin-bottom: 1.6rem;\n background: url(../svg/chevron-down.svg) 100% 50% no-repeat;\n background-color: #fff;\n box-shadow: inset -26px 0 0 rgba(0,0,0,.1);\n}\n\n\n#enp-quiz {\n\n fieldset {\n border: none;\n margin: 0;\n padding: 0;\n }\n\n .enp-label {\n @include label;\n &__sm {\n font-size: 0.85rem;\n }\n &.enp-quiz-winlose__label {\n padding: 1rem 0 0 0;\n }\n }\n\n .enp-legend {\n @include legend;\n padding-top: 0;\n }\n\n .enp-input {\n @include input;\n &__sm {\n padding: 5px;\n margin-bottom: 5px;\n }\n &.enp-input--has-description {\n margin-bottom: 0.2rem;\n }\n }\n\n .enp-textarea-description,\n .enp-input-description {\n margin-bottom: 1rem;\n font-size: 0.85rem;\n }\n\n .enp-textarea-description--before,\n .enp-input-description--before {\n margin-bottom: 0;\n }\n\n .enp-input::placeholder,\n .enp-textarea::placeholder {\n font-family: $fontBody;\n font-weight: 300;\n color: lighten($font, 40);\n }\n\n .enp-textarea {\n @include textarea;\n\n &.enp-textarea--has-description {\n margin-bottom: 0.2rem;\n }\n &.enp-textarea--has-description--before {\n margin-bottom: 1.2rem;\n }\n }\n\n .enp-embed-code {\n @include textarea;\n padding: 1.6rem;\n font-size: 0.7rem;\n font-family: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n\n @include media(max-medium) {\n padding: .8rem;\n }\n }\n}\n","#enp-quiz {\n // .enp-publish-page-container,\n // .enp-preview-page-container {\n // @include container--wide;\n // position: relative;\n // @include xpadding-vertical;\n // background: $really_light_gray;\n\n\n // }\n\n .enp-publish-page-container,\n .enp-quiz-form-container,\n .enp-preview-page-container {\n display: grid;\n grid-column: 2/-1;\n gap: 1rem;;\n width: 100%;\n justify-items: center;\n \n @include media(max-small) {\n padding-left: 8px;\n padding-right: 8px;\n }\n @include breakpoint(medium) {\n justify-items: start;\n }\n }\n // .enp-breadcrumb-link__container {\n // display: grid;\n // grid-column: 1/span 1;\n // justify-content: center;\n // align-items: flex-start;\n // @include xpadding-vertical;\n // }\n .enp-quiz-form {\n display: grid;\n padding-left: 0;\n padding-right: 0;\n @include breakpoint(large) {\n width: 100%;\n max-width: 40rem;\n }\n }\n\n .enp-preview-page-flex-container {\n display: grid;\n gap: 1rem;\n\n @include breakpoint(medium) {\n grid-template-columns: 1fr 3fr;\n // padding: 0 2rem;\n }\n }\n\n .enp-quiz-title__label {\n @include label--bold;\n }\n\n .enp-quiz-title__textarea {\n @include input--xl;\n }\n \n textarea {\n color: #000;\n }\n\n .enp-accordion-container {\n margin-bottom: 1.6rem;\n position: relative;\n }\n\n .enp-question-content {\n @include accordion;\n padding-top: 0;\n position: relative;\n }\n\n .enp-question-inner {\n padding: 1.6rem 1.6rem 1rem;\n\n @include breakpoint(medium) {\n padding-right: 2.8rem;\n padding-left: 2.9rem;\n }\n\n }\n\n .enp-question-title__label {\n @include label--bold;\n }\n\n .enp-question-title__textarea {\n @include input--large;\n }\n\n .enp-question-image-upload {\n @include btn--dashed--light--alt-bg;\n @include small-uppercase;\n position: relative;\n margin-bottom: 2rem;\n transform: translate3d(0, 0, 0);\n transition: all .3s $fastInEaseOut;\n\n .enp-question-image-upload__icon--photo {\n @include icon--xxxl;\n opacity: 0;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n margin: 0 auto;\n transform: translate3d(0, 0, 0);\n z-index: -1;\n transition: opacity .2s, transform .3s $fastInEaseOut;\n }\n\n .enp-question-image-upload__icon--add {\n @include icon--circle--small;\n @include icon--gray-bg;\n margin-right: 5px;\n position: relative;\n top: 0.2rem;\n }\n\n &:hover,\n &:focus,\n &:active {\n padding-top: 5rem;\n padding-bottom: 2rem;\n\n .enp-question-image-upload__icon--photo {\n opacity: 1;\n z-index: 1;\n transform: translate3d(0, 1.75rem, 0);\n }\n\n .enp-question-image-upload__icon--add {\n @include icon--gray-bg--hover;\n }\n }\n }\n\n .enp-question-image__container {\n position: relative;\n margin-bottom: 1rem;\n }\n\n .enp-question-image {\n margin-bottom: 1.2rem;\n }\n\n @include radio-inline(enp-question-type);\n\n .enp-question-type__label {\n position: relative;\n z-index: 9;\n }\n\n .enp-slider-options,\n .enp-mc-options {\n margin-top: 0rem;\n display: none;\n animation: slideOutTop .25s $fastInEaseOut forwards;\n animation-delay: 0s, .05s;\n }\n\n .enp-question-type__input--slider:checked ~ .enp-slider-options,\n .enp-question-type__input--mc:checked ~ .enp-mc-options {\n visibility: visible;\n display: block;\n animation: fadeIn .45s $fastInEaseOut forwards;\n }\n\n .enp-mc-options__list {\n @include ul-no-style;\n }\n\n .enp-mc-option {\n position: relative;\n padding-left: 6px;\n\n @include breakpoint(medium) {\n padding-left: 0;\n }\n }\n\n .enp-mc-options__legend {\n @include legend--bold;\n }\n\n .enp-mc-option__add,\n .enp-mc-option__button--correct,\n .enp-mc-option__button--delete {\n display: none;\n }\n\n .enp-question-type__input--mc:checked ~ .enp-mc-options {\n .enp-mc-option__add,\n .enp-mc-option__button--correct,\n .enp-mc-option__button--delete {\n display: block;\n }\n }\n\n .enp-button__question-image-delete,\n .enp-mc-option__button--delete {\n @include btn--reset;\n position: absolute;\n top: 9px;\n right: -24px;\n fill: #bbb;\n cursor: pointer;\n\n @include breakpoint(medium) {\n right: -30px;\n }\n\n &:focus,\n &:hover {\n fill: $red;\n }\n }\n\n .enp-mc-option__button--correct {\n @include btn--reset;\n position: absolute;\n top: 8px;\n left: -24px;\n\n @include breakpoint(medium) {\n left: -35px;\n }\n\n .enp-mc-option__icon--correct {\n @include icon--circle--pad;\n width: 28px;\n height: 28px;\n fill: #fff;\n background: #fff;\n cursor: pointer;\n border: 2px solid $fade_red;\n transition: all .2s;\n }\n\n &:focus .enp-mc-option__icon--correct,\n &:hover .enp-mc-option__icon--correct {\n background: #fff;\n border-color: $green;\n fill: $green;\n }\n\n &:disabled {\n opacity: 1;\n\n .enp-mc-option__icon--correct {\n cursor: default;\n fill: #fff;\n border: 2px solid transparent;\n }\n }\n }\n\n .enp-mc-option--correct {\n .enp-mc-option__input {\n box-shadow: inset 0 0 3px $blue;\n border: 1px solid $blue;\n }\n\n .enp-mc-option__button--correct:focus .enp-mc-option__icon--correct,\n .enp-mc-option__button--correct:hover .enp-mc-option__icon--correct,\n .enp-mc-option__icon--correct {\n fill: #fff;\n border-color: $blue;\n background: $blue;\n }\n }\n\n .enp-mc-option__add {\n @include btn--dashed--light--alt-bg;\n @include small-uppercase;\n text-align: left;\n padding: 0.7rem 0.75rem 0.8rem;\n\n .enp-mc-option__add__icon {\n @include btn--icon__icon--circle--small ;\n @include icon--gray-bg;\n position: relative;\n top: 0.2rem;\n }\n\n &:hover .enp-mc-option__add__icon {\n @include icon--gray-bg--hover;\n }\n }\n\n .enp-slider-options .enp-input {\n max-width: 11.8rem;\n }\n\n .enp-slider-range__container .enp-input,\n .enp-slider-correct__container .enp-input {\n max-width: 8.8rem;\n @include breakpoint('small') {\n max-width: 11.8rem;\n }\n }\n\n .enp-slider-preview {\n border: 1px solid #ddd;\n margin-top: 0.2rem;\n margin-bottom: 1.6rem;\n padding: 1.6rem 1.6rem .6rem;\n position: relative;\n\n .enp-label--slider-preview {\n position: absolute;\n width: 100%;\n top: 0.2rem;\n left: 0.4rem;\n font-size: 0.75rem;\n text-transform: uppercase;\n }\n }\n\n .enp-slider-range__container,\n .enp-slider-correct__container {\n @include flex-spread;\n align-items: center;\n }\n\n .enp-slider-range__helper,\n .enp-slider-correct__helper {\n color: #777;\n font-size: 0.85rem;\n background: #fff;\n padding: 0 .3rem;\n position: relative;\n\n &:before {\n content: '';\n position: absolute;\n top: 44%;\n height: 4px;\n background: #ddd;\n width: 120px;\n left: -60px;\n z-index: -1;\n transition: width 0.7s $fastInEaseOut, background 1.6s $fastInEaseOut;\n }\n }\n\n .enp-slider-options {\n margin-bottom: 2rem;\n\n .enp-accordion-header {\n text-transform: uppercase;\n font-size: 0.85rem;\n padding: 0.675rem;\n }\n\n .enp-slider-advanced-options__content {\n border: none;\n box-shadow: none;\n padding-top: 1rem;\n padding-bottom: 0;\n margin-bottom: 0;\n }\n }\n\n .enp-slider-correct-high__container {\n position: relative;\n }\n\n .enp-slider-correct-high__input-container--hidden {\n display: none;\n }\n\n .enp-slider-correct__helper--hidden {\n &:before {\n width: 0;\n background: $green;\n }\n }\n\n .enp-slider-correct-answer-range--add-range {\n @include btn--dashed--light--alt-bg;\n margin-left: 0.8rem;\n font-size: 0.7rem;\n\n @include breakpoint('small') {\n font-size: 0.8rem;\n padding: .7rem;\n }\n\n @include breakpoint('medium') {\n padding: .7rem 1.2rem;\n min-width: 11.4rem;\n }\n\n .enp-slider-correct-answer-range__icon {\n @include btn--icon__icon--circle--small ;\n @include icon--gray-bg;\n position: relative;\n left: -0.2rem;\n }\n\n &:hover .enp-slider-correct-answer-range__icon {\n @include icon--gray-bg--hover;\n }\n }\n\n .enp-slider-correct-answer-range--remove-range {\n position: absolute;\n right: -1.6rem;\n bottom: 1.6rem;\n background: none;\n border: none;\n box-shadow: none;\n padding: 0 0.1rem;\n\n .enp-slider-correct-answer-range__icon {\n width: 1.2em;\n height: 1.2em;\n fill: $dark_gray;\n }\n\n &:hover,\n &:focus {\n .enp-slider-correct-answer-range__icon {\n fill: $red;\n }\n }\n\n @include breakpoint(medium) {\n top: -0.2rem;\n right: -0.2rem;\n bottom: auto;\n }\n\n }\n\n .enp-slider-options .enp-input:read-only {\n background: $light_gray;\n }\n\n .enp-answer-explanation {\n background: $light_gray;\n padding-top: 2rem;\n box-shadow: inset 1px 0px 0 #ccc, inset -1px -1px 0 #ccc, inset 0 1px 0 #ddd;\n }\n\n .enp-answer-explanation__label {\n @include label--bold;\n\n }\n\n .enp-question__button--delete {\n @include btn--reset;\n position: absolute;\n top: 9px;\n right: 9px;\n fill: #bbb;\n cursor: pointer;\n\n @include breakpoint(medium) {\n right: -30px;\n }\n\n &:hover {\n fill: $red;\n }\n }\n\n .enp-question__move {\n position: absolute;\n left: 15px;\n\n @include breakpoint(medium) {\n left: -40px;\n }\n }\n\n .enp-sort__placeholder {\n background: #ddd;\n height: 60px;\n width: 100%;\n max-height: 120px;\n margin-bottom: 1.6rem;\n }\n\n .ui-sortable .ui-sortable-helper {\n .ui-sortable-handle {\n cursor: move;\n cursor: grabbing;\n cursor: -webkit-grabbing;\n }\n }\n \n\n .enp-question__button--move {\n @include btn--reset;\n position: absolute;\n fill: #bbb;\n cursor: pointer;\n\n &:hover, &:focus {\n fill: #333;\n }\n\n &:disabled {\n opacity: 0.5;\n }\n }\n\n .enp-question__button--move--up {\n top: -25px;\n left: -4px;\n }\n\n\n .enp-question__button--move--down {\n top: 3px;\n right: -20px;\n }\n\n .enp-quiz-form__add-question {\n @include btn--icon;\n @include btn--dashed;\n padding-top: 1rem;\n padding-bottom: 1rem;\n margin-top: 1.6rem;\n margin-bottom: 2rem;\n\n .enp-add-question__icon {\n @include btn--icon__icon--circle--small;\n @include icon--normal;\n @include icon--gray-bg;\n position: relative;\n top: 0.2rem;\n }\n\n &:hover .enp-add-question__icon {\n @include icon--gray-bg--hover;\n }\n }\n\n .enp-btn--save__btns {\n @include flex;\n align-items: center;\n align-items: flex-start;\n }\n\n .enp-quiz-form__save {\n @include btn;\n width: 100%;\n margin-bottom: 1rem;\n opacity: 0.8;\n text-shadow: 0px -1px 2px rgba(0,0,0,.6);\n\n &:hover,\n &:focus {\n opacity: 1;\n }\n\n @include breakpoint(small) {\n padding: 1.2rem 1.8rem 1.1rem;\n margin-right: 3%;\n position: relative;\n }\n }\n\n .enp-quiz-form__save--reveal {\n animation: slideInTop--reduced-opacity .3s $fastInEaseOut;\n }\n\n @include btn--icon--circle(enp-btn--next-step);\n\n .enp-btn--next-step {\n // @include btn;\n width: 100%;\n padding: 1rem 1.4rem 1rem;\n\n @include breakpoint(medium) {\n padding: 1.2rem 1.8rem 1.1rem;\n }\n .enp-btn--next-step__icon {\n width: 1rem;\n height: 1rem;\n }\n // @include breakpoint(small) {\n // width: auto;\n // }\n\n /*\n * AFTER we have removed the Save button,\n * use this code to add the preview button into the\n * header\n @include media(max-medium) {\n padding: 1rem 1.4rem 1rem;\n }\n\n @include breakpoint(medium) {\n position: absolute;\n right: 20px;\n top: 10px;\n width: auto;\n z-index: 999999;\n\n &.enp-btn--next-step--fixed {\n position: fixed;\n animation: navSlideIn .25s;\n }\n }*/\n\n }\n\n .enp-btn--next-step--reveal {\n animation: slideInTop .3s $fastInEaseOut;\n }\n\n\n // UX interactions\n .enp-mc-option--inputs,\n .enp-accordion-header--inserting {\n animation: slideInBottom .4s $fastInEaseOut forwards;\n }\n\n .enp-mc-option--remove,\n .enp-question--remove,\n .enp-question__image--remove {\n animation: removeElement .5s $fastInEaseOut forwards;\n }\n\n .enp-image-upload-wait {\n @include btn--dashed--light--alt-bg;\n padding-top: 4rem;\n padding-bottom: 4rem;\n margin-bottom: 1rem;\n width: 100%;\n }\n\n // validation\n .enp-accordion-header.question-has-error {\n color: $red;\n box-shadow: 0 0 3px $red;\n }\n\n}\n\n.enp-quiz.ui-sortable--sorting #enp-quiz .enp-accordion-content {\n display: none;\n}","#enp-quiz {\n\n\n .enp-quiz-settings-container {\n\n @include breakpoint(large) {\n // margin: 0;\n // width: 40%;\n // float: left;\n }\n }\n\n .enp-quiz-preview-container {\n\n @include breakpoint(large) {\n // width: 60%;\n // float: left;\n }\n\n }\n\n .enp-quiz-share__legend,\n .enp-quiz-settings__title {\n position: relative;\n @include small-uppercase;\n font-weight: 600;\n padding-top: 0;\n\n @include breakpoint(medium) {\n padding: 1em 0;\n }\n }\n\n .enp-quiz-settings__form {\n margin-bottom: 3rem;\n overflow: visible;\n @include breakpoint(large) {\n padding: 0;\n margin-bottom: 0;\n }\n }\n\n .enp-fieldset {\n @include breakpoint(medium) {\n // this is necessary to keep the form elements visible on top of the\n // white BG on the sidebar. We can't set this on the whole form bc\n // then the publish button won't be positioned right\n position: relative;\n }\n }\n\n .enp-title-display__legend {\n padding-top: 0;\n\n @include breakpoint(medium) {\n padding-top: 0.4rem;\n }\n }\n\n .enp-quiz-share__input,\n .enp-quiz-styles__input {\n width: 100%;\n }\n\n .enp-quiz-styles__textarea--custom-css {\n font-family: Monaco,Consolas,\"Andale Mono\",\"DejaVu Sans Mono\",monospace;\n font-size: 0.9rem;\n min-height: 200px;\n }\n\n .enp-fieldset--section {\n padding: 1.6rem 1rem;\n @include breakpoint(large) {\n padding: 1rem;\n }\n\n &.enp-accordion-content--open {\n margin-bottom: 0;\n }\n }\n\n .enp-quiz-share--facebook {\n margin-bottom: 2rem;\n }\n\n @include radio-inline(enp-title-display);\n @include radio-inline(enp-mc-options-order);\n\n .enp-mc-options-order {\n margin-bottom: 1.6rem;\n }\n\n .enp-quiz-share__textarea {\n min-height: 7.6rem;\n margin-bottom: 2rem;\n\n @include breakpoint('medium') {\n min-height: 4.6rem;\n }\n\n @include breakpoint('large') {\n min-height: 7.6rem;\n }\n\n\n }\n\n .enp-preview-form__submit {\n margin-top: 1.6rem;\n margin-bottom: 1.6rem;\n }\n\n .enp-quiz-preview__title {\n @include small-uppercase;\n font-weight: 600;\n @include breakpoint(medium) {\n padding: 1em 0;\n }\n }\n\n .enp-preview-form__submit {\n @include btn;\n width: 100%;\n padding-top: 0.85rem;\n padding-bottom: 0.85rem;\n margin-bottom: 1rem;\n opacity: 0.8;\n text-shadow: 0px -1px 2px rgba(0,0,0,.6);\n\n &:hover,\n &:focus {\n opacity: 1;\n }\n }\n\n .enp-preview-form__submit--publish {\n width: 100%;\n position: relative;\n z-index: 99999999;\n padding: 1.05rem 1.8rem .95rem;\n }\n\n .enp-quiz-styles__iris-wrapper {\n position: relative;\n }\n\n // Fix for WP Color Picker formatting\n .iris-picker {\n box-sizing: content-box;\n position: relative;\n z-index: 9999999999;\n top: -1.2rem;\n margin-bottom: 1rem;\n padding-bottom: 3rem;\n padding-right: 30px;\n\n @include breakpoint(large) {\n position: absolute;\n top: 50px;\n left: 0;\n }\n\n &:last-of-type {\n margin-bottom: 0;\n }\n\n .ui-slider-handle:focus,\n .ui-draggable-handle:focus .ui-slider-handle {\n box-shadow: 0 0 3px rgba(0,0,0,.75);\n }\n\n }\n\n .enp-quiz-styles__set-default {\n @include btn--ghost;\n font-size: 0.75rem;\n position: absolute;\n left: 10px;\n bottom: 10px;\n }\n\n .enp-iris__close {\n @include btn--reset;\n position: absolute;\n top: 5px;\n right: 5px;\n fill: #888;\n cursor: pointer;\n }\n\n .enp-quiz-styles__input--color {\n padding-left: 45px;\n }\n\n .enp-quiz-styles__color-demo {\n width: 30px;\n height: 30px;\n border: 1px solid #ccc;\n top: 8px;\n left: 8px;\n border-radius: 3px;\n\n position: absolute;\n }\n\n\n}\n","#enp-quiz {\n .enp-share-quiz__container {\n @include breakpoint(medium) {\n padding: 0;\n border: none;\n }\n }\n /* Removing flexbox layout temporarily\n * because it wasn't laying out correctly before content loading\n * It would snap into the correct layout after a resize or textarea highlight\n .enp-publish-page-container {\n &:before {\n @include breakpoint(medium) {\n position: absolute;\n top: 0;\n bottom: 0;\n left: -100%;\n width: 128%;\n content: '';\n background: #fff;\n border-right: 1px solid #ddd;\n }\n\n @include breakpoint(large) {\n width: 124%;\n }\n }\n\n .enp-quiz-message {\n @include breakpoint(medium) {\n margin-left: 33%;\n }\n\n @include breakpoint(large) {\n margin-left: 26%;\n }\n }\n }\n\n .enp-publish-page-flex-container {\n @include breakpoint(medium) {\n @include flex;\n align-items: stretch;\n flex-direction: row-reverse;\n }\n }\n\n .enp-publish-page__aside-container {\n\n @include breakpoint(medium) {\n position: relative;\n margin: 0 6% 0 0;\n padding: 0;\n width: 24%;\n }\n\n @include breakpoint(large) {\n margin: 0;\n //padding-left: 20px;\n width: 20%;\n }\n }\n\n .enp-share-quiz__container,\n .enp-ab-ad__container {\n @include breakpoint(medium) {\n padding: 0;\n border: none;\n }\n }\n */\n\n .enp-share-quiz__url {\n display: block;\n font-size: 1rem;\n line-height: 1.4;\n word-wrap: break-word;\n }\n\n @include share_icons(enp-share-quiz);\n\n .enp-share-quiz {\n justify-content: space-around;\n margin-bottom: 0;\n .enp-icon--mail {\n background: $blue;\n }\n }\n}\n","#enp-quiz {\n .enp-ab-create__container {\n @include container--wide;\n width: 100%;\n background: $really_light_gray;\n padding-top: 3rem;\n padding-bottom: 3rem;\n @include breakpoint(large) {\n padding-top: 0;\n }\n }\n\n .enp-ab-create__form {\n @include container--thin;\n @include breakpoint(large) {\n @include container;\n margin: unset;\n }\n }\n\n .enp-ab-create__label {\n @include label--bold;\n }\n\n .enp-ab-create-title__textarea {\n @include input--xl;\n width: 100%;\n }\n\n .enp-ab-create__select {\n @include select--wide--chevron;\n }\n\n .enp-ab-create__submit {\n width: 100%;\n padding-top: 1em;\n padding-bottom: 1em;\n }\n}\n","// TEMP for dev theme\n#headerimg h1 {\n text-align: center;\n font-size: 40px !important;\n}\n#enp-quiz {\n\n &.enp-quiz__main {\n @include container;\n display: grid;\n gap: 1em;\n min-height: 85vh;\n \n @include breakpoint(large) {\n @include container--wide;\n grid-template-columns: 1fr 4fr;\n }\n }\n\n .enp-dash-container {\n @include xpadding-vertical;\n @include xpadding-horizontal;\n transition: all .25s $fastInEaseOut;\n }\n\n .enp-dash__section-aside {\n background-color: $background;\n @include breakpoint(medium) {\n @include xpadding-vertical;\n @include xpadding-horizontal;\n }\n }\n\n .enp-breadcrumb-link__container {\n padding-bottom: 2rem;\n }\n\n .enp-search-quizzes {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n padding: 1em;\n\n @include breakpoint(medium) {\n padding: 0.2rem 0;\n flex-wrap: nowrap;\n }\n @include breakpoint(large) {\n @include flex-spread-vertical;\n }\n }\n\n .enp-search-quizzes__form-item {\n margin-bottom: 0.6rem;\n flex: 0 1 48%;\n\n @include breakpoint(small) {\n margin-bottom: 0;\n margin-right: 1rem;\n flex: 1 0 auto;\n }\n\n }\n\n .enp-quiz-search {\n flex: 1 0 100%;\n position: relative;\n @include breakpoint(medium) {\n flex: 1 0 auto;\n }\n }\n\n .enp-search-quizzes__label {\n margin-bottom: 0;\n @include screen-reader-text ;\n }\n\n .enp-search-quizzes__select {\n padding: .3rem;\n border-radius: 3px;\n width: 100%;\n @include breakpoint(large) {\n min-width: 200px;\n font-size: 0.85rem;\n }\n }\n\n .enp-quiz-search__input {\n width: 100%;\n margin: 0 0 0.1rem;\n padding: .3rem .3rem .3rem 26px;\n font-size: 0.85rem;\n @include breakpoint(medium) {\n // max-width: 200px;\n }\n }\n\n .enp-quiz-search__icon {\n position: absolute;\n bottom: 0.3rem;\n left: 0.2rem;\n width: 21px;\n height: 21px;\n }\n\n .enp-search-quizzes__button {\n padding: 0.2rem 0.8rem;\n }\n\n .enp-search-results-description {\n font-size: 0.85rem;\n }\n\n .enp-search-results-description__link {\n white-space: nowrap;\n }\n\n .enp-search-results-description__icon {\n width: 1.3em;\n height: 1.3em;\n position: relative;\n top: 4px;\n left: 2px;\n }\n\n .enp-dash__section-title {\n @include small-uppercase;\n margin-bottom: 0.325rem;\n border-bottom: 1px solid $dark-gray;\n @include breakpoint(medium) {\n padding: 1em 0;\n }\n }\n\n .enp-dash__ab-test-helper--not-enough-quizzes {\n color: $darker-gray;\n }\n\n .enp-view-toggle {\n cursor: pointer;\n opacity: .5;\n display: none; // hide the buttons for small screens\n\n @include breakpoint(medium) {\n display: flex;\n }\n }\n\n .enp-view-toggle__active {\n opacity: 1;\n }\n\n .enp-sort-by {\n margin-left: 5px;\n }\n\n .enp-dash-list {\n @include flex-grid;\n }\n\n .enp-dash-item {\n @include flex-grid__item ;\n @include flex-spread-vertical;\n display: flex;\n z-index: 1;\n flex-direction: column;\n align-content: flex-end;\n justify-content: flex-end;\n border: none;\n border-radius: 3px;\n }\n\n .enp-dash-item--published {\n box-shadow: inset 4px 0 0 $blue, 0 1px 0 rgba(0,0,0,.1);\n }\n\n .enp-dash-item--draft {\n box-shadow: inset 4px 0 0 $light_blue, 0 1px 0 rgba(0,0,0,.1);\n .enp-dash-item__title a {\n color: $dark_blue;\n }\n }\n\n .enp-dash-item--remove {\n animation: removeElement .5s $fastInEaseOut forwards;\n }\n\n .enp-dash-list--list-view {\n .enp-dash-item {\n margin: 0 0 0.8rem;\n flex-basis: 100%;\n }\n }\n\n .enp-dash-item__spinner {\n @include flex-center ;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n background: rgba(245,216,216,0.8);\n width: 100%;\n animation: fadeIn .3s $fastInEaseOut;\n }\n\n .enp-dash-item__header {\n padding: 0.5rem 1rem;\n background: $light_gray;\n border-bottom: 1px solid $dark_gray;\n display: flex;\n justify-content: space-between;\n align-items: center;\n @include border-radius;\n }\n\n .enp-dash-item__title {\n @include flex-grid__title ;\n padding: 0;\n margin-bottom: 0;\n a {\n color: $blue;\n }\n }\n\n .enp-dash-item__content {\n padding: 0rem 0 0.375rem;\n position: relative;\n transition: all .2s $fastInEaseOut;\n }\n\n .enp-dash-item__meta {\n @include hint;\n font-size: 0.75rem;\n }\n\n .enp-dash-item__username {\n word-wrap: break-word;\n padding-left: 0.4rem;\n margin-left: 0.2rem;\n border-left: 1px solid #ddd;\n }\n\n .enp-dash-item__title--ab-test {\n padding-bottom: 0;\n }\n\n .enp-dash-item__ab-quizzes {\n @include ul-no-style;\n font-size: 0.75rem;\n color: $darker_gray;\n margin-bottom: 0.8rem;\n }\n\n .enp-dash-item__nav {\n @include ul-no-style;\n margin-bottom: 0;\n font-size: 0.85rem;\n }\n\n .enp-dash-item__nav__item {\n display: flex;\n margin: 0;\n width: 100%;\n align-items: center;\n &:hover {\n background-color: $gray;\n .enp-dash-item__icon {\n fill: $red;\n }\n }\n a {\n font-weight: normal;\n color: $darker_gray;\n @include flex;\n align-items: center;\n width: 100%;\n padding: 12px;\n &:focus,\n &:hover {\n color: $red;\n outline: 1px dotted $link;\n outline-offset: 1px;\n .enp-dash-item__icon {\n fill: $red;\n }\n }\n }\n }\n .enp-delete-quiz {\n width: 100%;\n &:hover {\n .enp-dash-item__delete {\n color: $red;\n }\n .enp-icon {\n fill: $red;\n }\n }\n }\n .enp-dash-item__delete {\n @include btn--reset;\n @include flex;\n padding: 12px;\n align-items: center;\n position: relative;\n line-height: 1.6;\n color: $darker_gray;\n cursor: pointer;\n width: 100%;\n font-size: 0.85rem;\n .enp-icon {\n fill: $darker_gray;\n }\n }\n .enp-dash-item__icon {\n fill: $darker_gray;\n width: 15px;\n height: 15px;\n margin-right: 10px;\n }\n\n .enp-dash-item__nav--collapsible {\n display: none;\n position: absolute;\n z-index: 2;\n top: 44px;\n right: -17px;\n width: 195px;\n background-color: #fff;\n text-align: left;\n transform: translate3d(0,0,0);\n transition: all .2s $fastInEaseOut;\n\n .enp-dash-item__nav__item {\n cursor: pointer;\n }\n }\n\n .enp-dash-item__menu-action {\n height: 24px;\n background: none;\n border: none;\n color: #444;\n padding: 0;\n bottom: 0.2rem;\n right: 1.5rem;\n top: 1.5rem;\n cursor: pointer;\n }\n\n .enp-dash-item__menu-action-wrap {\n max-width: 0;\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n }\n\n .enp-dash-item__menu-action__icon {\n width: 15px;\n height: 15px;\n fill: $darker_gray;\n transition: all .3s $fastInEaseOut;\n }\n\n .enp-dash-item__menu-action__icon--bottom {\n \n }\n\n .enp-dash-item--menu-active {\n transform: translate3d(0,-3px,0);\n z-index: 2;\n .enp-dash-item__nav-wrap {\n position: relative;\n }\n\n &.enp-dash-item--published {\n box-shadow: inset 4px 0 0 $green, 0 2px 2px rgba(0,0,0,.2);\n }\n\n &.enp-dash-item--draft {\n box-shadow: inset 4px 0 0 lighten($green, 25%), 0 2px 2px rgba(0,0,0,.2);\n }\n\n .enp-dash-item__menu-action__icon--bottom {\n transform: rotateX(180deg);\n }\n\n .enp-dash-item__nav--collapsible {\n display: block;\n animation: slideInTop .25s $fastInEaseOut forwards;\n @include border-radius;\n @include box-shadow;\n }\n\n .enp-dash-item__content {\n opacity: 0.4;\n }\n\n }\n\n\n .enp-quiz-results {\n display: flex;\n justify-content: space-around;\n list-style: none;\n margin: 0.8rem 0 0;\n padding: 0;\n text-align: center;\n }\n\n .enp-quiz-results__item {\n\n margin: 0 2% 0 0;\n padding: 0;\n color: $title;\n\n @media (max-width:280px) {\n width: 100%;\n padding: 0;\n margin-bottom: 0.6rem;\n }\n }\n\n .enp-quiz-results__number {\n font-size: 1.6rem;\n line-height: 1;\n position: relative;\n }\n\n .enp-dash-item--draft .enp-quiz-results__number {\n opacity: 0.5;\n }\n\n .enp-quiz-results__number--average-score {\n color: darken($green, 8);\n\n &:after {\n content: '%';\n font-size: .9rem;\n position: absolute;\n top: .3rem;\n right: -1rem;\n }\n }\n\n .enp-quiz-results__label {\n text-transform: uppercase;\n font-size: .7rem;\n font-weight: 300;\n color: $darker_gray;\n }\n\n\n .enp-quiz-list__view {\n // @include flex-bottom;\n }\n\n .enp-dash-item--add-new__wrap {\n display: grid;\n gap: 1em;\n grid-template-columns: 1fr 1fr;\n }\n\n .enp-dash-list--quiz__container {\n display: grid;\n gap: 1em;\n @include breakpoint(large) {\n grid-template-columns: 1fr 1fr;\n }\n }\n\n .enp-dash-item--add-new {\n background: none;\n border: none;\n padding: 0;\n position: relative;\n @include header-space;\n }\n\n .enp-dash-link--add-new {\n @include btn--dashed--light;\n justify-content: flex-start;\n color: $light_blue;\n padding: 1rem 1.2rem;\n\n\n @include breakpoint(medium) {\n @include small-uppercase;\n @include flex-center;\n flex-direction: column;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n }\n\n .enp-dash-link__icon {\n @include icon--circle;\n @include icon--normal;\n margin-right: 5px;\n background-color: $light_blue;\n\n @include breakpoint(medium) {\n width: 2rem;\n height: 2rem;\n margin: 0.8rem 0 0.2rem;\n }\n }\n\n &:hover {\n color: $dark_blue;\n\n .enp-dash-link__icon {\n fill: #fff;\n background: $dark_blue;\n }\n }\n\n }\n\n .enp-quiz-message--welcome p {\n color: $font;\n }\n\n // pagination\n .enp-paginate {\n @include ul-no-style ;\n @include flex-center ;\n font-size: 1rem;\n }\n\n .enp-paginate__link {\n @include flex-center ;\n margin: 0 0.2rem;\n padding: 0 0.4rem;\n border-radius: 3px;\n font-weight: normal;\n\n }\n\n .enp-paginate__link--current-page {\n border: 2px solid $blue;\n }\n\n .enp-paginate__item--last-page,\n .enp-paginate__item--first-page {\n display: flex;\n }\n\n .enp-paginate__item--first-page:after,\n .enp-paginate__item--last-page:before {\n content: '...';\n font-size: 1rem;\n position: relative;\n bottom: 0.2rem;\n opacity: 0.6;\n }\n\n .enp-paginate__item--no-gap {\n &:before,\n &:after {\n content:'';\n }\n }\n\n .enp-paginate__item--next-page {\n margin-left: 0.2rem;\n }\n\n .enp-paginate__item--previous-page {\n margin-right: 0.2rem;\n }\n}\n","#enp-quiz {\n .enp-quiz-breadcrumbs {\n grid-row: 1;\n // @include flex-center;\n // position: absolute;\n // top: 0;\n // width: 1000%;\n // left: -500%;\n // right: -500%;\n // margin-left: auto;\n // margin-right: auto;\n // background: #fff;\n // border-bottom: 1px solid #ddd;\n // padding: 10px;\n // z-index: 99999;\n }\n\n .enp-quiz-breadcrumbs__list {\n @include flex-inline;\n }\n\n .enp-quiz-breadcrumbs__item {\n @include flex-inline__item ;\n @include flex-center;\n fill: $link;\n margin-right: 5px;\n\n @include breakpoint(small) {\n margin-right: 10px;\n }\n }\n\n .enp-quiz-breadcrumbs__link--disabled {\n @include disabled;\n }\n\n .enp-quiz-breadcrumbs__link--active {\n @include btn--ghost;\n @include btn--thin;\n }\n\n .enp-quiz-breadcrumbs__link {\n font-size: 1rem;\n font-weight: 400;\n text-transform: none;\n letter-spacing: 0;\n }\n\n // JS\n .enp-quiz-breadcrumbs--fixed {\n top: 0;\n position: fixed;\n animation: navSlideIn .25s;\n }\n}\n","#enp-quiz {\n .enp-results-title {\n font-size: 1.6rem;\n text-align: center;\n padding: 3.2rem 20px 2.6rem;\n background: $really_light_gray;\n margin: -1.2rem 0 2rem;\n border-bottom: 1px solid #ddd;\n\n &:after {\n @include small-uppercase;\n display: block;\n content: \"RESULTS\";\n font-weight: normal;\n }\n }\n\n .enp-results__container {\n @include container--wide;\n display: block;\n\n @include breakpoint(large) {\n display: flex;\n @include flex-spread;\n }\n }\n\n .enp-results__container,\n .enp-quiz-scores__container,\n .enp-results-flow__container {\n @include media(max-medium) {\n padding: 8px;\n }\n }\n\n .enp-quiz-scores__container,\n .enp-results-flow__container {\n width: 100%;\n\n @include breakpoint(large) {\n width: 48%;\n }\n }\n\n .enp-quiz-scores {\n margin-top: 2.6rem;\n }\n\n .enp-quiz-score__line-chart {\n height: 300px;\n margin-bottom: 1rem;\n\n .ct-label {\n color: $font;\n }\n\n .ct-grid {\n stroke: #dadada;\n stroke-dasharray: 0;\n }\n\n .ct-line {\n stroke: $green;\n stroke-width: 2px;\n }\n\n .ct-point {\n stroke: $green;\n stroke-width: 8px;\n }\n }\n\n .enp-quiz-scores-table {\n width: 100%;\n max-width: 500px;\n margin: 0 auto;\n\n tr th {\n background-color: #fff;\n }\n }\n\n .enp-quiz-scores-table__label {\n padding-left: 5%;\n }\n\n .enp-quiz-scores-table__score {\n text-align: right;\n padding-right: 5%;\n }\n\n .enp-results-flow {\n position: relative;\n margin: 2rem auto;\n width: 320px;\n height: 320px;\n border-radius: 50%;\n\n @include media(300px) {\n left: -100px;\n }\n\n @include breakpoint(small) {\n width: 390px;\n height: 390px;\n }\n\n @include breakpoint(medium) {\n width: 450px;\n height: 450px;\n }\n\n @include breakpoint(large) {\n width: 400px;\n height: 400px;\n }\n\n }\n\n .enp-results-flow__section-title {\n @include screen-reader-text;\n }\n\n .enp-results-flow__item {\n border-radius: 50%;\n text-align: center;\n height: 100%;\n width: 100%;\n margin: 0 auto;\n left: 0;\n right: 0;\n padding: 12.5% 0 0;\n letter-spacing: 0.05rem;\n border: 2px solid $green;\n animation: 0.85s slideInBottom $fastInEaseOut forwards;\n }\n\n .enp-results-flow__item--total-views {\n background: #fff;\n }\n\n .enp-results-flow__item--quiz-starts {\n width: 65%;\n height: 65%;\n position: absolute;\n padding-top: 8%;\n bottom: 2.5%;\n background: lighten($green, 48);\n }\n\n .enp-results-flow__item--quiz-finishes {\n width: 35%;\n height: 35%;\n position: absolute;\n bottom: 5%;\n background: lighten($green, 35);\n }\n\n .enp-results-flow__title {\n @include small-uppercase;\n color: #444;\n font-size: .7rem;\n margin-bottom: 0px;\n\n @include breakpoint(medium) {\n font-weight: bold;\n margin-bottom: 2px;\n }\n }\n\n .enp-results-flow__number {\n font-weight: bold;\n font-size: 1.4rem;\n line-height: 1.2;\n }\n\n .enp-results-flow__number--total-views {\n font-size: 2rem;\n }\n\n .enp-results-flow__number--quiz-starts {\n font-size: 1.65rem;\n }\n\n .enp-results-flow__percentage {\n font-size: .8rem;\n font-weight: normal;\n position: relative;\n display: inline-block;\n top: -0.7em;\n left: -.1rem;\n color: #444;\n\n &:after {\n content: '%';\n position: absolute;\n right: -0.75rem;\n font-size: .7rem;\n color: #444;\n }\n }\n\n .enp-results-questions__section {\n // @include section--alt;\n padding-top: 5rem;\n padding-bottom: 3rem;\n margin-top: 5rem;\n margin-bottom: 3rem;\n @include breakpoint(medium) {\n @include xmargin-horizontal;\n }\n }\n\n .enp-results-questions__container {\n @include media(max-small) {\n padding-left: 8px;\n padding-right: 8px;\n }\n }\n\n .enp-results-questions__header {\n align-items: flex-start;\n flex-direction: column;\n\n @include breakpoint(small) {\n @include flex-spread;\n flex-direction: row;\n align-items: flex-end;\n }\n }\n\n .enp-results-questions__title {\n @include small-uppercase;\n }\n\n .enp-results-questions__key {\n @include small-uppercase;\n }\n\n .enp-results-questions {\n @include ul-no-style;\n }\n\n .enp-results-question {\n width: 100%;\n font-size: 1rem;\n padding: 0;\n margin-bottom: 1rem;\n }\n\n .enp-results-question__header {\n padding: 1rem 1.2rem;\n position: relative;\n }\n\n .enp-results-question__question,\n .enp-results-question__stats {\n font-size: 1rem;\n line-height: 1.4;\n }\n\n .enp-results-question__question {\n font-weight: normal;\n\n @include breakpoint(small) {\n padding-right: 7em;\n margin-bottom: 0;\n }\n }\n\n .enp-results-question__stats {\n font-size: .9rem;\n\n @include breakpoint(small) {\n position: absolute;\n bottom: 1rem;\n right: 1.2rem;\n text-align: right;\n }\n }\n\n .enp-results-questions__key,\n .enp-results-question__stats {\n font-weight: 300;\n }\n\n .enp-results-question__content {\n padding: 2rem 1.2rem 1.2rem;\n @include border-radius;\n }\n\n .enp-results-question__deep-stats {\n @include flex-spread-around;\n @include ul-no-style;\n text-align: center;\n\n @include media(500px) {\n flex-wrap: wrap;\n }\n }\n\n .enp-results-question__deep-stat {\n\n @include media(500px) {\n width: 48%;\n margin: 0 2% 2% 0;\n padding: 1.6rem 0;\n\n &:nth-child(even) {\n margin-right: 0;\n }\n }\n\n @include media(280px) {\n width: 100%;\n padding: 0;\n margin-bottom: 1.6rem;\n }\n }\n\n .enp-results-question__deep-stat__number {\n font-size: 1.8rem;\n line-height: 1;\n position: relative;\n }\n\n .enp-results-question__deep-stat__number--finishes,\n .enp-results-question__deep-stat__number--correct {\n @include dark-green;\n }\n\n .enp-results-question__deep-stat__number--incorrect {\n @include fade-red;\n }\n\n .enp-results-question__deep-stat__number--correct,\n .enp-results-question__deep-stat__number--incorrect,\n .enp-results-question__deep-stat__number--finishes {\n &:after {\n content: '%';\n font-size: .9rem;\n position: absolute;\n top: .3rem;\n right: -1rem;\n }\n }\n\n .enp-results-question__deep-stat__label {\n @include small-uppercase;\n font-size: .8rem;\n }\n\n .enp-results-question__options {\n @include ul-no-style;\n margin-bottom: 0;\n }\n\n .enp-results-question__option {\n padding: 0.8rem 0.8rem 0.8rem 0.4rem;\n border-top: 1px solid #ddd;\n @include media(max-small) {\n position: relative;\n flex-direction: column;\n }\n\n @include breakpoint(small) {\n @include flex-spread;\n flex-direction: row;\n }\n\n &:first-of-type {\n margin-top: 1.4rem;\n }\n\n }\n\n .enp-results-question__option--correct {\n background: lighten($green, 48);\n }\n\n .enp-results-question__option__text {\n flex-grow: 100;\n margin-right: 1rem;\n }\n\n .enp-results-question__option__text__helper {\n font-weight: 300;\n @include small-uppercase;\n margin-right: 0.4rem;\n }\n\n .enp-results-question__option__icon {\n @include media(max-small) {\n position: relative;\n left: -3px;\n }\n\n @include breakpoint(small) {\n margin-right: 0.3rem;\n min-width: 1.6rem;\n }\n }\n\n .enp-results-question__option__icon--incorrect {\n fill: $fade_red;\n opacity: 0.5;\n }\n\n .enp-results-question__option__icon--correct {\n fill: $dark_green;\n opacity: 1;\n }\n\n .enp-results-question__option__percentage--incorrect {\n @include fade-red;\n }\n\n .enp-results-question__option__percentage--correct {\n @include dark-green;\n }\n\n .enp-results-question__option__number-selected {\n font-weight: 300;\n\n @include media(max-small) {\n position: absolute;\n top: 0.8rem;\n right: 0.8rem;\n }\n }\n\n .enp-slider-responses__title {\n @include small-uppercase;\n font-weight: 400;\n margin-top: 1.6rem;\n }\n\n .enp-slider-responses__line-chart {\n .ct-point {\n stroke-width: 8px;\n }\n }\n\n .enp-slider-responses__line-chart--low,\n .enp-slider-responses__line-chart--high {\n stroke: $red;\n }\n\n .enp-slider-responses__line-chart--correct {\n stroke: $green;\n }\n\n .enp-slider-responses-table {\n width: 100%;\n }\n\n .enp-slider-responses-table tr:nth-child(even) td {\n background-color: #fff;\n }\n\n .enp-slider-responses-table tr.enp-slider-responses-table__response--correct td {\n background-color: lighten($green, 48);\n }\n\n .enp-slider-responses-table__content {\n box-shadow: none;\n padding-top: 1rem;\n }\n\n .enp-slider-responses-table--hide-zero {\n .enp-slider-responses-table__frequency--zero {\n display: none;\n }\n }\n\n .enp-slider-responses-table__response-frequency {\n @include flex-spread ;\n align-items: center;\n }\n\n .enp-slider-responses-table__toggle-zero-frequency {\n @include accordion__header ;\n width: auto;\n padding: 0 0.6rem;\n margin: 0;\n }\n\n\n\n}\n\n.enp-quiz-results {\n #enp-quiz .enp-aside {\n border: none;\n }\n\n .enp-results-questions__title__quiz-title {\n @include screen-reader-text;\n }\n}\n","#enp-quiz {\n\n .enp-results--ab {\n display: block;\n margin-bottom: 3rem;\n\n @include breakpoint(large) {\n display: flex;\n flex-wrap: wrap;\n align-content: flex-end;\n width: 50%;\n padding: 10px;\n }\n\n }\n\n .enp-results--a {\n @include breakpoint(large) {\n padding-right: 1rem;\n border-right: 1px solid #ddd;\n }\n }\n\n .enp-results--b {\n @include breakpoint(large) {\n padding-left: 1rem;\n }\n }\n\n .enp-results-title--ab,\n .enp-results__container--ab .enp-results-flow__container {\n min-width: 100%;\n }\n\n .enp-results--loser {\n .enp-results-flow__item {\n border: 2px solid $red;\n }\n\n .enp-results-flow__item--quiz-starts {\n background: lighten($red, 42);\n }\n\n .enp-results-flow__item--quiz-finishes {\n background: lighten($red, 34);\n }\n\n th,\n .enp-results-questions__title {\n color: $dark_red;\n }\n\n }\n\n .enp-results--winner {\n th,\n .enp-results-questions__title {\n color: $dark_green;\n }\n\n }\n\n .enp-results-title--a,\n .enp-results-title--b {\n background: transparent;\n }\n\n .enp-ab-scores {\n @include container--wide;\n\n th.enp-quiz-scores-table__label,\n th.enp-quiz-scores-table__score {\n padding-left: 0;\n padding-right: 0;\n }\n }\n\n .enp-ab-scores__title {\n padding-left: 50px;\n @include small-uppercase;\n }\n\n .enp-quiz-score__line-chart .enp-test-loser {\n\n .ct-line,\n .ct-point {\n stroke: $red;\n }\n }\n\n .enp-quiz-scores {\n margin-top: 0;\n }\n\n .enp-question-results,\n .enp-ab-scores .enp-quiz-scores-table {\n margin-bottom: 1.6rem;\n\n @include breakpoint(large) {\n float: left;\n width: 48%;\n margin: 0;\n\n &:first-of-type {\n margin-right: 4%;\n }\n }\n }\n\n .enp-question-results__container {\n @include container--wide;\n padding-top: 3rem;\n }\n\n .enp-question-results--ab {\n\n .enp-results-questions__section {\n background: #fff;\n border: none;\n padding: 1.6rem 0;\n margin: 1.6rem auto;\n }\n\n .enp-results-questions__container {\n padding: 0;\n }\n\n }\n\n .enp-ab-new-embed-code__section {\n @include container--thin;\n max-width: 540px;\n padding-bottom: 2rem;\n margin-bottom: 2rem;\n\n .enp-ab-embed-code {\n padding: 0;\n margin: 0;\n }\n }\n\n .enp-ab-embed-code__section {\n @include section--alt;\n padding-top: 5rem;\n margin-top: 5rem;\n }\n\n .enp-ab-embed-code {\n @include container;\n }\n\n .enp-ab-embed-code__title {\n @include small-uppercase;\n }\n\n .enp-embed-code__textarea {\n margin-bottom: 0;\n }\n\n .enp-embed-code__instructions {\n font-size: 1.1rem;\n }\n}\n","#enp-quiz {\n\n .enp-slider {\n margin-bottom: 1.6rem;\n }\n\n .enp-slider-input__container {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 1.6rem auto;\n position: relative;\n }\n\n .enp-slider-input__label {\n @include label;\n }\n\n .enp-slider-input__prefix,\n .enp-slider-input__suffix {\n font-size: 1rem;\n }\n\n .enp-slider-input__prefix {\n margin-right: .2rem;\n white-space: pre;\n }\n\n .enp-slider-input__suffix {\n margin-left: .2rem;\n white-space: pre;\n }\n\n .enp-slider-input__input {\n @include input;\n margin-bottom: 0;\n padding: .75rem;\n width: auto;\n transition: all .25s $fastInEaseOut;\n }\n\n .enp-slider-input__input--incorrect {\n color: $red;\n }\n\n .enp-slider-input__input--correct {\n color: $dark_green;\n }\n\n .enp-slider-input__input--invalid-animation {\n box-shadow: 0 0 2px 1px $fade_red;\n }\n\n .enp-slider_input__range-helper {\n position: absolute;\n bottom: -1.2rem;\n font-size: 0.8rem;\n }\n\n .enp-slider_input__range-helper--low {\n left: 0;\n }\n\n .enp-slider_input__range-helper--high {\n right: 0;\n }\n\n .enp-slider-input__range-helper__number {\n position: relative;\n color: $dark_gray;\n }\n\n .enp-slider_input__range-helper__number--low {\n\n }\n\n .enp-slider_input__range-helper__number--high {\n\n }\n\n .ui-slider-range-show-correct__tooltip-container {\n position: relative;\n }\n\n .ui-slider-range-show-correct__tooltip {\n position: absolute;\n top: -0.4rem;\n margin-left: -0.55rem;\n height: 1rem;\n width: 1.1rem;\n height: 1.1rem;\n border: 2px solid $green;\n background-color: #fff;\n border-radius: 50%;\n z-index: 9999;\n }\n\n .ui-slider-range-show-correct__tooltip--low {\n left: 0;\n }\n\n .ui-slider-range-show-correct__tooltip--high {\n right: -0.55rem;\n }\n\n .ui-slider-range-show-correct__tooltip__text {\n position: relative;\n color: darken($green, 15);\n top: -1.35rem;\n font-size: .825rem;\n min-width: 100%;\n display: inline-block;\n text-align: center;\n text-shadow: 0 1px 0 #fff;\n }\n\n .ui-slider-range-show-correct__tooltip__text--low {\n\n }\n\n .ui-slider-range-show-correct__tooltip__text--high {\n\n }\n\n .ui-slider-range-show-correct__tooltip__text--low-center {\n //left: 0; // not perfectly centered for huge numbers, but is for small numbers\n }\n\n // JQUERY SLIDER\n .enp-slider {\n\t\tposition: relative;\n\t\ttext-align: left;\n\t\tbackground: #ddd;\n\n\t\t/* Layout helpers\n\t\t----------------------------------*/\n\t\t.ui-helper-hidden {\n\t\t\tdisplay: none;\n\t\t}\n\t\t.ui-helper-hidden-accessible {\n\t\t\tborder: 0;\n\t\t\tclip: rect(0 0 0 0);\n\t\t\theight: 1px;\n\t\t\tmargin: -1px;\n\t\t\toverflow: hidden;\n\t\t\tpadding: 0;\n\t\t\tposition: absolute;\n\t\t\twidth: 1px;\n\t\t}\n\t\t.ui-helper-reset {\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tborder: 0;\n\t\t\toutline: 0;\n\t\t\tline-height: 1.3;\n\t\t\ttext-decoration: none;\n\t\t\tfont-size: 100%;\n\t\t\tlist-style: none;\n\t\t}\n\t\t.ui-helper-clearfix:before,\n\t\t.ui-helper-clearfix:after {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: table;\n\t\t\tborder-collapse: collapse;\n\t\t}\n\t\t.ui-helper-clearfix:after {\n\t\t\tclear: both;\n\t\t}\n\t\t.ui-helper-clearfix {\n\t\t\tmin-height: 0; /* support: IE7 */\n\t\t}\n\t\t.ui-helper-zfix {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tposition: absolute;\n\t\t\topacity: 0;\n\t\t\tfilter:alpha(opacity=0); /* support: IE8 */\n\t\t}\n\n\t\t.ui-front {\n\t\t\tz-index: 100;\n\t\t}\n\n\n\t\t/* Interaction Cues\n\t\t----------------------------------*/\n\t\t.ui-state-disabled {\n\t\t\tcursor: default !important;\n\t\t}\n\n\n\t\t/* Icons\n\t\t----------------------------------*/\n\n\t\t/* states and images */\n\t\t.ui-icon {\n\t\t\tdisplay: block;\n\t\t\ttext-indent: -99999px;\n\t\t\toverflow: hidden;\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\n\t\t/* Misc visuals\n\t\t----------------------------------*/\n\n\t\t/* Overlays */\n\t\t.ui-widget-overlay {\n\t\t\tposition: fixed;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\n\t\t.ui-slider-handle {\n\t\t\tbackground: #fff;\n\t\t\tborder-radius: 50%;\n\t\t\tborder: 1px solid #aaa;\n\t\t\tposition: absolute;\n\t\t\tz-index: 2;\n\t\t\twidth: 1.2rem;\n\t\t\theight: 1.2rem;\n top: -.4rem;\n\t\t\tmargin-left: -.6rem;\n\t\t\tcursor: default;\n\t\t\t-ms-touch-action: none;\n\t\t\ttouch-action: none;\n\t\t\ttransition: opacity 0.2s $fastInEaseOut, height .18s $fastInEaseOut, width .18s $fastInEaseOut, transform 0.18s $fastInEaseOut;\n\n @include media(max-medium) {\n width: 2rem;\n \t\t\theight: 2rem;\n top: -.85rem;\n margin-left: -1rem;\n transform: rotate(225deg);\n }\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tbox-shadow: 0 0 3px 1px #4D90FE;\n\t\t\t}\n\n &.ui-state-active {\n @include media(max-medium) {\n width: 2.2rem;\n height: 2.2rem;\n border-top-left-radius: 0;\n transform: translate3d(-0.2rem, -0.8rem, 0) rotate(225deg);\n }\n\n }\n\n\t\t}\n\n .ui-slider-handle--correct,\n\t\t.ui-slider-handle--incorrect {\n width: 1.1rem;\n\t\t\theight: 1.1rem;\n top: -.4rem;\n margin-left: -.55rem;\n }\n\n .ui-slider-handle--incorrect {\n z-index: 1;\n\t\t\tborder: 2px solid $red;\n\t\t}\n\n .ui-slider-handle--correct {\n border: 2px solid $green;\n z-index: 99999;\n }\n\n\t\t.ui-slider-range {\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\tfont-size: .7rem;\n\t\t\tdisplay: block;\n\t\t\tborder: 0;\n\t\t\tbackground-position: 0 0;\n\t\t\ttop: 0;\n\t\t\theight: 100%;\n\t\t}\n\n .ui-slider-range-show-correct {\n background: $green;\n z-index: 9;\n }\n\n\t\t.ui-slider-range-min {\n\t\t\tleft: 0;\n\t\t\tbackground: $blue;\n\t\t}\n\n\t\t.ui-slider-range-max {\n\t\t\tright: 0;\n\t\t}\n\n\t\t/* support: IE8 - See #6727 */\n\t\t&.ui-state-disabled .ui-slider-handle,\n\t\t&.ui-state-disabled .ui-slider-range {\n\t\t\tfilter: inherit;\n\t\t}\n\t}\n\n\t.ui-slider-horizontal {\n\t\theight: .3rem;\n\t}\n\n\t.enp-question__answered {\n\t\t.enp-slider {\n\t\t\tbackground: #bbb;\n\t\t}\n\n\t\t.ui-slider-range-min {\n\t\t\tbackground: #fff;\n\t\t}\n\n\t}\n\n}\n"]}
\ No newline at end of file
diff --git a/public/quiz-create/css/sass/_dashboard.scss b/public/quiz-create/css/sass/_dashboard.scss
index 8ba28d95..553f9aa2 100644
--- a/public/quiz-create/css/sass/_dashboard.scss
+++ b/public/quiz-create/css/sass/_dashboard.scss
@@ -79,7 +79,6 @@
padding: .3rem;
border-radius: 3px;
width: 100%;
- background-color: #ececec;
@include breakpoint(large) {
min-width: 200px;
font-size: 0.85rem;
@@ -129,9 +128,6 @@
margin-bottom: 0.325rem;
border-bottom: 1px solid $dark-gray;
@include breakpoint(medium) {
- padding: 2.5em 0 1em 0;
- }
- @include breakpoint(large) {
padding: 1em 0;
}
}
@@ -498,7 +494,6 @@
left: 0;
right: 0;
bottom: 0;
- padding: 0.75rem 1.2rem 1.5rem 1.2rem;
}
.enp-dash-link__icon {
diff --git a/public/quiz-create/css/sass/_quiz-publish.scss b/public/quiz-create/css/sass/_quiz-publish.scss
index 5694d811..7c1e2370 100644
--- a/public/quiz-create/css/sass/_quiz-publish.scss
+++ b/public/quiz-create/css/sass/_quiz-publish.scss
@@ -76,36 +76,8 @@
line-height: 1.4;
word-wrap: break-word;
}
- #enp-open__btn {
- cursor: pointer;
- }
- #enp-modal__background {
- display: none;
- background-color: $transparent_gray;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 1;
- }
- #enp-modal {
- background-color: #fff;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- padding: 10px 20px;
- border-radius: 5px;
- display: flex;
- flex-direction: column;
- align-items: center;
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
- 0 10px 10px rgba(0, 0, 0, 0.22);
- animation-name: fadeIn;
- animation-duration: 0.4s;
- }
+ @include share_icons(enp-share-quiz);
.enp-share-quiz {
justify-content: space-around;
diff --git a/public/quiz-create/css/sass/_variables.scss b/public/quiz-create/css/sass/_variables.scss
index b24e60df..ecb3d2e9 100644
--- a/public/quiz-create/css/sass/_variables.scss
+++ b/public/quiz-create/css/sass/_variables.scss
@@ -32,12 +32,13 @@ $fade_red: #C1893E;
$link: #bf5700;
$link_hover: darken($link, 8);
// animation
-$fastInEaseOut: cubic-bezier(0, 0, 0.3, 1);
+$fastInEaseOut: cubic-bezier(0.000, 0, .3, 1);
+
$breakpoints: (
- "small": 400px,
- "medium": 700px,
- "large": 1000px,
+ "small" : 400px,
+ "medium" : 700px,
+ "large" : 1000px
);
// -----------------------------------------------------------------------------
@@ -58,30 +59,29 @@ $current-breakpoint: $default-breakpoint;
// 5. Then reset $current-breakpoint
// 6. If breakpoint name doesn't exist in map, warn the user
@mixin breakpoint($breakpoint) {
- $value: map-get($breakpoints, $breakpoint);
+ $value: map-get($breakpoints, $breakpoint);
- @if $value != null {
- // 1
- $current-breakpoint: $breakpoint !global; // 2
- @media (min-width: $value) {
- @content;
- } // 3
- $current-breakpoint: $default-breakpoint !global; // 5
- } @else {
- @warn "Invalid breakpoint `#{$breakpoint}`."; // 6
- }
+ @if $value != null { // 1
+ $current-breakpoint: $breakpoint !global; // 2
+ @media (min-width: $value) { @content; } // 3
+ $current-breakpoint: $default-breakpoint !global; // 5
+ }
+
+ @else {
+ @warn "Invalid breakpoint `#{$breakpoint}`."; // 6
+ }
}
// for only targeting a specific device
// NOTE: DOESN'T SUPPORT THE @include placeholders!!!
@mixin media($query) {
@if $query == max-small {
- $media_query: "max-width: #{map-get($breakpoints, " small ")}";
+ $media_query: "max-width: #{map-get($breakpoints, "small")}";
} @else if $query == only-medium {
$media_query: "min-width: #{map-get($breakpoints, "medium")}) and (max-width: #{(map-get($breakpoints, "large") - 1px)}";
} @else if $query == max-medium {
$media_query: "max-width: #{(map-get($breakpoints, "medium") - 1px)}";
- } @else if $query == max-large {
+ } @else if $query == max-large {
$media_query: "max-width: #{(map-get($breakpoints, "large") - 1px)}";
} @else {
// just use the number provided as a max width
@@ -93,4 +93,5 @@ $current-breakpoint: $default-breakpoint;
@content;
}
}
+
}
diff --git a/public/quiz-create/includes/class-enp_quiz-quiz_create.php b/public/quiz-create/includes/class-enp_quiz-quiz_create.php
index 5616832c..a8845a44 100644
--- a/public/quiz-create/includes/class-enp_quiz-quiz_create.php
+++ b/public/quiz-create/includes/class-enp_quiz-quiz_create.php
@@ -36,7 +36,7 @@ public function __construct() {
// TODO: Offer to duplicate the quiz in error message?
$this->quiz_published_redirect($this->quiz);
- //add_action('init', array($this, 'register_my_session', 1));
+ add_action('init', array($this, 'register_my_session', 1));
// Other page classes will not need to do this
add_filter( 'the_content', array($this, 'load_content' ));
// load take quiz styles
diff --git a/public/quiz-create/index.php b/public/quiz-create/index.php
old mode 100755
new mode 100644
diff --git a/public/quiz-create/js/dist/iris.min.js b/public/quiz-create/js/dist/iris.min.js
old mode 100755
new mode 100644
diff --git a/public/quiz-create/js/dist/quiz-create.js b/public/quiz-create/js/dist/quiz-create.js
index 5268c313..24535200 100644
--- a/public/quiz-create/js/dist/quiz-create.js
+++ b/public/quiz-create/js/dist/quiz-create.js
@@ -223,13 +223,14 @@ _.middleNumber = function(a, b) {
// // // // // // // // //
// Tinymce init for "add question" button
+// CodePen of editor: https://codepen.io/luukee/pen/VwEmdBB
// // // // // // // // //
var currentSelector;
function addTinymce( obj ) {
var currentSelector = $('#enp-question-explanation__'+obj+'');
tinymce.init({
- selector: '#enp-question-explanation__'+obj+'', // change this value according to your HTML
+ selector: '#enp-question-explanation__'+obj+'',
menubar: false,
statusbar: false,
plugins: 'quickbars link autoresize',
@@ -1293,6 +1294,9 @@ function saveQuiz(userAction) {
.fail( function( jqXHR, textStatus, errorThrown ) {
console.log( 'AJAX failed', jqXHR.getAllResponseHeaders(), textStatus, errorThrown );
+ // Access the raw JSON data
+ var rawJSONData = jqXHR.responseText;
+ console.log('Raw JSON Data:', rawJSONData);
} )
.then( function( errorThrown, textStatus, jqXHR ) {
diff --git a/public/quiz-create/js/dist/quiz-create.min.js b/public/quiz-create/js/dist/quiz-create.min.js
index f3399049..d8b6bdc6 100644
--- a/public/quiz-create/js/dist/quiz-create.min.js
+++ b/public/quiz-create/js/dist/quiz-create.min.js
@@ -1 +1 @@
-jQuery(document).ready(function(u){function p(e){return u("#enp-question--"+e+"__accordion-container")}function d(n){return u(".enp-question-content").each(function(e){if(parseInt(u(".enp-question-id",this).val())===parseInt(n))return questionIndex=e,!1}),questionIndex}function o(e){return parseInt(u(".enp-question-id",e).val())}function c(e,n){for(var i in n)if(parseInt(n[i].question_id)===parseInt(e))for(var t in n[i].mc_option)if("insert"===n[i].mc_option[t].action)return n[i].mc_option[t];return!1}function m(e,n){for(var i in n)if(parseInt(n[i].question_id)===parseInt(e))return n[i];return!1}function s(e){return''}function n(e){var n=u(".enp-question-title__textarea",e).val(),n={title:i(n),content:e,baseID:e.attr("id"),container:!0};n=enp_accordion__create_headers(n),enp_accordion__setup(n)}function i(e){return void 0===e||""===e?e="Question":200'+e+"
"),u(".enp-message-"+i).delay(3500).fadeOut(function(){u(".enp-message-"+i).fadeOut()})}function C(){u(".enp-question-content").each(function(e){var n,i,t;n=o(u(this)),e=e,i=u("#enp-question--"+n),i=u(".enp-question-order",i),t=i.val(),parseInt(t)!==e&&(console.log("updating "+n+" from "+t+" to "+e),t=new RegExp("enp_question\\["+t+"\\]"),r(document.getElementById("enp-question--"+n),t,"enp_question["+e+"]"),i.val(e))})}function V(e){u(".enp-mc-option--inputs",e).each(function(e){var n,i,t;n=u(this),e=e,i=u(".enp-mc-option-order",n),t=i.val(),parseInt(t)!==e&&(t=new RegExp("\\]\\[mc_option\\]\\["+t+"\\]\\["),r(document.getElementById(n.attr("id")),t,"][mc_option]["+e+"]["),i.val(e))})}function M(){var e;templateParams={question_id:"newQuestionTemplateID",question_position:"newQuestionPosition"},u(".enp-quiz-create__questions").append(l(templateParams)),newQuestion=u("#enp-question--newQuestionTemplateID"),questionImageUpload=v(templateParams),u(".enp-question-image__input",newQuestion).after(questionImageUpload),u(".enp-image-upload__label, .enp-button__question-image-upload, .enp-question-image-upload__input",newQuestion).hide(),u(".enp-question-image__input",newQuestion).after(h()),x("newQuestionTemplateID"),temp_slider=I({question_id:e="newQuestionTemplateID",question_position:"newQuestionPosition",slider_id:"newSliderID",slider_range_low:"0",slider_range_high:"10",slider_correct_low:"5",slider_correct_high:"5",slider_increment:"1",slider_prefix:"",slider_suffix:""}),u(temp_slider).appendTo("#enp-question--"+e+" .enp-question"),n(u("#enp-question--newQuestionTemplateID")),u("#enp-question--newQuestionTemplateID__accordion-header").focus()}function H(e,n,i){r(document.getElementById("enp-question--newQuestionTemplateID__accordion-container"),/newQuestionTemplateID/,e),r(document.getElementById("enp-question--"+e),/newQuestionPosition/,d(e)),z(n,e),n=i,i=e,r(new_slider_el=document.querySelector("#enp-question--"+i+" .enp-slider-options"),/newQuestionPosition/,d(i)),r(new_slider_el,/newSliderID/,n),F("#enp-question--"+i+" .enp-slider-options")}function L(e){var n=u("#enp-mc-option--"+e).closest(".enp-question-content");u("#enp-mc-option--"+e).remove(),V(n)}function x(e){temp_mc_option=f({question_id:e,question_position:"newQuestionPosition",mc_option_id:"newMCOptionID",mc_option_position:"newMCOptionPosition"}),u("#enp-question--"+e+" .enp-mc-option--add").before(temp_mc_option),u("#enp-question--"+e+" .enp-mc-option--inputs:last .enp-mc-option__input").focus()}function z(e,n){r(new_mcOption_el=document.querySelector("#enp-question--"+n+" #enp-mc-option--newMCOptionID"),/newQuestionPosition/,d(n)),new_mc_option_index=u("#enp-question--"+n+" .enp-mc-option--inputs").length-1,r(new_mcOption_el,/newMCOptionPosition/,new_mc_option_index),r(new_mcOption_el,/newMCOptionID/,e)}function y(e,n){low=e.slider("option","min"),high=e.slider("option","max"),interval=e.slider("option","step"),sliderValue=A(low,high,interval),e.slider("value",sliderValue),n.val(sliderValue)}function A(e,n,i){return e=parseFloat(e),n=parseFloat(n),i=parseFloat(i),totalIntervals=(n-e)/i,middleInterval=totalIntervals/2*i+e,remainder=middleInterval%i,middleInterval-=remainder}function k(e,n){return e.closest(".enp-slider-options").find(n)}function R(e){var n=P(e),i=u(".enp-slider-correct-low__input",n);Q(e),u(".enp-slider-correct-answer-range",n).removeClass("enp-slider-correct-answer-range--remove-range").addClass("enp-slider-correct-answer-range--add-range").html(' Answer Range'),lowCorrectVal=i.val(),u(".enp-slider-correct-high__input",n).val(lowCorrectVal),i.data("correctRangeInUse",!1)}function Q(e){e=P(e);u(".enp-slider-correct__helper",e).addClass("enp-slider-correct__helper--hidden").text(""),u(".enp-slider-correct-high__input-container",e).addClass("enp-slider-correct-high__input-container--hidden"),u(".enp-slider-correct-low__label",e).text("Slider Answer")}function O(e){var e=P(e),n=u(".enp-slider-correct-low__input",e),i=u(".enp-slider-correct-high__input",e);u(".enp-slider-correct-low__label",e).text("Slider Answer Low"),u(".enp-slider-correct__helper",e).removeClass("enp-slider-correct__helper--hidden").text("to"),u(".enp-slider-correct-high__input-container",e).removeClass("enp-slider-correct-high__input-container--hidden"),u(".enp-slider-correct-answer-range",e).removeClass("enp-slider-correct-answer-range--add-range").addClass("enp-slider-correct-answer-range--remove-range").html(''),highCorrectVal=parseFloat(i.val()),lowCorrectVal=parseFloat(n.val()),increment=parseFloat(u(".enp-slider-increment__input",e).val()),highCorrectVal<=lowCorrectVal&&i.val(lowCorrectVal+increment),i.focus(),n.data("correctRangeInUse",!0)}function P(e){var n;return u(".enp-slider-options").each(function(){if(u(this).data("sliderID")===e)return n=u(this),!1}),n}function F(e){var n,i,t,o,s;sliderID=u(".enp-slider-id",e).val(),u(e).data("sliderID",sliderID),i=u(".enp-slider-id",n=e).val(),t=parseFloat(u(".enp-slider-range-low__input",n).val()),o=parseFloat(u(".enp-slider-range-high__input",n).val()),s=parseFloat(u(".enp-slider-increment__input",n).val()),t={slider_id:i,slider_range_low:t,slider_range_high:o,slider_start:A(t,o,s),slider_increment:s,slider_prefix:u(".enp-slider-prefix__input",n).val(),slider_suffix:u(".enp-slider-suffix__input",n).val(),slider_input_size:u(".enp-slider-range-high__input",n).val().length},slider=w(t),sliderExample=u('').html(slider),u(sliderExample).prependTo(n),u(".enp-slider__label",n).after(''),u(".enp-slider__label",n).remove(),N(u(".enp-slider-input__input",n),t),lowCorrectInput=u(".enp-slider-correct-low__input",e),highCorrectInput=u(".enp-slider-correct-high__input",e),lowCorrectInput.data("highCorrectInput",highCorrectInput),highCorrectInput.data("lowCorrectInput",lowCorrectInput),correctLow=parseFloat(lowCorrectInput.val()),correctHigh=parseFloat(highCorrectInput.val()),lowCorrectInput.is("[readonly]")?correctLow===correctHigh&&Q(sliderID):(u(".enp-slider-correct-high__container",e).append(''),(correctLow===correctHigh?R:O)(sliderID)),u("input, button",e).each(function(){u(this).data("sliderID",sliderID)}),accordion={title:"Advanced Slider Options",content:u(".enp-slider-advanced-options__content",e),baseID:sliderID},accordion=enp_accordion__create_headers(accordion),enp_accordion__setup(accordion)}function j(e,n,i){if(void 0===i.responseJSON)return E(),D("Something went wrong. Please reload the page and try again.","error"),!1;e=u.parseJSON(i.responseJSON),userActionAction=e.user_action.action,userActionElement=e.user_action.element,"success"===e.status&&"insert"===e.action&&(i=e,u("#enp-quiz-id").val(i.quiz_id),t=u("body").innerHTML,r="Quiz: "+(r=u(".enp-quiz-title__textarea").val()),o=quizCreate.quiz_create_url+i.quiz_id,g(i),window.history.pushState({html:t,pageTitle:r},"",o),u(".enp-quiz-form__save").show().addClass("enp-quiz-form__save--reveal"),u(".enp-btn--next-step").show().addClass("enp-btn--next-step--reveal"),u(".enp-quiz-breadcrumbs__link--preview").removeClass("enp-quiz-breadcrumbs__link--disabled")),"add"==userActionAction&&"question"==userActionElement?!1!==(i=function(e){for(var n in e)if("insert"===e[n].action)return e[n];return!1}(e.question))&&void 0!==i.question_id&&0')):temp_unsetAddQuestionImage(questionID)):"delete"==userActionAction&&"question_image"==userActionElement&&(questionID=e.user_action.details.question_id,!1!==(questionResponse=m(questionID,e.question))&&"update"===questionResponse.action&&"success"===questionResponse.status?(i=questionResponse,questionID=i.question_id,i=u("#enp-question--"+questionID),u(".enp-question-image__container",i).remove(),u(".enp-question-image__input",i).val(""),templateParams={question_id:questionID,question_position:d(questionID)},u(".enp-question-image__input",i).after(v(templateParams)),u(".enp-image-upload__label, .enp-button__question-image-upload, .enp-question-image-upload__input",i).hide(),u(".enp-question-image__input",i).after(h()),u(".enp-question-image-upload",i).focus()):(i=questionID,u("#enp-question--"+i+" .enp-question-image__container").removeClass("enp-question__image--remove"),oldImageFilename=u("#enp-question-image-"+i).data("image_filename"),u("#enp-question-image-"+i).val(oldImageFilename),D("Image could not be deleted. Please reload the page and try again.","error")));var t,o,s,r,a=e.message;void 0!==a.success&&0')).data("sliderID",e.slider_id),u(i).data("sliderID",e.slider_id),u(slider).slider({range:"min",value:parseFloat(e.slider_start),min:parseFloat(e.slider_range_low),max:parseFloat(e.slider_range_high),step:parseFloat(e.slider_increment),slide:function(e,n){u(i).val(n.value)}}),(sliderInputContainer=u(i).parent()).after(slider),sliderTakeRangeHelpers=b({slider_range_low:parseFloat(e.slider_range_low),slider_range_high:parseFloat(e.slider_range_high)}),sliderInputContainer.append(sliderTakeRangeHelpers)}function T(e,n){var i;return u(".enp-slider").each(function(){if(u(this).data("sliderID")===e)return i=u(this),"function"==typeof n&&n(u(this)),!1}),i}!0===new RegExp("quiz-create/new").test(S)&&u(".enp-quiz-form__save, .enp-btn--next-step").hide(),0!==u(".enp-message__item--error").length&&(e=/Question \d+/,u(".enp-message__item--error").each(function(){errorMessage=u(this).text(),null!==(found=errorMessage.match(e))&&(questionNumber=found[0].replace(/Question /,""),questionNumber-=1,(questionHeader=u(".enp-question-content:eq("+questionNumber+")").prev(".enp-accordion-header")).hasClass("question-has-error")||questionHeader.addClass("question-has-error"))})),u(document).on("focusin",function(e){u(e.target).closest(".tox-tinymce, .tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length&&e.stopImmediatePropagation()}),$theQuestions=u(".enp-accordion-container"),u.each($theQuestions,function(e){t(obj=o(this))}),u(document).on("keyup",".enp-question-title__textarea",function(){question_title=i(u(this).val()),u(this).closest(".enp-question-content").prev(".enp-accordion-header").find(".enp-accordion-header__title").text(question_title)}),u(document).on("click",".enp-quiz-breadcrumbs__link--preview, .enp-quiz-breadcrumbs__link--publish",function(e){e.preventDefault(),u(".enp-btn--next-step").trigger("click")}),u("#enp-quiz").append(''),u(".enp-question__move").remove(),u(".enp-quiz-create__questions").sortable({handle:".enp-accordion-header",placeholder:"enp-sort__placeholder",cancel:""}),u(".enp-quiz-create__questions").on("sortstart",function(e,n){u("body").addClass("ui-sortable--sorting"),u(this).sortable("refreshPositions"),u(n.placeholder).css("height",u(n.item).height())}),u(".enp-quiz-create__questions").on("sortstop",function(e,n){u("body").removeClass("ui-sortable--sorting")}),u(".enp-quiz-create__questions").on("sortupdate",function(e,o){setTimeout(function(){var e=u(o.item).offset().top,n=e+u(o.item).outerHeight(),i=u(window).scrollTop(),t=i+u(window).height();i'+s("enp-quiz-message--saving__spinner")+'Saving
'),u(".enp-quiz-submit").addClass("enp-quiz-submit--wait");var n,e=u(this).val();e=e,o=document.getElementById("enp-quiz-create-form"),(o=new FormData(o)).append("enp-quiz-submit",e),o.append("action","save_quiz");if(-1'}function n(e){var n;n={title:i(c(".enp-question-title__textarea",e).val()),content:e,baseID:e.attr("id"),container:!0},n=enp_accordion__create_headers(n),enp_accordion__setup(n)}function i(e){return void 0===e||""===e?e="Question":200'+e+"
"),c(".enp-message-"+i).delay(3500).fadeOut(function(){c(".enp-message-"+i).fadeOut()})}function x(){c(".enp-question-content").each(function(e){!function(e,n){var i=c("#enp-question--"+e),t=c(".enp-question-order",i),o=t.val();if(parseInt(o)!==n){console.log("updating "+e+" from "+o+" to "+n);var s=new RegExp("enp_question\\["+o+"\\]");r(document.getElementById("enp-question--"+e),s,"enp_question["+n+"]"),t.val(n)}}(t(c(this)),e)})}function z(e){c(".enp-mc-option--inputs",e).each(function(e){!function(e,n){var i=c(".enp-mc-option-order",e),t=i.val();if(parseInt(t)!==n){var o=new RegExp("\\]\\[mc_option\\]\\["+t+"\\]\\[");r(document.getElementById(e.attr("id")),o,"][mc_option]["+n+"]["),i.val(n)}}(c(this),e)})}function y(){var e;templateParams={question_id:"newQuestionTemplateID",question_position:"newQuestionPosition"},c(".enp-quiz-create__questions").append(s(templateParams)),newQuestion=c("#enp-question--newQuestionTemplateID"),questionImageUpload=w(templateParams),c(".enp-question-image__input",newQuestion).after(questionImageUpload),c(".enp-image-upload__label, .enp-button__question-image-upload, .enp-question-image-upload__input",newQuestion).hide(),c(".enp-question-image__input",newQuestion).after(I()),P("newQuestionTemplateID"),e="newQuestionTemplateID",temp_slider=l({question_id:e,question_position:"newQuestionPosition",slider_id:"newSliderID",slider_range_low:"0",slider_range_high:"10",slider_correct_low:"5",slider_correct_high:"5",slider_increment:"1",slider_prefix:"",slider_suffix:""}),c(temp_slider).appendTo("#enp-question--"+e+" .enp-question"),n(c("#enp-question--newQuestionTemplateID")),c("#enp-question--newQuestionTemplateID__accordion-header").focus()}function A(e,n,i){var t,o;r(document.getElementById("enp-question--newQuestionTemplateID__accordion-container"),/newQuestionTemplateID/,e),r(document.getElementById("enp-question--"+e),/newQuestionPosition/,d(e)),O(n,e),t=i,o=e,new_slider_el=document.querySelector("#enp-question--"+o+" .enp-slider-options"),r(new_slider_el,/newQuestionPosition/,d(o)),r(new_slider_el,/newSliderID/,t),H("#enp-question--"+o+" .enp-slider-options")}function R(e){var n;n=c("#enp-mc-option--"+e).closest(".enp-question-content"),c("#enp-mc-option--"+e).remove(),z(n)}function P(e){temp_mc_option=u({question_id:e,question_position:"newQuestionPosition",mc_option_id:"newMCOptionID",mc_option_position:"newMCOptionPosition"}),c("#enp-question--"+e+" .enp-mc-option--add").before(temp_mc_option),c("#enp-question--"+e+" .enp-mc-option--inputs:last .enp-mc-option__input").focus()}function O(e,n){new_mcOption_el=document.querySelector("#enp-question--"+n+" #enp-mc-option--newMCOptionID"),r(new_mcOption_el,/newQuestionPosition/,d(n)),new_mc_option_index=c("#enp-question--"+n+" .enp-mc-option--inputs").length-1,r(new_mcOption_el,/newMCOptionPosition/,new_mc_option_index),r(new_mcOption_el,/newMCOptionID/,e)}function k(e,n){low=e.slider("option","min"),high=e.slider("option","max"),interval=e.slider("option","step"),sliderValue=Q(low,high,interval),e.slider("value",sliderValue),n.val(sliderValue)}function Q(e,n,i){return e=parseFloat(e),n=parseFloat(n),i=parseFloat(i),totalIntervals=(n-e)/i,middleInterval=totalIntervals/2*i+e,remainder=middleInterval%i,middleInterval-=remainder,middleInterval}function F(e,n){return e.closest(".enp-slider-options").find(n)}function E(e){var n,i;n=V(e),i=c(".enp-slider-correct-low__input",n),T(e),c(".enp-slider-correct-answer-range",n).removeClass("enp-slider-correct-answer-range--remove-range").addClass("enp-slider-correct-answer-range--add-range").html(' Answer Range'),lowCorrectVal=i.val(),c(".enp-slider-correct-high__input",n).val(lowCorrectVal),i.data("correctRangeInUse",!1)}function T(e){var n;n=V(e),c(".enp-slider-correct__helper",n).addClass("enp-slider-correct__helper--hidden").text(""),c(".enp-slider-correct-high__input-container",n).addClass("enp-slider-correct-high__input-container--hidden"),c(".enp-slider-correct-low__label",n).text("Slider Answer")}function S(e){var n,i,t;n=V(e),i=c(".enp-slider-correct-low__input",n),t=c(".enp-slider-correct-high__input",n),c(".enp-slider-correct-low__label",n).text("Slider Answer Low"),c(".enp-slider-correct__helper",n).removeClass("enp-slider-correct__helper--hidden").text("to"),c(".enp-slider-correct-high__input-container",n).removeClass("enp-slider-correct-high__input-container--hidden"),c(".enp-slider-correct-answer-range",n).removeClass("enp-slider-correct-answer-range--add-range").addClass("enp-slider-correct-answer-range--remove-range").html(''),highCorrectVal=parseFloat(t.val()),lowCorrectVal=parseFloat(i.val()),increment=parseFloat(c(".enp-slider-increment__input",n).val()),highCorrectVal<=lowCorrectVal&&t.val(lowCorrectVal+increment),t.focus(),i.data("correctRangeInUse",!0)}function V(e){var n;return c(".enp-slider-options").each(function(){if(c(this).data("sliderID")===e)return n=c(this),!1}),n}function H(e){var n,i,t,o,s,r;sliderID=c(".enp-slider-id",e).val(),c(e).data("sliderID",sliderID),t=c(".enp-slider-id",n=e).val(),o=parseFloat(c(".enp-slider-range-low__input",n).val()),s=parseFloat(c(".enp-slider-range-high__input",n).val()),r=parseFloat(c(".enp-slider-increment__input",n).val()),i={slider_id:t,slider_range_low:o,slider_range_high:s,slider_start:Q(o,s,r),slider_increment:r,slider_prefix:c(".enp-slider-prefix__input",n).val(),slider_suffix:c(".enp-slider-suffix__input",n).val(),slider_input_size:c(".enp-slider-range-high__input",n).val().length},slider=p(i),sliderExample=c('').html(slider),c(sliderExample).prependTo(n),c(".enp-slider__label",n).after(''),c(".enp-slider__label",n).remove(),L(c(".enp-slider-input__input",n),i),lowCorrectInput=c(".enp-slider-correct-low__input",e),highCorrectInput=c(".enp-slider-correct-high__input",e),lowCorrectInput.data("highCorrectInput",highCorrectInput),highCorrectInput.data("lowCorrectInput",lowCorrectInput),correctLow=parseFloat(lowCorrectInput.val()),correctHigh=parseFloat(highCorrectInput.val()),lowCorrectInput.is("[readonly]")?correctLow===correctHigh&&T(sliderID):(c(".enp-slider-correct-high__container",e).append(''),correctLow===correctHigh?E(sliderID):S(sliderID)),c("input, button",e).each(function(){c(this).data("sliderID",sliderID)}),accordion={title:"Advanced Slider Options",content:c(".enp-slider-advanced-options__content",e),baseID:sliderID},accordion=enp_accordion__create_headers(accordion),enp_accordion__setup(accordion)}function M(e,n,i){if(void 0===i.responseJSON)return j(),C("Something went wrong. Please reload the page and try again.","error"),!1;if(e=c.parseJSON(i.responseJSON),userActionAction=e.user_action.action,userActionElement=e.user_action.element,"success"===e.status&&"insert"===e.action&&(!function(e){c("#enp-quiz-id").val(e.quiz_id);var n=c("body").innerHTML,i=c(".enp-quiz-title__textarea").val();i="Quiz: "+i;var t=quizCreate.quiz_create_url+e.quiz_id;v(e),window.history.pushState({html:n,pageTitle:i},"",t)}(e),c(".enp-quiz-form__save").show().addClass("enp-quiz-form__save--reveal"),c(".enp-btn--next-step").show().addClass("enp-btn--next-step--reveal"),c(".enp-quiz-breadcrumbs__link--preview").removeClass("enp-quiz-breadcrumbs__link--disabled")),"add"==userActionAction&&"question"==userActionElement){var t=function(e){for(var n in e)if("insert"===e[n].action)return e[n];return!1}(e.question);!1!==t&&void 0!==t.question_id&&0')):temp_unsetAddQuestionImage(questionID)):"delete"==userActionAction&&"question_image"==userActionElement&&(questionID=e.user_action.details.question_id,questionResponse=g(questionID,e.question),!1!==questionResponse&&"update"===questionResponse.action&&"success"===questionResponse.status?(a=questionResponse,questionID=a.question_id,a=c("#enp-question--"+questionID),c(".enp-question-image__container",a).remove(),c(".enp-question-image__input",a).val(""),templateParams={question_id:questionID,question_position:d(questionID)},c(".enp-question-image__input",a).after(w(templateParams)),c(".enp-image-upload__label, .enp-button__question-image-upload, .enp-question-image-upload__input",a).hide(),c(".enp-question-image__input",a).after(I()),c(".enp-question-image-upload",a).focus()):(r=questionID,c("#enp-question--"+r+" .enp-question-image__container").removeClass("enp-question__image--remove"),oldImageFilename=c("#enp-question-image-"+r).data("image_filename"),c("#enp-question-image-"+r).val(oldImageFilename),C("Image could not be deleted. Please reload the page and try again.","error")));var r,a,u,l,p;!function(e){void 0!==e.success&&0'),slider.data("sliderID",e.slider_id),c(i).data("sliderID",e.slider_id),c(slider).slider({range:"min",value:parseFloat(e.slider_start),min:parseFloat(e.slider_range_low),max:parseFloat(e.slider_range_high),step:parseFloat(e.slider_increment),slide:function(e,n){c(i).val(n.value)}}),sliderInputContainer=c(i).parent(),sliderInputContainer.after(slider),sliderTakeRangeHelpers=b({slider_range_low:parseFloat(e.slider_range_low),slider_range_high:parseFloat(e.slider_range_high)}),sliderInputContainer.append(sliderTakeRangeHelpers)}function N(e,n){var i;return c(".enp-slider").each(function(){if(c(this).data("sliderID")===e)return i=c(this),"function"==typeof n&&n(c(this)),!1}),i}c(document).on("focusin",function(e){c(e.target).closest(".tox-tinymce, .tox-tinymce-aux, .moxman-window, .tam-assetmanager-root").length&&e.stopImmediatePropagation()}),$theQuestions=c(".enp-accordion-container"),c.each($theQuestions,function(e){obj=t(this),o(obj)}),c(document).on("keyup",".enp-question-title__textarea",function(){question_title=i(c(this).val()),c(this).closest(".enp-question-content").prev(".enp-accordion-header").find(".enp-accordion-header__title").text(question_title)}),c(document).on("click",".enp-quiz-breadcrumbs__link--preview, .enp-quiz-breadcrumbs__link--publish",function(e){e.preventDefault(),c(".enp-btn--next-step").trigger("click")}),c("#enp-quiz").append(''),c(".enp-question__move").remove(),c(".enp-quiz-create__questions").sortable({handle:".enp-accordion-header",placeholder:"enp-sort__placeholder",cancel:""}),c(".enp-quiz-create__questions").on("sortstart",function(e,n){c("body").addClass("ui-sortable--sorting"),c(this).sortable("refreshPositions"),c(n.placeholder).css("height",c(n.item).height())}),c(".enp-quiz-create__questions").on("sortstop",function(e,n){c("body").removeClass("ui-sortable--sorting")}),c(".enp-quiz-create__questions").on("sortupdate",function(e,o){setTimeout(function(){var e=c(o.item).offset().top,n=e+c(o.item).outerHeight(),i=c(window).scrollTop(),t=i+c(window).height();i'+h("enp-quiz-message--saving__spinner")+'Saving
'),c(".enp-quiz-submit").addClass("enp-quiz-submit--wait");var n=c(this).val();i=n,t=document.getElementById("enp-quiz-create-form"),(o=new FormData(t)).append("enp-quiz-submit",i),o.append("action","save_quiz"),-1<(s=i).indexOf("add-question")?y():-1
-
- ' . $paginate->total . ' results found for "'.$_GET['search'].'". Clear Search
';
- endif;
- ?>
-
-
-
-
-
-
-
- get_published_quizzes());
- if($published_quizzes > 1) : ?>
-
- get_ab_tests();
- if(!empty($ab_tests)) {
- foreach($ab_tests as $ab_test) {
- $ab_test = new Enp_quiz_AB_test($ab_test);
- include(ENP_QUIZ_CREATE_TEMPLATES_PATH.'partials/dashboard-ab-item.php');
- }
- } ?>
-
-
-
-
- get_pagination_links();?>
-
-
+
+ ' . $paginate->total . ' results found for "'.$_GET['search'].'". Clear Search';
+ endif;
+ ?>
+
+
+
+
+
+
+
+ get_published_quizzes());
+ if($published_quizzes > 1) : ?>
+
+ get_ab_tests();
+ if(!empty($ab_tests)) {
+ foreach($ab_tests as $ab_test) {
+ $ab_test = new Enp_quiz_AB_test($ab_test);
+ include(ENP_QUIZ_CREATE_TEMPLATES_PATH.'partials/dashboard-ab-item.php');
+ }
+ } ?>
+
+
+
+
+ get_pagination_links();?>
+
+
\ No newline at end of file
diff --git a/public/quiz-create/templates/partials/quiz-create-question.php b/public/quiz-create/templates/partials/quiz-create-question.php
index 445428ee..87b6c632 100644
--- a/public/quiz-create/templates/partials/quiz-create-question.php
+++ b/public/quiz-create/templates/partials/quiz-create-question.php
@@ -56,6 +56,7 @@