diff --git a/application/core/Survey_Common_Action.php b/application/core/Survey_Common_Action.php index 459b556b460..6dd5505e1e3 100644 --- a/application/core/Survey_Common_Action.php +++ b/application/core/Survey_Common_Action.php @@ -753,6 +753,10 @@ function _fullpagebar(array $aData) $sAlternativeUrl = '/admin/index'; $aData['fullpagebar']['closebutton']['url'] = Yii::app()->request->getUrlReferrer(Yii::app()->createUrl($sAlternativeUrl)); } + App()->getClientScript()->registerScriptFile( + App()->getConfig('adminscripts') . 'topbar.js', + CClientScript::POS_END + ); $this->getController()->renderPartial("/admin/super/fullpagebar_view", $aData); } } diff --git a/application/helpers/LayoutHelper.php b/application/helpers/LayoutHelper.php index 83c2df08b58..fbbbc8b80b2 100644 --- a/application/helpers/LayoutHelper.php +++ b/application/helpers/LayoutHelper.php @@ -205,6 +205,10 @@ public function fullpagebar(array $aData) $sAlternativeUrl = '/admin/index'; $aData['fullpagebar']['closebutton']['url'] = Yii::app()->request->getUrlReferrer(Yii::app()->createUrl($sAlternativeUrl)); } + App()->getClientScript()->registerScriptFile( + App()->getConfig('adminscripts') . 'topbar.js', + CClientScript::POS_END + ); Yii::app()->getController()->renderPartial("/layouts/fullpagebar_view", $aData); } } @@ -445,6 +449,11 @@ protected function beforeSideMenuRender(array $aData) */ public static function renderTopbar(array $aData) { + App()->getClientScript()->registerScriptFile( + App()->getConfig('adminscripts') . 'topbar.js', + CClientScript::POS_END + ); + $oTopbarConfig = TopbarConfiguration::createFromViewData($aData); return Yii::app()->getController()->widget( diff --git a/assets/packages/adminbasics/build/adminbasics.css b/assets/packages/adminbasics/build/adminbasics.css index 85db62a821d..fe63b3c3613 100644 --- a/assets/packages/adminbasics/build/adminbasics.css +++ b/assets/packages/adminbasics/build/adminbasics.css @@ -120,6 +120,296 @@ min-height: 100px; } +.draggable-container { + min-height: 300px; +} + +#newcreated, +#tokenattribute, +#csvattribute, +#centralattribute { + margin-left: 0.75%; + margin-right: 0.75%; + margin-bottom: 20px; +} + +#tokenattribute { + margin-left: 1.5%; +} + +#centralattribute { + margin-right: 1.5%; +} + +#centralattribute .centralatt { + padding-bottom: 15px; +} + +#newcreated .attribute-item input { + display: block; + margin: 2px auto; + width: 80%; +} + +#centralattribute div.centralatt div.token-attribute { + margin-top: -5px; + min-height: 20px; +} + +#newcreated, +#tokenattribute { + height: 100%; +} + +.heading { + height: auto; + padding-top: 7px; + font-weight: bold; +} + +div.mappable-attribute-wrapper { + width: 80%; + margin: 6px auto; + padding: 6px; +} + +div.attribute-item, .already-mapped-attribute { + width: 80%; + margin: 6px auto; + padding: 4px; + text-align: center; +} + +#centralattribute .explanation { + width: 90%; + margin: 0 auto; + text-align: left; +} + +#centralattribute .explanation-row { + display: table-row; +} + +#centralattribute .explanation input, +#centralattribute .explanation label { + display: table-cell; + padding-top: 4px; + padding-bottom: 4px; +} + +#centralattribute .explanation label { + padding-left: 8px; +} + +.attribute-item.draggable { + cursor: move; +} + +div.mappable-attribute-wrapper.target-hover { + padding-bottom: 27px; +} + +div.mappable-attribute-wrapper.paired.target-hover { + padding-bottom: 4px; +} + +div.mappable-attribute-wrapper.paired.ui-state-disabled { + opacity: 1; + filter: alpha(opacity=100); +} + +.draggable-container .attribute-column .ui-draggable-dragging { + z-index: 100; +} + +/* Existing attribute column in CSV CPDB import */ +.centralatt { + min-height: 100px; +} + +#responses-column-filter-modal .checkbox label { + vertical-align: text-bottom; + white-space: nowrap; + overflow-x: hidden; +} + +.responses-multiselect-checkboxes { + overflow-y: scroll; + height: 60vh; +} + +.responses-column-filter-modal-checkbox-buttons { + text-align: left; + padding-bottom: 15px; +} + +.grid-view .table td.button-column, .grid-view .table th.button-column { + white-space: nowrap; + text-align: initial; +} + +.grid-view .table th > .sort-link .caret { + right: -10px; +} + +.dropdown-menu.larger-dropdown { + min-width: 240px; +} + +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0 6px 6px 6px; + -moz-border-radius: 0 6px 6px 6px; + border-radius: 0 6px 6px 6px; +} + +.dropdown-submenu:hover > a:after { + border-left-color: #555; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + +#vue-apps-main-container { + min-height: 75vh; +} + +.fa-stack.halfed { + height: 1em; + width: 1em; + line-height: 1em; +} + +.fa-stack-1x.halfed { + font-size: 0.5em; +} + +.fa-1x.halfed { + font-size: 0.5em; +} + +.contain-pulse { + display: flex; + flex-flow: row wrap; + justify-content: center; + align-content: bottom; + height: 3em; +} + +.square { + background: #0f3e12; + border-radius: 0.6em; + box-sizing: border-box; + height: 2em; + margin: 0.2em; + overflow: hidden; + padding: 0.5em; + width: 2em; +} + +.animate-pulse .square:nth-of-type(1) { + animation: pulse ease-in-out 1.8s infinite 0.2s; +} + +.animate-pulse .square:nth-of-type(2) { + animation: pulse ease-in-out 1.8s infinite 0.6s; +} + +.animate-pulse .square:nth-of-type(3) { + animation: pulse ease-in-out 1.8s infinite 1.0s; +} + +.animate-pulse .square:nth-of-type(4) { + animation: pulse ease-in-out 1.8s infinite 1.4s; +} + +.simpleWrapper { + padding: 0; + margin: 0; + border: none; + display: inline-block; +} + +#selectable .ui-selecting { + background: #8CCE00; +} + +#selectable .ui-selected { + background: #C1DD7F; + color: #000000; +} + +#selectable { + list-style-type: none; + margin: 2px; + padding: 0; + width: 90%; +} + +#selectable li { + padding: 1em; + font-size: 1em; + height: 9px; + text-align: center; + margin: 4px; +} + +.ui-icon.exporticon { + background-image: url("images/export.gif"); +} + +#feedback { + font-size: 1.4em; +} + +#selectableadd .ui-selecting { + background: #0066CC; +} + +#selectableadd .ui-selected { + background: #0066CC; + color: white; +} + +#selectableadd { + list-style-type: none; + margin: 0; + padding: 0; + width: 90%; + text-align: center; +} + +#selectableadd li { + margin: 3px; + padding: 0.4em; + font-size: 1 em; + height: 18px; + text-align: center; +} + +.popupgroup { + border: 1px solid #DAE5F4; + padding: 10px; + border-radius: 3px; + margin: 8px; +} + /** * Lime Admin Common CSS File * @@ -433,6 +723,10 @@ html { z-index: 1000; } +#fullpagebar { + z-index: 100; +} + .tab-content { padding-top: 2em; } @@ -4102,487 +4396,205 @@ input[type="file"].form-control { } .custom.custom-margin-responsive.small.right-10 { - margin-right: 10px; -} - -.custom.custom-margin-responsive.small.top-10 { - margin-top: 10px; -} - -.custom.custom-margin-responsive.small.bottom-10 { - margin-bottom: 10px; -} - -.custom.custom-margin-responsive.small.add15 { - margin: 15px; -} - -.custom.custom-margin-responsive.small.left-15 { - margin-left: 15px; -} - -.custom.custom-margin-responsive.small.right-15 { - margin-right: 15px; -} - -.custom.custom-margin-responsive.small.top-15 { - margin-top: 15px; -} - -.custom.custom-margin-responsive.small.bottom-15 { - margin-bottom: 15px; -} - -.custom.custom-margin-responsive.small.add20 { - margin: 20px; -} - -.custom.custom-margin-responsive.small.left-20 { - margin-left: 20px; -} - -.custom.custom-margin-responsive.small.right-20 { - margin-right: 20px; -} - -.custom.custom-margin-responsive.small.top-20 { - margin-top: 20px; -} - -.custom.custom-margin-responsive.small.bottom-20 { - margin-bottom: 20px; -} - -.custom.custom-margin-responsive.small.add25 { - margin: 25px; -} - -.custom.custom-margin-responsive.small.left-25 { - margin-left: 25px; -} - -.custom.custom-margin-responsive.small.right-25 { - margin-right: 25px; -} - -.custom.custom-margin-responsive.small.top-25 { - margin-top: 25px; -} - -.custom.custom-margin-responsive.small.bottom-25 { - margin-bottom: 25px; -} - -.custom.custom-margin-responsive.small.add30 { - margin: 30px; -} - -.custom.custom-margin-responsive.small.left-30 { - margin-left: 30px; -} - -.custom.custom-margin-responsive.small.right-30 { - margin-right: 30px; -} - -.custom.custom-margin-responsive.small.top-30 { - margin-top: 30px; -} - -.custom.custom-margin-responsive.small.bottom-30 { - margin-bottom: 30px; -} - -.custom.custom-margin-responsive.small.add35 { - margin: 35px; -} - -.custom.custom-margin-responsive.small.left-35 { - margin-left: 35px; -} - -.custom.custom-margin-responsive.small.right-35 { - margin-right: 35px; -} - -.custom.custom-margin-responsive.small.top-35 { - margin-top: 35px; -} - -.custom.custom-margin-responsive.small.bottom-35 { - margin-bottom: 35px; -} - -textarea.form-control.input-text { - /* Show a textarea not so big at starting */ - height: 2.4em; -} - -.template-files-delete-button { - margin: 1px 0 0 0; - padding: 0 5px; -} - -/* Override sort icons for datatables */ -table.dataTable thead .sorting:after, -table.dataTable thead .sorting_asc:after, -table.dataTable thead .sorting_desc:after, -table.dataTable thead .sorting_asc_disabled:after, -table.dataTable thead .sorting_desc_disabled:after { - font-family: 'FontAwesome' !important; -} - -table.dataTable thead .sorting:after { - content: "\f0dc" !important; - /* sort */ -} - -table.dataTable thead .sorting_asc:after { - content: "\f0de" !important; - /* sort-by-attributes */ -} - -table.dataTable thead .sorting_desc:after { - content: "\f0dd" !important; - /* sort-by-attributes-alt */ -} - -.menubar.sticky { - position: fixed !important; - top: 0 !important; - margin-top: 0 !important; -} - -/* Reduce margins for question editor */ -#edit-question-form { - margin-left: -15px; - margin-right: -15px; -} - -#advanced-question-editor { - margin-left: -15px; - margin-right: -15px; -} - -#advanced-question-editor > div > .container-center > .row { - margin-left: -15px; - margin-right: -15px; -} - -/* Scrollable subquestion/answer tables*/ -.subquestions-table-wrapper, -.answeroptions-table-wrapper { - display: block; - overflow: auto; - margin-bottom: 20px; -} - -.subquestions-table, -.answeroptions-table { - margin-bottom: 0px; -} - -.subquestions-table input.code, -.answeroptions-table input.code { - min-width: 70px; -} - -.subquestions-table > tbody > tr > td:first-of-type, -.answeroptions-table > tbody > tr > td:first-of-type { - padding-left: 0; -} - -.subquestions-table > tbody > tr > td:last-of-type, -.answeroptions-table > tbody > tr > td:last-of-type { - padding-right: 0; -} - -#selectable .ui-selecting { - background: #8CCE00; -} - -#selectable .ui-selected { - background: #C1DD7F; - color: #000000; -} - -#selectable { - list-style-type: none; - margin: 2px; - padding: 0; - width: 90%; -} - -#selectable li { - padding: 1em; - font-size: 1em; - height: 9px; - text-align: center; - margin: 4px; -} - -.ui-icon.exporticon { - background-image: url("images/export.gif"); -} - -#feedback { - font-size: 1.4em; -} - -#selectableadd .ui-selecting { - background: #0066CC; -} - -#selectableadd .ui-selected { - background: #0066CC; - color: white; -} - -#selectableadd { - list-style-type: none; - margin: 0; - padding: 0; - width: 90%; - text-align: center; -} - -#selectableadd li { - margin: 3px; - padding: 0.4em; - font-size: 1 em; - height: 18px; - text-align: center; + margin-right: 10px; } -.popupgroup { - border: 1px solid #DAE5F4; - padding: 10px; - border-radius: 3px; - margin: 8px; +.custom.custom-margin-responsive.small.top-10 { + margin-top: 10px; } -.draggable-container { - min-height: 300px; +.custom.custom-margin-responsive.small.bottom-10 { + margin-bottom: 10px; } -#newcreated, -#tokenattribute, -#csvattribute, -#centralattribute { - margin-left: 0.75%; - margin-right: 0.75%; - margin-bottom: 20px; +.custom.custom-margin-responsive.small.add15 { + margin: 15px; } -#tokenattribute { - margin-left: 1.5%; +.custom.custom-margin-responsive.small.left-15 { + margin-left: 15px; } -#centralattribute { - margin-right: 1.5%; +.custom.custom-margin-responsive.small.right-15 { + margin-right: 15px; } -#centralattribute .centralatt { - padding-bottom: 15px; +.custom.custom-margin-responsive.small.top-15 { + margin-top: 15px; } -#newcreated .attribute-item input { - display: block; - margin: 2px auto; - width: 80%; +.custom.custom-margin-responsive.small.bottom-15 { + margin-bottom: 15px; } -#centralattribute div.centralatt div.token-attribute { - margin-top: -5px; - min-height: 20px; +.custom.custom-margin-responsive.small.add20 { + margin: 20px; } -#newcreated, -#tokenattribute { - height: 100%; +.custom.custom-margin-responsive.small.left-20 { + margin-left: 20px; } -.heading { - height: auto; - padding-top: 7px; - font-weight: bold; +.custom.custom-margin-responsive.small.right-20 { + margin-right: 20px; } -div.mappable-attribute-wrapper { - width: 80%; - margin: 6px auto; - padding: 6px; +.custom.custom-margin-responsive.small.top-20 { + margin-top: 20px; } -div.attribute-item, .already-mapped-attribute { - width: 80%; - margin: 6px auto; - padding: 4px; - text-align: center; +.custom.custom-margin-responsive.small.bottom-20 { + margin-bottom: 20px; } -#centralattribute .explanation { - width: 90%; - margin: 0 auto; - text-align: left; +.custom.custom-margin-responsive.small.add25 { + margin: 25px; } -#centralattribute .explanation-row { - display: table-row; +.custom.custom-margin-responsive.small.left-25 { + margin-left: 25px; } -#centralattribute .explanation input, -#centralattribute .explanation label { - display: table-cell; - padding-top: 4px; - padding-bottom: 4px; +.custom.custom-margin-responsive.small.right-25 { + margin-right: 25px; } -#centralattribute .explanation label { - padding-left: 8px; +.custom.custom-margin-responsive.small.top-25 { + margin-top: 25px; } -.attribute-item.draggable { - cursor: move; +.custom.custom-margin-responsive.small.bottom-25 { + margin-bottom: 25px; } -div.mappable-attribute-wrapper.target-hover { - padding-bottom: 27px; +.custom.custom-margin-responsive.small.add30 { + margin: 30px; } -div.mappable-attribute-wrapper.paired.target-hover { - padding-bottom: 4px; +.custom.custom-margin-responsive.small.left-30 { + margin-left: 30px; } -div.mappable-attribute-wrapper.paired.ui-state-disabled { - opacity: 1; - filter: alpha(opacity=100); +.custom.custom-margin-responsive.small.right-30 { + margin-right: 30px; } -.draggable-container .attribute-column .ui-draggable-dragging { - z-index: 100; +.custom.custom-margin-responsive.small.top-30 { + margin-top: 30px; } -/* Existing attribute column in CSV CPDB import */ -.centralatt { - min-height: 100px; +.custom.custom-margin-responsive.small.bottom-30 { + margin-bottom: 30px; } -#responses-column-filter-modal .checkbox label { - vertical-align: text-bottom; - white-space: nowrap; - overflow-x: hidden; +.custom.custom-margin-responsive.small.add35 { + margin: 35px; } -.responses-multiselect-checkboxes { - overflow-y: scroll; - height: 60vh; +.custom.custom-margin-responsive.small.left-35 { + margin-left: 35px; } -.responses-column-filter-modal-checkbox-buttons { - text-align: left; - padding-bottom: 15px; +.custom.custom-margin-responsive.small.right-35 { + margin-right: 35px; } -.grid-view .table td.button-column, .grid-view .table th.button-column { - white-space: nowrap; - text-align: initial; +.custom.custom-margin-responsive.small.top-35 { + margin-top: 35px; } -.grid-view .table th > .sort-link .caret { - right: -10px; +.custom.custom-margin-responsive.small.bottom-35 { + margin-bottom: 35px; } -.dropdown-menu.larger-dropdown { - min-width: 240px; +textarea.form-control.input-text { + /* Show a textarea not so big at starting */ + height: 2.4em; } -.dropdown-submenu { - position: relative; +.template-files-delete-button { + margin: 1px 0 0 0; + padding: 0 5px; } -.dropdown-submenu > .dropdown-menu { - top: 0; - left: 100%; - margin-top: -6px; - margin-left: -1px; - -webkit-border-radius: 0 6px 6px 6px; - -moz-border-radius: 0 6px 6px 6px; - border-radius: 0 6px 6px 6px; +/* Override sort icons for datatables */ +table.dataTable thead .sorting:after, +table.dataTable thead .sorting_asc:after, +table.dataTable thead .sorting_desc:after, +table.dataTable thead .sorting_asc_disabled:after, +table.dataTable thead .sorting_desc_disabled:after { + font-family: 'FontAwesome' !important; } -.dropdown-submenu:hover > a:after { - border-left-color: #555; +table.dataTable thead .sorting:after { + content: "\f0dc" !important; + /* sort */ } -.dropdown-submenu.pull-left { - float: none; +table.dataTable thead .sorting_asc:after { + content: "\f0de" !important; + /* sort-by-attributes */ } -.dropdown-submenu.pull-left > .dropdown-menu { - left: -100%; - margin-left: 10px; - -webkit-border-radius: 6px 0 6px 6px; - -moz-border-radius: 6px 0 6px 6px; - border-radius: 6px 0 6px 6px; +table.dataTable thead .sorting_desc:after { + content: "\f0dd" !important; + /* sort-by-attributes-alt */ } -#vue-apps-main-container { - min-height: 75vh; +.menubar.sticky { + position: fixed !important; + top: 0 !important; + margin-top: 0 !important; } -.fa-stack.halfed { - height: 1em; - width: 1em; - line-height: 1em; +#sticky-topbar-placeholder { + display: none; } -.fa-stack-1x.halfed { - font-size: 0.5em; +.menubar.sticky + #sticky-topbar-placeholder { + display: block; } -.fa-1x.halfed { - font-size: 0.5em; +/* Reduce margins for question editor */ +#edit-question-form { + margin-left: -15px; + margin-right: -15px; } -.contain-pulse { - display: flex; - flex-flow: row wrap; - justify-content: center; - align-content: bottom; - height: 3em; +#advanced-question-editor { + margin-left: -15px; + margin-right: -15px; } -.square { - background: #0f3e12; - border-radius: 0.6em; - box-sizing: border-box; - height: 2em; - margin: 0.2em; - overflow: hidden; - padding: 0.5em; - width: 2em; +#advanced-question-editor > div > .container-center > .row { + margin-left: -15px; + margin-right: -15px; } -.animate-pulse .square:nth-of-type(1) { - animation: pulse ease-in-out 1.8s infinite 0.2s; +/* Scrollable subquestion/answer tables*/ +.subquestions-table-wrapper, +.answeroptions-table-wrapper { + display: block; + overflow: auto; + margin-bottom: 20px; } -.animate-pulse .square:nth-of-type(2) { - animation: pulse ease-in-out 1.8s infinite 0.6s; +.subquestions-table, +.answeroptions-table { + margin-bottom: 0px; } -.animate-pulse .square:nth-of-type(3) { - animation: pulse ease-in-out 1.8s infinite 1.0s; +.subquestions-table input.code, +.answeroptions-table input.code { + min-width: 70px; } -.animate-pulse .square:nth-of-type(4) { - animation: pulse ease-in-out 1.8s infinite 1.4s; +.subquestions-table > tbody > tr > td:first-of-type, +.answeroptions-table > tbody > tr > td:first-of-type { + padding-left: 0; } -.simpleWrapper { - padding: 0; - margin: 0; - border: none; - display: inline-block; +.subquestions-table > tbody > tr > td:last-of-type, +.answeroptions-table > tbody > tr > td:last-of-type { + padding-right: 0; } diff --git a/assets/packages/adminbasics/build/adminbasics.min.css b/assets/packages/adminbasics/build/adminbasics.min.css index 3bd0acb4401..e8f05f6433b 100644 --- a/assets/packages/adminbasics/build/adminbasics.min.css +++ b/assets/packages/adminbasics/build/adminbasics.min.css @@ -1 +1 @@ -#selectable .ui-selecting{background:#8CCE00}#selectable .ui-selected{background:#C1DD7F;color:#000000}#selectable{list-style-type:none;margin:2px;padding:0;width:90%}#selectable li{padding:1em;font-size:1em;height:9px;text-align:center;margin:4px}.ui-icon.exporticon{background-image:url("images/export.gif")}#feedback{font-size:1.4em}#selectableadd .ui-selecting{background:#0066CC}#selectableadd .ui-selected{background:#0066CC;color:white}#selectableadd{list-style-type:none;margin:0;padding:0;width:90%;text-align:center}#selectableadd li{margin:3px;padding:0.4em;font-size:1 em;height:18px;text-align:center}.popupgroup{border:1px solid #DAE5F4;padding:10px;border-radius:3px;margin:8px}.draggable-container{min-height:300px}#newcreated,#tokenattribute,#csvattribute,#centralattribute{margin-left:0.75%;margin-right:0.75%;margin-bottom:20px}#tokenattribute{margin-left:1.5%}#centralattribute{margin-right:1.5%}#centralattribute .centralatt{padding-bottom:15px}#newcreated .attribute-item input{display:block;margin:2px auto;width:80%}#centralattribute div.centralatt div.token-attribute{margin-top:-5px;min-height:20px}#newcreated,#tokenattribute{height:100%}.heading{height:auto;padding-top:7px;font-weight:bold}div.mappable-attribute-wrapper{width:80%;margin:6px auto;padding:6px}div.attribute-item,.already-mapped-attribute{width:80%;margin:6px auto;padding:4px;text-align:center}#centralattribute .explanation{width:90%;margin:0 auto;text-align:left}#centralattribute .explanation-row{display:table-row}#centralattribute .explanation input,#centralattribute .explanation label{display:table-cell;padding-top:4px;padding-bottom:4px}#centralattribute .explanation label{padding-left:8px}.attribute-item.draggable{cursor:move}div.mappable-attribute-wrapper.target-hover{padding-bottom:27px}div.mappable-attribute-wrapper.paired.target-hover{padding-bottom:4px}div.mappable-attribute-wrapper.paired.ui-state-disabled{opacity:1;filter:alpha(opacity=100)}.draggable-container .attribute-column .ui-draggable-dragging{z-index:100}.centralatt{min-height:100px}.grid-view .table td.button-column,.grid-view .table th.button-column{white-space:nowrap;text-align:initial}.grid-view .table th>.sort-link .caret{right:-10px}.dropdown-menu.larger-dropdown{min-width:240px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>a:after{border-left-color:#555}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}#vue-apps-main-container{min-height:75vh}.fa-stack.halfed{height:1em;width:1em;line-height:1em}.fa-stack-1x.halfed{font-size:0.5em}.fa-1x.halfed{font-size:0.5em}.contain-pulse{display:flex;flex-flow:row wrap;justify-content:center;align-content:bottom;height:3em}.square{background:#0f3e12;border-radius:0.6em;box-sizing:border-box;height:2em;margin:.2em;overflow:hidden;padding:.5em;width:2em}.animate-pulse .square:nth-of-type(1){animation:pulse ease-in-out 1.8s infinite 0.2s}.animate-pulse .square:nth-of-type(2){animation:pulse ease-in-out 1.8s infinite 0.6s}.animate-pulse .square:nth-of-type(3){animation:pulse ease-in-out 1.8s infinite 1.0s}.animate-pulse .square:nth-of-type(4){animation:pulse ease-in-out 1.8s infinite 1.4s}.simpleWrapper{padding:0;margin:0;border:none;display:inline-block}#cpdbatt{min-height:100px}#responses-column-filter-modal .checkbox label{vertical-align:text-bottom;white-space:nowrap;overflow-x:hidden}.responses-multiselect-checkboxes{overflow-y:scroll;height:60vh}.responses-column-filter-modal-checkbox-buttons{text-align:left;padding-bottom:15px}#ls-loading{width:100%;height:100%;top:0;left:0;position:fixed;display:block;opacity:0.7;background-color:#fff;z-index:3501;text-align:center;display:none}#ls-loading-spinner{position:absolute;top:30%}#notif-container{position:fixed;top:5%;left:20%;width:60%;z-index:3500;background:rgba(255,255,255,0.1);min-height:0}.bg-white{background:#fff}.row-button-margin-bottom{margin-bottom:-5px}.row-button-margin-bottom .btn{margin-bottom:5px}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:10px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:10px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-multi .ui-datepicker-group,.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.side-body,.full-page-wrapper{min-height:100%;position:relative;margin-bottom:65px;padding:0}.side-body h3,.pagetitle,.list-surveys h3{position:relative;padding:0.5em;margin-bottom:1em}body{font-size:14px;line-height:1.428571429;margin:0}body .row{margin-right:0;margin-left:0}.jumbotron{text-align:center}.jumbotron.message-box{margin-top:1em}html{font-family:Roboto;font-weight:400;position:relative;min-height:100%}.main-container{padding-bottom:100px}#welcome-jumbotron{padding-top:0;padding-bottom:10px;background-color:transparent}#welcome-jumbotron>img{width:350px}.surveymanagerbar{margin-top:-20px;padding-top:5px}.surveymanagerbar .h3{margin-top:5px;font-weight:300;font-size:1.5em}.surveybar{padding-top:5px;padding-bottom:5px;z-index:1000}.tab-content{padding-top:2em}:focus{outline:none}.navbar-brand{font-weight:400}.navbar{border-radius:0 !important}.navbar a{font-weight:400}.navbar .dropdown-menu>li>a{font-weight:400}.navbar .nav-icon-btn>a .label{font-size:10px;padding:0 3px;line-height:15px;position:absolute;display:block;right:5px;top:10px}.lime-icon{display:inline-block;height:1em;width:1em}.mega-dropdown{position:static !important}.mega-dropdown-menu{padding:20px 0;width:100%}.mega-dropdown-menu .dropdown-header{font-size:18px;padding:5px 60px 5px 5px;line-height:30px}.mega-dropdown-menu>li>ul{padding:0;margin:0}.mega-dropdown-menu>li>ul>li{list-style:none}.mega-dropdown-menu>li>ul>li>a{display:block;padding:3px 5px}.mega-dropdown-menu>li ul>li>a:hover{text-decoration:none}.mega-dropdown-menu>li ul>li>a:focus{text-decoration:none}#mainmenu-dropdown{z-index:20002}.footer{z-index:100;position:absolute;bottom:0;display:block;width:100%;height:60px;padding-top:1em}.alert-security-update{margin:0}#update-container{margin-top:10px;z-index:999}#update-container .alert{margin-bottom:5px}#ajaxupdaterLayoutLoading{text-align:center;margin-top:200px;margin-bottom:200px;display:none}.box{border-radius:3px;padding:10px 25px;text-align:right;display:block;margin-top:10px}#info-header{font-size:3em}#info-footer{font-size:2em}.box-icon{border-radius:50%;display:table;height:50px;margin:0 auto;width:50px;margin-top:-31px}.box-icon span{display:table-cell;text-align:center;vertical-align:middle}@keyframes fadein{from{opacity:0}to{opacity:1}}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-ms-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes slidefromtop{from{top:-15px}to{top:0}}@-moz-keyframes slidefromtop{from{top:-15px}to{top:0}}@-webkit-keyframes slidefromtop{from{top:-15px}to{top:0}}@-ms-keyframes slidefromtop{from{top:-15px}to{top:0}}@-o-keyframes slidefromtop{from{top:-15px}to{top:0}}.form-group{margin-bottom:17px}.cke_contents{width:650px}.cke_toolgroup{cursor:pointer;cursor:hand;border-radius:0}.message-box{position:relative;margin-top:20px;animation:slidefromtop 1s}.welcome #lime-logo{animation:fadein 1s}.welcome .panel{position:relative;top:50px;opacity:0}.welcome .panel-body{text-align:center}.welcome .panel-body img{height:4em;margin-bottom:1em}.welcome .login-panel .panel-body img{margin-bottom:0}.alert{position:relative;animation:slidefromtop 1s}@media screen and (min-width: 1280px) and (max-width: 1440px){.welcome .panel{min-height:188px}}#welcomeModal{z-index:20000}@media screen and (min-width: 1280px) and (max-width: 1366px){#add_user_btn{margin-top:1.5em}#user-control-table .form-group label{min-width:80px}}.htmleditorboot{padding-top:2em}#edit-question-body{min-height:1200px}.profile-img-card{margin-top:32px}#profile-img{min-height:80px}@media screen and (min-width: 1280px) and (max-width: 1680px){#profile-img{min-height:0}}.login-panel{margin-top:40px}.login-content{text-align:left;padding:1em}.login-submit{text-align:right}#s2id_loginlang{border:none;padding:0}.ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-bdiv{overflow:hidden}.ui-jqgrid .ui-jqgrid-view .ui-jqgrid-toppager{background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-htable th div{height:auto}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input{margin-top:8px}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input.cbox{margin:4px 0 0}.ui-jqgrid td input.cbox{margin:4px 0 0}.ui-jqgrid tr.ui-row-ltr td{border:none}#gs_completed{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.ui-th-column{margin-top:8px}.info>p{padding-top:10px;text-align:justify}.checkbox label:after{padding-left:4px;padding-top:2px;font-size:9px}.survey-action .panel-body img{height:3em}div.panel.disabled{opacity:0.5;border:none}div.panel.disabled *{opacity:0.5;border:none}div.panel.disabled a{cursor:default}#edit-group .tab-pane{padding:1em}.panel-clickable:hover{cursor:pointer;cursor:hand}.ui-widget-content .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-widget-header .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-search-toolbar th div{min-height:40px}.absolute-wrapper{position:fixed;left:0;width:300px;height:100%}.side-menu{position:absolute;width:300px;padding:0;left:0}.side-menu .navbar{border:none;box-shadow:none}.side-menu .navbar-header{width:100%}.side-menu .navbar-nav li{display:block;width:100%}.side-menu .navbar-nav li a{padding:15px}.side-menu .navbar-nav li a .glyphicon{padding-right:10px}.side-menu .navbar-nav .question-link.active{background-color:transparent;padding:15px 15px 15px 0px;margin-bottom:5px;margin-right:-1px}.side-menu .navbar-nav .question-link.active:hover{text-decoration:none;cursor:default}.side-menu .navbar-nav .question-link{display:block;padding-left:0px}.side-menu .navbar-nav .question-link .question-collapse-title{padding-left:25px}.side-menu #dropdown{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}.side-menu #dropdown li:hover{font-weight:700}.side-menu #dropdown li.active:hover{cursor:default;background-color:transparent;margin-right:-1px}.side-menu #dropdown li.disabled:hover{font-weight:700;background-color:transparent}.side-menu #dropdown .caret{float:right;margin:9px 5px 0}.side-menu #dropdown .indicator{float:right}.side-menu #dropdown .panel-body{padding:0}.side-menu #dropdown .panel-body .navbar-nav{width:100%}.side-menu #dropdown .panel-body .navbar-nav li{padding-left:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li.panel{margin-bottom:0;background-color:transparent;border:none;border-radius:0;box-shadow:none}.side-menu #dropdown .panel-body .navbar-nav li.panel-default{padding-left:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li:last-child{border-bottom:none}.side-menu #dropdown .panel-body .panel-body{margin-left:-15px}.side-menu #dropdown .panel-body .panel>a{margin-left:-20px;padding-left:35px}.side-menu #dropdown .question-group-collapse .caret{float:none;margin-bottom:9px}.side-menu .hide-button{border:0;border-radius:0;padding:15px 18px}.side-menu .brand-name-wrapper{min-height:50px}.side-menu .brand-name-wrapper .navbar-brand{display:block}.side-menu #search{position:relative;z-index:1000}.side-menu #search .panel-body{padding:0}.side-menu #search .panel-body .navbar-form{padding:0;padding-right:50px;width:100%;margin:0;position:relative}.side-menu #search .panel-body .navbar-form .form-group{width:100%;position:relative}.side-menu #search .panel-body .navbar-form input{border:0;border-radius:0;box-shadow:none;width:100%;height:50px}.side-menu #search .panel-body .navbar-form .btn{position:absolute;right:0;top:0;border:0;border-radius:0;padding:15px 18px}.side-menu #explorer-collapse .caret{float:none;margin-bottom:9px}#explorer{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#explorer ul{font-size:0.9em}.dropdownstyle{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#sideMenu{min-height:700px;overflow:hidden}#sideMenu a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown li:hover{width:100%;font-weight:700}#sideMenu #dropdown li:hover>a{width:100%;font-weight:700;border-bottom:none}#sideMenu #dropdown li a[aria-expanded="true"]{width:100%;font-weight:700}#sideMenu #dropdown li .active a:hover{width:100%;font-weight:700}#sideMenu #dropdown li>a:hover{width:100%;font-weight:700}#sideMenu #dropdown #explorer li:hover{font-weight:700}#sideMenu #dropdown #explorer li:hover>a{font-weight:700}#sideMenu #dropdown #explorer li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer li>a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover>a{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li>a:hover{font-weight:700}#sideMenu .navbar-default .navbar-nav>.active>a{background-color:transparent}#sideMenu .side-menu .dropdownlvl1>a:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover>a{font-weight:700}.side-menu-hidden{left:-250px}.side-body{min-height:800px}.side-body-margin{margin-left:70px}.question-group-collapse-title{display:block;padding-left:20px}.question-collapse-title{display:block;padding-left:30px}.main-content-container{max-width:95%;overflow-x:hidden;overflow-y:visible}.ck-content{transition:height 400ms ease-in-out}.ck-blurred{max-height:35vh}.ck-blurred:hover{max-height:initial}.ckedit-nocollapse .ck-blurred{max-height:initial}.ck-focused{max-height:initial}@media (max-width: 768px){.main-content-container{max-width:100%}.side-menu{position:relative;width:100%;height:0;border-right:0}.side-menu .brand-name-wrapper .navbar-brand{display:inline-block}@-moz-keyframes slidein{0%{left:-300px}100%{left:10px}}@-webkit-keyframes slidein{0%{left:-300px}100%{left:10px}}@keyframes slidein{0%{left:-300px}100%{left:10px}}@-moz-keyframes slideout{0%{left:0}100%{left:-300px}}@-webkit-keyframes slideout{0%{left:0}100%{left:-300px}}@keyframes slideout{0%{left:0}100%{left:-300px}}@-moz-keyframes bodyslidein{0%{left:0}100%{left:300px}}@-webkit-keyframes bodyslidein{0%{left:0}100%{left:300px}}@keyframes bodyslidein{0%{left:0}100%{left:300px}}@-moz-keyframes bodyslideout{0%{left:300px}100%{left:0}}@-webkit-keyframes bodyslideout{0%{left:300px}100%{left:0}}@keyframes bodyslideout{0%{left:300px}100%{left:0}}.side-body{margin-left:5px;margin-top:70px;position:relative;animation:bodyslideout 300ms forwards;transform-style:preserve-3d}.body-slide-in{animation:bodyslidein 300ms forwards;transform-style:preserve-3d}.navbar-toggle{border:0;float:left;padding:16px;margin:0;border-radius:0}.navbar-header{position:fixed;top:0;width:100%;z-index:3;background:white;border-bottom:1px solid var(--LS-admintheme-basecolor)}.side-menu-container>.navbar-nav{position:fixed;left:-300px;width:300px;top:43px;height:100%;animation:slideout 300ms forwards;transform-style:preserve-3d}.side-menu-container>.navbar-nav.slide-in{animation:slidein 300ms forwards;transform-style:preserve-3d}#search .panel-body .navbar-form{border-bottom:0}#search .panel-body .navbar-form .form-group{margin:0}#dropdown .panel-body .navbar-nav{margin:0}}.content-right{padding-left:0;padding-right:0}.content-right .col-lg-12{padding-left:0;padding-right:0}.toWhite a:hover{font-weight:700}.col-lg-12.content-right{padding-left:0;padding-right:0}.container-fluid .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff}.container-fluid .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{color:#fff}.btn-success:hover,.btn-danger:hover,.btn-warning:hover,.btn-info:hover{color:#fff}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:23px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#4caf50}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#ff9800}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#e51c23}@media (min-width: 768px){.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:30px}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.radio label,.radio-inline label,.checkbox label,.checkbox-inline label{padding-left:25px}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="radio"],.checkbox-inline input[type="radio"],.radio input[type="checkbox"],.radio-inline input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{margin-left:-25px}input[type="radio"],.radio input[type="radio"],.radio-inline input[type="radio"]{position:relative;margin-top:6px;margin-right:4px;vertical-align:top;border:none;background-color:transparent;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="radio"]:focus,.radio input[type="radio"]:focus,.radio-inline input[type="radio"]:focus{outline:none}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before,input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{content:"";display:block;width:18px;height:18px;border-radius:50%;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before{position:absolute;left:0;top:-3px;background-color:#2196f3;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{position:relative;top:-3px;border:2px solid #666666}input[type="radio"]:checked:before,.radio input[type="radio"]:checked:before,.radio-inline input[type="radio"]:checked:before{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}input[type="radio"]:disabled:checked:before,.radio input[type="radio"]:disabled:checked:before,.radio-inline input[type="radio"]:disabled:checked:before{background-color:#bbbbbb}input[type="radio"]:checked:after,.radio input[type="radio"]:checked:after,.radio-inline input[type="radio"]:checked:after{border-color:#2196f3}input[type="radio"]:disabled:after,.radio input[type="radio"]:disabled:after,.radio-inline input[type="radio"]:disabled:after,input[type="radio"]:disabled:checked:after,.radio input[type="radio"]:disabled:checked:after,.radio-inline input[type="radio"]:disabled:checked:after{border-color:#bbbbbb}input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:relative;border:none;margin-bottom:-4px;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="checkbox"]:focus,.checkbox input[type="checkbox"]:focus,.checkbox-inline input[type="checkbox"]:focus{outline:none}input[type="checkbox"]:focus:after,.checkbox input[type="checkbox"]:focus:after,.checkbox-inline input[type="checkbox"]:focus:after{border-color:#2196f3}input[type="checkbox"]:after,.checkbox input[type="checkbox"]:after,.checkbox-inline input[type="checkbox"]:after{content:"";display:block;width:18px;height:18px;margin-top:-2px;margin-right:5px;border:2px solid #666666;border-radius:2px;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="checkbox"]:checked:before,.checkbox input[type="checkbox"]:checked:before,.checkbox-inline input[type="checkbox"]:checked:before{content:"";position:absolute;top:0;left:6px;display:table;width:6px;height:12px;border:2px solid #fff;border-top-width:0;border-left-width:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}input[type="checkbox"]:indeterminate:before,.checkbox input[type="checkbox"]:indeterminate:before,.checkbox-inline input[type="checkbox"]:indeterminate:before{content:"";position:absolute;top:6px;left:2px;display:table;width:12px;height:0;border:1px solid #fff}input[type="checkbox"]:disabled:after,.checkbox input[type="checkbox"]:disabled:after,.checkbox-inline input[type="checkbox"]:disabled:after{border-color:#bbbbbb}input[type="checkbox"]:disabled:checked:after,.checkbox input[type="checkbox"]:disabled:checked:after,.checkbox-inline input[type="checkbox"]:disabled:checked:after{background-color:#bbbbbb;border-color:transparent}.has-warning input:not([type=checkbox]),.has-warning .form-control,.has-warning input.form-control[readonly],.has-warning input[type=text][readonly],.has-warning [type=text].form-control[readonly],.has-warning input:not([type=checkbox]):focus,.has-warning .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #ff9800;box-shadow:inset 0 -2px 0 #ff9800}.has-error input:not([type=checkbox]),.has-error .form-control,.has-error input.form-control[readonly],.has-error input[type=text][readonly],.has-error [type=text].form-control[readonly],.has-error input:not([type=checkbox]):focus,.has-error .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #e51c23;box-shadow:inset 0 -2px 0 #e51c23}.has-success input:not([type=checkbox]),.has-success .form-control,.has-success input.form-control[readonly],.has-success input[type=text][readonly],.has-success [type=text].form-control[readonly],.has-success input:not([type=checkbox]):focus,.has-success .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #4caf50;box-shadow:inset 0 -2px 0 #4caf50}.ui-widget-content{border:none;background:none;color:#404040}.ui-jqgrid .ui-jqgrid-titlebar{padding:1em}.container-fluid .ui-widget-content .ui-state-default,.container-fluid .ui-jqgrid .ui-jqgrid-bdiv{padding:0.5em;padding-bottom:0}.ui-dialog,.ui-jqdialog,.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-buttons.ui-draggable.ui-resizable{border-radius:4px;padding:1em;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqdialog-titlebar{height:2em;width:100%}.EditTable tr td{padding:1em}.ui-jqdialog-content input.FormElement{padding:.3em}.ui-jqdialog-content input[type="checkbox"].FormElement{padding:0em}.EditTable td select,.EditTable td textarea{display:inline-block;width:auto;vertical-align:middle;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;color:#636363;background-color:#ffffff;border:1px solid #cccccc;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.EditTable td input,.EditTable td select,.EditTable td textarea{margin:0}input[type="text"],input[type="password"],.ui-autocomplete-input,textarea,.uneditable-input{display:inline-block;font-size:14px;line-height:18px;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input:focus,textarea:focus{outline:0;border-color:rgba(82,168,236,0.8);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6)}#displayparticipants_firstname,#displayparticipants_lastname,#displayparticipants_owner_uid{padding-left:40px}#displayparticipants_language{padding-left:50px}#jqgh_displayparticipants_email{padding-left:140px}#displayparticipants_survey{padding-left:20px}.navtable{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqgrid-title{padding:1em 0em 1em 1em;font-style:italic;font-weight:700}.ui-pg-button{padding:0.4em}.ui-pg-button:hover{cursor:pointer}.ui-state-disabled:hover{cursor:default}.ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all .ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all{width:100%;overflow:hidden;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.modal-22{position:absolute;width:600px}.modal-22 .ui-jqdialog-titlebar .ui-jqdialog-title{width:80%}.modal-22 .ui-jqdialog-content{padding:1em}.ui-dialog-titlebar-close{border:1px solid transparent;border-radius:4px;float:right;color:#333;background-color:#fff;border-color:#ccc;display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;-webkit-appearance:button;cursor:pointer;overflow:visible;margin:0;font:normal normal normal 14px/1 FontAwesome}.ui-dialog-titlebar-close:before{content:"\f00d"}.em-expression{font-weight:bold}.data-entry-tbl tr.odd td,.data-entry-tbl tr.even td{padding:20px 0 20px 0}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{position:absolute;right:1em;top:10px}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{cursor:pointer}#carousel-example-generic{margin-left:20px}#carousel-example-generic .carousel-control{font-size:1em;top:-80px}#carousel-example-generic .left.carousel-control{left:-20px}#carousel-example-generic .right.carousel-control{right:-20px}#carousel-example-generic .panel-title{text-align:center;padding-top:0px}#carousel-example-generic .carousel-inner img{margin:auto;top:9px;position:relative}#carousel-example-generic .selectTemplate{display:inline-block;position:relative;left:0px;top:320px}#carousel-example-generic .carousel-caption{width:100%;left:0;top:0px;padding-top:0px}#carousel-example-generic,#carousel-example-generic .carousel-inner{min-height:150px}#carousel-example-generic .carousel-indicators{top:370px;width:80%;left:39%}#carousel-example-generic .carousel-indicators li{margin:0px;width:8px;height:8px}.side-body #carousel-example-generic h3{border:none}#systemoverview{margin:1em 0 1em 0}#systemoverview .info div{font-size:14px;margin-top:10px;margin-bottom:10px;font-weight:500;line-height:1.1;color:inherit;text-align:center}.preloader{position:absolute;top:50%;left:50%;font-size:20px;display:block;width:3.75em;height:4.25em;margin-left:-1.875em;margin-top:-2.125em;transform-origin:center center;transform:rotateY(180deg) rotateZ(-60deg)}.preloader .slice{border-top:1.125em solid transparent;border-right:none;border-bottom:1em solid transparent;border-left:1.875em solid #f7484e;position:absolute;top:0px;left:50%;transform-origin:left bottom;border-radius:3px 3px 0 0}.preloader .slice:nth-child(1){transform:rotateZ(60deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.82s preload-hide-1 both 1}.preloader .slice:nth-child(2){transform:rotateZ(120deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.74s preload-hide-2 both 1}.preloader .slice:nth-child(3){transform:rotateZ(180deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.66s preload-hide-3 both 1}.preloader .slice:nth-child(4){transform:rotateZ(240deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.58s preload-hide-4 both 1}.preloader .slice:nth-child(5){transform:rotateZ(300deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.5s preload-hide-5 both 1}.preloader .slice:nth-child(6){transform:rotateZ(360deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.42s preload-hide-6 both 1}.preloader.loading{animation:2s preload-flip steps(2) infinite both}.preloader.loading .slice:nth-child(1){transform:rotateZ(60deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-1 linear infinite both}.preloader.loading .slice:nth-child(2){transform:rotateZ(120deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-2 linear infinite both}.preloader.loading .slice:nth-child(3){transform:rotateZ(180deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-3 linear infinite both}.preloader.loading .slice:nth-child(4){transform:rotateZ(240deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-4 linear infinite both}.preloader.loading .slice:nth-child(5){transform:rotateZ(300deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-5 linear infinite both}.preloader.loading .slice:nth-child(6){transform:rotateZ(360deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-6 linear infinite both}#ajaxContainerLoading,.ajaxLoading{height:130px;text-align:center;margin-top:70px;margin-bottom:100px;display:none}#comfortUpdateIcon{height:1em;margin-right:0.5em}#comfortUpdateGeneralWrap h3.maintitle{background-color:transparent}#comfortUpdateGeneralWrap .on{font-weight:bold;font-size:1em;padding-left:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap .on span{display:block;padding:0.1em;padding-left:0.5em;width:40%}#comfortUpdateGeneralWrap .off{font-size:0.9em;padding-left:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap #welcomeMessage,#comfortUpdateGeneralWrap #btn-container{border-right:1px solid #EEE}#comfortUpdateGeneralWrap #key-actions{padding-left:1em}#update-alert.unstable-update{background-color:#fff;border:1px solid #A0352F;color:#A0352F;margin-top:1em}html body .nav-tabs>li.active>a,html body .nav-tabs>li.active>a:hover,html body .nav-tabs>li.active>a:focus{border-bottom-color:transparent;cursor:default}.answertable.table td{vertical-align:middle}.btnaddanswer:hover,.btndelanswer:hover{cursor:pointer}.jumbotron p{font-weight:300}span[data-tooltip]{display:inline-block}.glyphicon-move:hover{cursor:pointer}.answertable .glyphicon-pencil{margin-left:3px}#statisticsview .panel{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}#explorer-collapse{border-bottom:none}#explorer-collapse:hover,#sideMenu #dropdown li a#explorer-collapse[aria-expanded="true"],#sideMenu #dropdown li a.question-group-collapse[aria-expanded="true"]{width:auto}#sideMenu #dropdown #explorer li#questionexplorer-group-container,#sideMenu #dropdown li#questionexplorer-group-container>a{line-height:1.4}#sideMenu #dropdown #explorer li#questionexplorer-group-container:hover,#sideMenu #dropdown li#questionexplorer-group-container:hover>a{background-color:#fafafa;font-weight:400;line-height:1.4}.explorer-group-title{margin-top:1em;padding:0em 0 1em 0}.explorer-group-title a.explorer-group,.question-collapse-title{color:#163c19}#item-container,#jcarousel-wrapper-container{width:300px}#item-container h4{margin-bottom:30px}.selectTemplate{margin-top:10px}.imgSelectTemplate{cursor:pointer}.template-img{padding:1em}#additional_languages{min-width:200px}#available_languages{min-width:200px}.modal{top:50px}#tokensidemenu{border-top:1px solid #e3e3e3}.question-item{padding:1em;margin:1em 0 1em 0;cursor:pointer}.placeholder{padding:1em;margin:1em 0 1em 0}.no-gutter>[class*='col-']{padding-right:0;padding-left:0}.inputbuttons{width:120px}.inputbuttons-square{width:20px;height:16px;float:left}.jqgrid-tokens-number-padding{padding-right:4px}.tooltip{position:fixed}.scrolling-wrapper{overflow-x:scroll;overflow-y:hidden}#search{display:none;overflow-y:auto}iframe#dialog{width:100%;height:100%}.ui-jqgrid,.ui-jqgrid-view,.ui-jqgrid-titlebar,.ui-jqgrid-toppager,.ui-jqgrid-pager{min-width:100%;max-width:100%;margin-right:0;margin-left:0;box-sizing:border-box}#pager{position:relative}.ui-sortable-placeholder{color:#f00;background-color:#0f0;border:solid black 5px}.tokenatt-arrow{position:absolute;right:-0.5em}.csvatt-arrow{position:absolute;right:-0.5em;top:1em}.no-padding{padding:0}.droppable-new,.droppable-csv{min-height:40px;height:100%}#labelsetpreview{overflow-x:hidden}#labelsetbrowserModal .modal-dialog{width:80%}.question-filter-container{border:1px solid #efefef;padding:2em;margin:0;min-width:33%;max-width:100%}td.subquestion-actions span:hover{cursor:pointer}.template-img{padding-top:0}.full-page-wrapper .handleAccordion{display:none}div#gview_displayresponses th#displayresponses_cb{width:35px}.detailbrowsetable tr th{width:50%}.lead{font-weight:300}.time-statistics-row-buttons,.nowrap{white-space:nowrap}.time-statistics-table{overflow:auto}.mixed{opacity:0.4}#sidemenu-home{padding-left:15px}#quick-menu-container{position:absolute;width:50px;right:0;top:50px}.quick-icon-wrapper{padding:15px;height:50px}#quick-menu-container .glyphicon{font-size:18px}#quick-menu-container .navbar-brand{padding:0}.panel-group .panel{overflow:visible}a.explorer-group:hover,a.explorer-group:focus{text-decoration:none}.question-explorer-question{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis}.question-explorer-group-name{display:inline-block;max-width:140px;overflow:hidden;position:relative;top:5px;text-overflow:ellipsis}.question-explorer-add-question{position:relative;top:5px}.explorer-group-title a.disabled{opacity:0.5}.btn.readonly,.btn.readonly:hover{cursor:not-allowed;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;border:1px solid #cccccc}#displayResponsesContainer .ui-jqgrid-bdiv,#gbox_displaytokens .ui-jqgrid-bdiv{overflow:hidden}h1,.h1{font-size:24px}h2,.h2{font-size:22px}h3,.h3{font-size:20px}.statisticstable{word-wrap:break-word}.summary-container,.summary,#massive-action-container,#surveyListActions,.listActions,.pager-container ls-ba .pager,.pager-container ls-ba .pager .pagination{margin:0;margin-bottom:20px}.summary-container{text-align:right}#massive-action-container,#surveyListActions,.listActions{padding-left:0px;text-align:left}.push-grid-pager{min-height:25em}.has-link{cursor:pointer}.has-link a:hover{text-decoration:none}.has-link a{color:black}.hoverAction .table-striped>tbody>tr:hover>td{background-color:transparent}.hoverAction .table-striped>tbody>tr:hover>td>a:not(.btn){color:white}.ui-priority-secondary{background-color:#f5f5f5}#token-grid .table .filters>td .filter-container{padding:0px}#token-grid table.table{width:none;max-width:none}#token-grid table thead tr #action{min-width:150px}#token-grid .filter-container{min-width:50px}#token-grid table tr.odd .blank_button{border-color:#f9f9f9;background-color:#f9f9f9;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}#token-grid table tr .blank_button{border-color:white;background-color:white}#token-grid table tr.selected .blank_button{border-color:#eee;background-color:#eee}#token-grid .name{min-width:150px}#tokenListPager{position:relative}.blank_button span{max-width:12px}#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-4,#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-8{padding:0}div[id^="alertmod_"]{display:none}.ui-helper-clearfix{min-height:0}.ui-dialog .ui-dialog-buttonpane{background-image:none;border-width:1px 0 0;margin-top:0.5em;padding:0.3em 1em 0.5em 0.4em;text-align:left}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-helper-clearfix::after{clear:both}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.yiiLog{margin-bottom:70px}table#responsedetail tr td{max-width:100px;word-wrap:break-word}.in-title{position:relative;top:-65px;right:15px}.input-group-addon{padding:5px 12px}.multiselect-container>li>a>label>input[type="checkbox"]{margin-left:0}.notification-list{top:100%;left:0;z-index:1000;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;border-radius:4px;background-clip:padding-box;overflow-y:auto}.notification-list>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;white-space:nowrap}.notification-list>li>a:hover,.notification-list>li>a:focus{text-decoration:none}.notification-list>.active>a,.notification-list>.active>a:hover,.notification-list>.active>a:focus{text-decoration:none;outline:0}.notification-list>.disabled>a:hover,.notification-list>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}#notification-outer-ul{height:400px;width:400px}#notification-inner-ul{height:340px;width:390px}.select2-container--bootstrap .select2-selection{font-family:Roboto !important}#responses-grid .table-condensed.upload-question{margin-bottom:0;background-color:inherit}#responses-grid .filter-container{min-width:6em}.edit-participant-modal-body{max-height:500px;overflow-y:auto}.scenario-heading{padding:0}.scenario-heading .delete-scenario-form{padding-top:6px}.condition-header-button{margin-top:-10px;margin-right:10px}.margin-left{margin-left:5px}.conditions-table{margin-bottom:0}.condition-and-or-or{margin-left:20px}#editconditions .tab-content,#quick-add-conditions-form .tab-content{padding-top:0}#quick-add-condition-modal .modal-dialog{width:800px}#login-panel{max-width:400px;margin-left:auto;margin-right:auto}.row-eq-height{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:30px}.welcome .panel{height:110%}.welcome .panel-body{padding:0px}.welcome .panel-heading{height:25%;display:flex;align-items:center;justify-content:center}.welcome .panel-title{font-weight:500}.welcome .panel-body{height:75%;width:100%}.welcome .panel-body .panel-body-ico,.welcome .panel-body .panel-body-link{width:100%;display:flex;align-items:center;justify-content:center}.welcome .panel-body .panel-body-ico{height:70%}.welcome .panel-body .panel-body-link{height:30%}input[type="file"].form-control{border:none;padding-left:0px}#insertmethod-container{display:none}@media print{@page{size:A4 portrait;margin-left:1.0cm;margin-right:1.5cm;margin-top:1.2cm;margin-bottom:1cm;overflow:visible}*{overflow:visible !important}html,body{margin:0;max-width:0%}body{text-align:left;margin:0;padding:0;overflow:visible;min-width:19.0cm !important;min-height:27.7cm;width:100% !important;height:100%}body.onStatistics a:not(.printable),body.onStatistics p:not(.printable),body.onStatistics button:not(.printable),body.onStatistics nav:not(.printable),body.onStatistics form:not(.printable),body.onStatistics footer:not(.printable),body.onStatistics h1:not(.printable),body.onStatistics h2:not(.printable),body.onStatistics h3:not(.printable),body.onStatistics h4:not(.printable),body.onStatistics h5:not(.printable),body.onStatistics .jumbotron,body.onStatistics .menubar,body.onStatistics>div:not(#vue-apps-main-container),body.onStatistics div#vue-apps-main-container>div:not(#pjax-content),body.onStatistics div#vue-apps-main-container>div#pjax-content>div:not(#in_survey_common),body.onStatistics div#in_survey_common>div:not(#statisticsview){display:none !important;visibility:hidden !important;overflow:hidden !important;padding:0;position:absolute;left:-1000px;top:-1000px;margin:0 !important;width:0px !important}body.onStatistics div.row{display:block !important;position:static}body.onStatistics div[class^="col-"]{display:block !important;float:none !important;position:static}body.onStatistics>div#vue-apps-main-container,body.onStatistics div#in_survey_common,body.onStatistics>div#vue-apps-main-container>div#pjax-content,body.onStatistics #statisticsview{display:block;position:static;width:99% !important;max-width:95% !important;min-width:19.6cm !important;min-height:29.7cm !important;height:100% !important;overflow:visible;page-break-inside:auto;break-inside:auto}body.onStatistics #statisticsview div,body.onStatistics #statisticsview table{position:static}body.onStatistics #statisticsview div:not(#statsContainerLoading){width:99% !important;max-width:100% !important;float:none !important;display:block}body.onStatistics #statisticsview a.printable,body.onStatistics #statisticsview p.printable,body.onStatistics #statisticsview span.printable,body.onStatistics #statisticsview table.printable,body.onStatistics #statisticsview table.statisticstable,body.onStatistics #statisticsview h1.printable,body.onStatistics #statisticsview h2.printable,body.onStatistics #statisticsview h3.printable,body.onStatistics #statisticsview h4.printable,body.onStatistics #statisticsview h5.printable{width:95% !important;max-width:100%;float:none;margin-left:0 !important;margin-right:0 !important;margin-top:1cm;margin-bottom:1cm;position:static}body.onStatistics div.printable{position:static;page-break-after:auto;break-after:auto;page-break-inside:avoid;break-inside:avoid;margin-left:0 !important;margin-right:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics div.printable table{position:static;page-break-inside:avoid;break-inside:avoid;margin-left:0 !important;margin-right:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics table.printable thead,body.onStatistics table.printable tbody,body.onStatistics table.printable tr{width:100% !important;margin:0 !important;padding:0 !important}body.onStatistics table.printable *{page-break-after:avoid;break-after:avoid;page-break-before:avoid;break-before:avoid;page-break-inside:avoid;break-inside:avoid}body.onStatistics .side-body{max-width:100%;margin:0 !important;padding:0 !important}body.onStatistics .side-menu{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important;margin-left:0 px !important}body.onStatistics .absolute-wrapper{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important}}.currentQuestionTypeImageContainer img{max-width:100%}#accordion-container .panel-heading>a{width:100%;display:block}#accordion_questionTypeSelector .panel-title>a{width:100%;display:block}.small-screens-menus{padding-left:28px}.custom.custom-no-padding{padding:0}.custom.custom-no-margin{padding:0}.custom.custom-padding.add5{padding:5px}.custom.custom-padding.left-5{padding-left:5px}.custom.custom-padding.right-5{padding-right:5px}.custom.custom-padding.top-5{padding-top:5px}.custom.custom-padding.bottom-5{padding-bottom:5px}.custom.custom-padding.add10{padding:10px}.custom.custom-padding.left-10{padding-left:10px}.custom.custom-padding.right-10{padding-right:10px}.custom.custom-padding.top-10{padding-top:10px}.custom.custom-padding.bottom-10{padding-bottom:10px}.custom.custom-padding.add15{padding:15px}.custom.custom-padding.left-15{padding-left:15px}.custom.custom-padding.right-15{padding-right:15px}.custom.custom-padding.top-15{padding-top:15px}.custom.custom-padding.bottom-15{padding-bottom:15px}.custom.custom-padding.add20{padding:20px}.custom.custom-padding.left-20{padding-left:20px}.custom.custom-padding.right-20{padding-right:20px}.custom.custom-padding.top-20{padding-top:20px}.custom.custom-padding.bottom-20{padding-bottom:20px}.custom.custom-padding.add25{padding:25px}.custom.custom-padding.left-25{padding-left:25px}.custom.custom-padding.right-25{padding-right:25px}.custom.custom-padding.top-25{padding-top:25px}.custom.custom-padding.bottom-25{padding-bottom:25px}.custom.custom-padding.add30{padding:30px}.custom.custom-padding.left-30{padding-left:30px}.custom.custom-padding.right-30{padding-right:30px}.custom.custom-padding.top-30{padding-top:30px}.custom.custom-padding.bottom-30{padding-bottom:30px}.custom.custom-padding.add35{padding:35px}.custom.custom-padding.left-35{padding-left:35px}.custom.custom-padding.right-35{padding-right:35px}.custom.custom-padding.top-35{padding-top:35px}.custom.custom-padding.bottom-35{padding-bottom:35px}@media only screen and (min-width: 961px){.custom.custom-padding-responsive.large.add5{padding:5px}.custom.custom-padding-responsive.large.left-5{padding-left:5px}.custom.custom-padding-responsive.large.right-5{padding-right:5px}.custom.custom-padding-responsive.large.top-5{padding-top:5px}.custom.custom-padding-responsive.large.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.large.add10{padding:10px}.custom.custom-padding-responsive.large.left-10{padding-left:10px}.custom.custom-padding-responsive.large.right-10{padding-right:10px}.custom.custom-padding-responsive.large.top-10{padding-top:10px}.custom.custom-padding-responsive.large.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.large.add15{padding:15px}.custom.custom-padding-responsive.large.left-15{padding-left:15px}.custom.custom-padding-responsive.large.right-15{padding-right:15px}.custom.custom-padding-responsive.large.top-15{padding-top:15px}.custom.custom-padding-responsive.large.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.large.add20{padding:20px}.custom.custom-padding-responsive.large.left-20{padding-left:20px}.custom.custom-padding-responsive.large.right-20{padding-right:20px}.custom.custom-padding-responsive.large.top-20{padding-top:20px}.custom.custom-padding-responsive.large.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.large.add25{padding:25px}.custom.custom-padding-responsive.large.left-25{padding-left:25px}.custom.custom-padding-responsive.large.right-25{padding-right:25px}.custom.custom-padding-responsive.large.top-25{padding-top:25px}.custom.custom-padding-responsive.large.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.large.add30{padding:30px}.custom.custom-padding-responsive.large.left-30{padding-left:30px}.custom.custom-padding-responsive.large.right-30{padding-right:30px}.custom.custom-padding-responsive.large.top-30{padding-top:30px}.custom.custom-padding-responsive.large.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.large.add35{padding:35px}.custom.custom-padding-responsive.large.left-35{padding-left:35px}.custom.custom-padding-responsive.large.right-35{padding-right:35px}.custom.custom-padding-responsive.large.top-35{padding-top:35px}.custom.custom-padding-responsive.large.bottom-35{padding-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-padding-responsive.medium.add5{padding:5px}.custom.custom-padding-responsive.medium.left-5{padding-left:5px}.custom.custom-padding-responsive.medium.right-5{padding-right:5px}.custom.custom-padding-responsive.medium.top-5{padding-top:5px}.custom.custom-padding-responsive.medium.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.medium.add10{padding:10px}.custom.custom-padding-responsive.medium.left-10{padding-left:10px}.custom.custom-padding-responsive.medium.right-10{padding-right:10px}.custom.custom-padding-responsive.medium.top-10{padding-top:10px}.custom.custom-padding-responsive.medium.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.medium.add15{padding:15px}.custom.custom-padding-responsive.medium.left-15{padding-left:15px}.custom.custom-padding-responsive.medium.right-15{padding-right:15px}.custom.custom-padding-responsive.medium.top-15{padding-top:15px}.custom.custom-padding-responsive.medium.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.medium.add20{padding:20px}.custom.custom-padding-responsive.medium.left-20{padding-left:20px}.custom.custom-padding-responsive.medium.right-20{padding-right:20px}.custom.custom-padding-responsive.medium.top-20{padding-top:20px}.custom.custom-padding-responsive.medium.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.medium.add25{padding:25px}.custom.custom-padding-responsive.medium.left-25{padding-left:25px}.custom.custom-padding-responsive.medium.right-25{padding-right:25px}.custom.custom-padding-responsive.medium.top-25{padding-top:25px}.custom.custom-padding-responsive.medium.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.medium.add30{padding:30px}.custom.custom-padding-responsive.medium.left-30{padding-left:30px}.custom.custom-padding-responsive.medium.right-30{padding-right:30px}.custom.custom-padding-responsive.medium.top-30{padding-top:30px}.custom.custom-padding-responsive.medium.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.medium.add35{padding:35px}.custom.custom-padding-responsive.medium.left-35{padding-left:35px}.custom.custom-padding-responsive.medium.right-35{padding-right:35px}.custom.custom-padding-responsive.medium.top-35{padding-top:35px}.custom.custom-padding-responsive.medium.bottom-35{padding-bottom:35px}}.custom.custom-padding-responsive.small.add5{padding:5px}.custom.custom-padding-responsive.small.left-5{padding-left:5px}.custom.custom-padding-responsive.small.right-5{padding-right:5px}.custom.custom-padding-responsive.small.top-5{padding-top:5px}.custom.custom-padding-responsive.small.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.small.add10{padding:10px}.custom.custom-padding-responsive.small.left-10{padding-left:10px}.custom.custom-padding-responsive.small.right-10{padding-right:10px}.custom.custom-padding-responsive.small.top-10{padding-top:10px}.custom.custom-padding-responsive.small.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.small.add15{padding:15px}.custom.custom-padding-responsive.small.left-15{padding-left:15px}.custom.custom-padding-responsive.small.right-15{padding-right:15px}.custom.custom-padding-responsive.small.top-15{padding-top:15px}.custom.custom-padding-responsive.small.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.small.add20{padding:20px}.custom.custom-padding-responsive.small.left-20{padding-left:20px}.custom.custom-padding-responsive.small.right-20{padding-right:20px}.custom.custom-padding-responsive.small.top-20{padding-top:20px}.custom.custom-padding-responsive.small.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.small.add25{padding:25px}.custom.custom-padding-responsive.small.left-25{padding-left:25px}.custom.custom-padding-responsive.small.right-25{padding-right:25px}.custom.custom-padding-responsive.small.top-25{padding-top:25px}.custom.custom-padding-responsive.small.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.small.add30{padding:30px}.custom.custom-padding-responsive.small.left-30{padding-left:30px}.custom.custom-padding-responsive.small.right-30{padding-right:30px}.custom.custom-padding-responsive.small.top-30{padding-top:30px}.custom.custom-padding-responsive.small.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.small.add35{padding:35px}.custom.custom-padding-responsive.small.left-35{padding-left:35px}.custom.custom-padding-responsive.small.right-35{padding-right:35px}.custom.custom-padding-responsive.small.top-35{padding-top:35px}.custom.custom-padding-responsive.small.bottom-35{padding-bottom:35px}.custom.custom-margin.add5{margin:5px}.custom.custom-margin.left-5{margin-left:5px}.custom.custom-margin.right-5{margin-right:5px}.custom.custom-margin.top-5{margin-top:5px}.custom.custom-margin.bottom-5{margin-bottom:5px}.custom.custom-margin.add10{margin:10px}.custom.custom-margin.left-10{margin-left:10px}.custom.custom-margin.right-10{margin-right:10px}.custom.custom-margin.top-10{margin-top:10px}.custom.custom-margin.bottom-10{margin-bottom:10px}.custom.custom-margin.add15{margin:15px}.custom.custom-margin.left-15{margin-left:15px}.custom.custom-margin.right-15{margin-right:15px}.custom.custom-margin.top-15{margin-top:15px}.custom.custom-margin.bottom-15{margin-bottom:15px}.custom.custom-margin.add20{margin:20px}.custom.custom-margin.left-20{margin-left:20px}.custom.custom-margin.right-20{margin-right:20px}.custom.custom-margin.top-20{margin-top:20px}.custom.custom-margin.bottom-20{margin-bottom:20px}.custom.custom-margin.add25{margin:25px}.custom.custom-margin.left-25{margin-left:25px}.custom.custom-margin.right-25{margin-right:25px}.custom.custom-margin.top-25{margin-top:25px}.custom.custom-margin.bottom-25{margin-bottom:25px}.custom.custom-margin.add30{margin:30px}.custom.custom-margin.left-30{margin-left:30px}.custom.custom-margin.right-30{margin-right:30px}.custom.custom-margin.top-30{margin-top:30px}.custom.custom-margin.bottom-30{margin-bottom:30px}.custom.custom-margin.add35{margin:35px}.custom.custom-margin.left-35{margin-left:35px}.custom.custom-margin.right-35{margin-right:35px}.custom.custom-margin.top-35{margin-top:35px}.custom.custom-margin.bottom-35{margin-bottom:35px}.custom.custom-child-margin.left-to-right *{margin-left:3px}.custom.custom-child-margin.right-to-left *{margin-right:3px}@media only screen and (min-width: 961px){.custom.custom-margin-responsive.large.add5{margin:5px}.custom.custom-margin-responsive.large.left-5{margin-left:5px}.custom.custom-margin-responsive.large.right-5{margin-right:5px}.custom.custom-margin-responsive.large.top-5{margin-top:5px}.custom.custom-margin-responsive.large.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.large.add10{margin:10px}.custom.custom-margin-responsive.large.left-10{margin-left:10px}.custom.custom-margin-responsive.large.right-10{margin-right:10px}.custom.custom-margin-responsive.large.top-10{margin-top:10px}.custom.custom-margin-responsive.large.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.large.add15{margin:15px}.custom.custom-margin-responsive.large.left-15{margin-left:15px}.custom.custom-margin-responsive.large.right-15{margin-right:15px}.custom.custom-margin-responsive.large.top-15{margin-top:15px}.custom.custom-margin-responsive.large.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.large.add20{margin:20px}.custom.custom-margin-responsive.large.left-20{margin-left:20px}.custom.custom-margin-responsive.large.right-20{margin-right:20px}.custom.custom-margin-responsive.large.top-20{margin-top:20px}.custom.custom-margin-responsive.large.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.large.add25{margin:25px}.custom.custom-margin-responsive.large.left-25{margin-left:25px}.custom.custom-margin-responsive.large.right-25{margin-right:25px}.custom.custom-margin-responsive.large.top-25{margin-top:25px}.custom.custom-margin-responsive.large.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.large.add30{margin:30px}.custom.custom-margin-responsive.large.left-30{margin-left:30px}.custom.custom-margin-responsive.large.right-30{margin-right:30px}.custom.custom-margin-responsive.large.top-30{margin-top:30px}.custom.custom-margin-responsive.large.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.large.add35{margin:35px}.custom.custom-margin-responsive.large.left-35{margin-left:35px}.custom.custom-margin-responsive.large.right-35{margin-right:35px}.custom.custom-margin-responsive.large.top-35{margin-top:35px}.custom.custom-margin-responsive.large.bottom-35{margin-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-margin-responsive.medium.add5{margin:5px}.custom.custom-margin-responsive.medium.left-5{margin-left:5px}.custom.custom-margin-responsive.medium.right-5{margin-right:5px}.custom.custom-margin-responsive.medium.top-5{margin-top:5px}.custom.custom-margin-responsive.medium.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.medium.add10{margin:10px}.custom.custom-margin-responsive.medium.left-10{margin-left:10px}.custom.custom-margin-responsive.medium.right-10{margin-right:10px}.custom.custom-margin-responsive.medium.top-10{margin-top:10px}.custom.custom-margin-responsive.medium.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.medium.add15{margin:15px}.custom.custom-margin-responsive.medium.left-15{margin-left:15px}.custom.custom-margin-responsive.medium.right-15{margin-right:15px}.custom.custom-margin-responsive.medium.top-15{margin-top:15px}.custom.custom-margin-responsive.medium.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.medium.add20{margin:20px}.custom.custom-margin-responsive.medium.left-20{margin-left:20px}.custom.custom-margin-responsive.medium.right-20{margin-right:20px}.custom.custom-margin-responsive.medium.top-20{margin-top:20px}.custom.custom-margin-responsive.medium.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.medium.add25{margin:25px}.custom.custom-margin-responsive.medium.left-25{margin-left:25px}.custom.custom-margin-responsive.medium.right-25{margin-right:25px}.custom.custom-margin-responsive.medium.top-25{margin-top:25px}.custom.custom-margin-responsive.medium.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.medium.add30{margin:30px}.custom.custom-margin-responsive.medium.left-30{margin-left:30px}.custom.custom-margin-responsive.medium.right-30{margin-right:30px}.custom.custom-margin-responsive.medium.top-30{margin-top:30px}.custom.custom-margin-responsive.medium.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.medium.add35{margin:35px}.custom.custom-margin-responsive.medium.left-35{margin-left:35px}.custom.custom-margin-responsive.medium.right-35{margin-right:35px}.custom.custom-margin-responsive.medium.top-35{margin-top:35px}.custom.custom-margin-responsive.medium.bottom-35{margin-bottom:35px}}.custom.custom-margin-responsive.small.add5{margin:5px}.custom.custom-margin-responsive.small.left-5{margin-left:5px}.custom.custom-margin-responsive.small.right-5{margin-right:5px}.custom.custom-margin-responsive.small.top-5{margin-top:5px}.custom.custom-margin-responsive.small.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.small.add10{margin:10px}.custom.custom-margin-responsive.small.left-10{margin-left:10px}.custom.custom-margin-responsive.small.right-10{margin-right:10px}.custom.custom-margin-responsive.small.top-10{margin-top:10px}.custom.custom-margin-responsive.small.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.small.add15{margin:15px}.custom.custom-margin-responsive.small.left-15{margin-left:15px}.custom.custom-margin-responsive.small.right-15{margin-right:15px}.custom.custom-margin-responsive.small.top-15{margin-top:15px}.custom.custom-margin-responsive.small.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.small.add20{margin:20px}.custom.custom-margin-responsive.small.left-20{margin-left:20px}.custom.custom-margin-responsive.small.right-20{margin-right:20px}.custom.custom-margin-responsive.small.top-20{margin-top:20px}.custom.custom-margin-responsive.small.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.small.add25{margin:25px}.custom.custom-margin-responsive.small.left-25{margin-left:25px}.custom.custom-margin-responsive.small.right-25{margin-right:25px}.custom.custom-margin-responsive.small.top-25{margin-top:25px}.custom.custom-margin-responsive.small.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.small.add30{margin:30px}.custom.custom-margin-responsive.small.left-30{margin-left:30px}.custom.custom-margin-responsive.small.right-30{margin-right:30px}.custom.custom-margin-responsive.small.top-30{margin-top:30px}.custom.custom-margin-responsive.small.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.small.add35{margin:35px}.custom.custom-margin-responsive.small.left-35{margin-left:35px}.custom.custom-margin-responsive.small.right-35{margin-right:35px}.custom.custom-margin-responsive.small.top-35{margin-top:35px}.custom.custom-margin-responsive.small.bottom-35{margin-bottom:35px}textarea.form-control.input-text{height:2.4em}.template-files-delete-button{margin:1px 0 0 0;padding:0 5px}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{font-family:'FontAwesome' !important}table.dataTable thead .sorting:after{content:"\f0dc" !important}table.dataTable thead .sorting_asc:after{content:"\f0de" !important}table.dataTable thead .sorting_desc:after{content:"\f0dd" !important}.menubar.sticky{position:fixed !important;top:0 !important;margin-top:0 !important}#edit-question-form{margin-left:-15px;margin-right:-15px}#advanced-question-editor{margin-left:-15px;margin-right:-15px}#advanced-question-editor>div>.container-center>.row{margin-left:-15px;margin-right:-15px}.subquestions-table-wrapper,.answeroptions-table-wrapper{display:block;overflow:auto;margin-bottom:20px}.subquestions-table,.answeroptions-table{margin-bottom:0px}.subquestions-table input.code,.answeroptions-table input.code{min-width:70px}.subquestions-table>tbody>tr>td:first-of-type,.answeroptions-table>tbody>tr>td:first-of-type{padding-left:0}.subquestions-table>tbody>tr>td:last-of-type,.answeroptions-table>tbody>tr>td:last-of-type{padding-right:0}.jcarousel-wrapper{margin:20px auto;position:relative;border:10px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 0 2px #999;-moz-box-shadow:0 0 2px #999;box-shadow:0 0 2px #999}.jcarousel{position:relative;overflow:hidden;width:100%}.jcarousel ul{width:20000em;position:relative;list-style:none;margin:0;padding:0}.jcarousel li{width:200px;float:left;border:1px solid #fff;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jcarousel img{display:block;max-width:100%;height:auto !important}.jcarousel-control-prev,.jcarousel-control-next{position:absolute;top:50%;margin-top:-15px;width:30px;height:30px;text-align:center;background:#4E443C;color:#fff;text-decoration:none;text-shadow:0 0 1px #000;font:24px/27px Arial, sans-serif;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;-webkit-box-shadow:0 0 4px #F0EFE7;-moz-box-shadow:0 0 4px #F0EFE7;box-shadow:0 0 4px #F0EFE7}.jcarousel-control-prev{left:15px}.jcarousel-control-next{right:15px}.jcarousel-pagination{position:absolute;bottom:-40px;left:50%;-webkit-transform:translate(-50%, 0);-ms-transform:translate(-50%, 0);transform:translate(-50%, 0);margin:0}.jcarousel-pagination a{text-decoration:none;display:inline-block;font-size:11px;height:10px;width:10px;line-height:10px;background:#fff;color:#4E443C;border-radius:10px;text-indent:-9999px;margin-right:7px;-webkit-box-shadow:0 0 2px #4E443C;-moz-box-shadow:0 0 2px #4E443C;box-shadow:0 0 2px #4E443C}.jcarousel-pagination a.active{background:#4E443C;color:#fff;opacity:1;-webkit-box-shadow:0 0 2px #F0EFE7;-moz-box-shadow:0 0 2px #F0EFE7;box-shadow:0 0 2px #F0EFE7}.template-miniature{cursor:pointer}.item.inactive{display:none} +.jcarousel-wrapper{margin:20px auto;position:relative;border:10px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 0 2px #999;-moz-box-shadow:0 0 2px #999;box-shadow:0 0 2px #999}.jcarousel{position:relative;overflow:hidden;width:100%}.jcarousel ul{width:20000em;position:relative;list-style:none;margin:0;padding:0}.jcarousel li{width:200px;float:left;border:1px solid #fff;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jcarousel img{display:block;max-width:100%;height:auto !important}.jcarousel-control-prev,.jcarousel-control-next{position:absolute;top:50%;margin-top:-15px;width:30px;height:30px;text-align:center;background:#4E443C;color:#fff;text-decoration:none;text-shadow:0 0 1px #000;font:24px/27px Arial, sans-serif;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;-webkit-box-shadow:0 0 4px #F0EFE7;-moz-box-shadow:0 0 4px #F0EFE7;box-shadow:0 0 4px #F0EFE7}.jcarousel-control-prev{left:15px}.jcarousel-control-next{right:15px}.jcarousel-pagination{position:absolute;bottom:-40px;left:50%;-webkit-transform:translate(-50%, 0);-ms-transform:translate(-50%, 0);transform:translate(-50%, 0);margin:0}.jcarousel-pagination a{text-decoration:none;display:inline-block;font-size:11px;height:10px;width:10px;line-height:10px;background:#fff;color:#4E443C;border-radius:10px;text-indent:-9999px;margin-right:7px;-webkit-box-shadow:0 0 2px #4E443C;-moz-box-shadow:0 0 2px #4E443C;box-shadow:0 0 2px #4E443C}.jcarousel-pagination a.active{background:#4E443C;color:#fff;opacity:1;-webkit-box-shadow:0 0 2px #F0EFE7;-moz-box-shadow:0 0 2px #F0EFE7;box-shadow:0 0 2px #F0EFE7}.template-miniature{cursor:pointer}.item.inactive{display:none}#cpdbatt{min-height:100px}.draggable-container{min-height:300px}#newcreated,#tokenattribute,#csvattribute,#centralattribute{margin-left:0.75%;margin-right:0.75%;margin-bottom:20px}#tokenattribute{margin-left:1.5%}#centralattribute{margin-right:1.5%}#centralattribute .centralatt{padding-bottom:15px}#newcreated .attribute-item input{display:block;margin:2px auto;width:80%}#centralattribute div.centralatt div.token-attribute{margin-top:-5px;min-height:20px}#newcreated,#tokenattribute{height:100%}.heading{height:auto;padding-top:7px;font-weight:bold}div.mappable-attribute-wrapper{width:80%;margin:6px auto;padding:6px}div.attribute-item,.already-mapped-attribute{width:80%;margin:6px auto;padding:4px;text-align:center}#centralattribute .explanation{width:90%;margin:0 auto;text-align:left}#centralattribute .explanation-row{display:table-row}#centralattribute .explanation input,#centralattribute .explanation label{display:table-cell;padding-top:4px;padding-bottom:4px}#centralattribute .explanation label{padding-left:8px}.attribute-item.draggable{cursor:move}div.mappable-attribute-wrapper.target-hover{padding-bottom:27px}div.mappable-attribute-wrapper.paired.target-hover{padding-bottom:4px}div.mappable-attribute-wrapper.paired.ui-state-disabled{opacity:1;filter:alpha(opacity=100)}.draggable-container .attribute-column .ui-draggable-dragging{z-index:100}.centralatt{min-height:100px}#responses-column-filter-modal .checkbox label{vertical-align:text-bottom;white-space:nowrap;overflow-x:hidden}.responses-multiselect-checkboxes{overflow-y:scroll;height:60vh}.responses-column-filter-modal-checkbox-buttons{text-align:left;padding-bottom:15px}#selectable .ui-selecting{background:#8CCE00}#selectable .ui-selected{background:#C1DD7F;color:#000000}#selectable{list-style-type:none;margin:2px;padding:0;width:90%}#selectable li{padding:1em;font-size:1em;height:9px;text-align:center;margin:4px}.ui-icon.exporticon{background-image:url("images/export.gif")}#feedback{font-size:1.4em}#selectableadd .ui-selecting{background:#0066CC}#selectableadd .ui-selected{background:#0066CC;color:white}#selectableadd{list-style-type:none;margin:0;padding:0;width:90%;text-align:center}#selectableadd li{margin:3px;padding:0.4em;font-size:1 em;height:18px;text-align:center}.popupgroup{border:1px solid #DAE5F4;padding:10px;border-radius:3px;margin:8px}.grid-view .table td.button-column,.grid-view .table th.button-column{white-space:nowrap;text-align:initial}.grid-view .table th>.sort-link .caret{right:-10px}.dropdown-menu.larger-dropdown{min-width:240px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>a:after{border-left-color:#555}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}#vue-apps-main-container{min-height:75vh}.fa-stack.halfed{height:1em;width:1em;line-height:1em}.fa-stack-1x.halfed{font-size:0.5em}.fa-1x.halfed{font-size:0.5em}.contain-pulse{display:flex;flex-flow:row wrap;justify-content:center;align-content:bottom;height:3em}.square{background:#0f3e12;border-radius:0.6em;box-sizing:border-box;height:2em;margin:.2em;overflow:hidden;padding:.5em;width:2em}.animate-pulse .square:nth-of-type(1){animation:pulse ease-in-out 1.8s infinite 0.2s}.animate-pulse .square:nth-of-type(2){animation:pulse ease-in-out 1.8s infinite 0.6s}.animate-pulse .square:nth-of-type(3){animation:pulse ease-in-out 1.8s infinite 1.0s}.animate-pulse .square:nth-of-type(4){animation:pulse ease-in-out 1.8s infinite 1.4s}.simpleWrapper{padding:0;margin:0;border:none;display:inline-block}#ls-loading{width:100%;height:100%;top:0;left:0;position:fixed;display:block;opacity:0.7;background-color:#fff;z-index:3501;text-align:center;display:none}#ls-loading-spinner{position:absolute;top:30%}#notif-container{position:fixed;top:5%;left:20%;width:60%;z-index:3500;background:rgba(255,255,255,0.1);min-height:0}.bg-white{background:#fff}.row-button-margin-bottom{margin-bottom:-5px}.row-button-margin-bottom .btn{margin-bottom:5px}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:10px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:10px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-multi .ui-datepicker-group,.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.side-body,.full-page-wrapper{min-height:100%;position:relative;margin-bottom:65px;padding:0}.side-body h3,.pagetitle,.list-surveys h3{position:relative;padding:0.5em;margin-bottom:1em}body{font-size:14px;line-height:1.428571429;margin:0}body .row{margin-right:0;margin-left:0}.jumbotron{text-align:center}.jumbotron.message-box{margin-top:1em}html{font-family:Roboto;font-weight:400;position:relative;min-height:100%}.main-container{padding-bottom:100px}#welcome-jumbotron{padding-top:0;padding-bottom:10px;background-color:transparent}#welcome-jumbotron>img{width:350px}.surveymanagerbar{margin-top:-20px;padding-top:5px}.surveymanagerbar .h3{margin-top:5px;font-weight:300;font-size:1.5em}.surveybar{padding-top:5px;padding-bottom:5px;z-index:1000}#fullpagebar{z-index:100}.tab-content{padding-top:2em}:focus{outline:none}.navbar-brand{font-weight:400}.navbar{border-radius:0 !important}.navbar a{font-weight:400}.navbar .dropdown-menu>li>a{font-weight:400}.navbar .nav-icon-btn>a .label{font-size:10px;padding:0 3px;line-height:15px;position:absolute;display:block;right:5px;top:10px}.lime-icon{display:inline-block;height:1em;width:1em}.mega-dropdown{position:static !important}.mega-dropdown-menu{padding:20px 0;width:100%}.mega-dropdown-menu .dropdown-header{font-size:18px;padding:5px 60px 5px 5px;line-height:30px}.mega-dropdown-menu>li>ul{padding:0;margin:0}.mega-dropdown-menu>li>ul>li{list-style:none}.mega-dropdown-menu>li>ul>li>a{display:block;padding:3px 5px}.mega-dropdown-menu>li ul>li>a:hover{text-decoration:none}.mega-dropdown-menu>li ul>li>a:focus{text-decoration:none}#mainmenu-dropdown{z-index:20002}.footer{z-index:100;position:absolute;bottom:0;display:block;width:100%;height:60px;padding-top:1em}.alert-security-update{margin:0}#update-container{margin-top:10px;z-index:999}#update-container .alert{margin-bottom:5px}#ajaxupdaterLayoutLoading{text-align:center;margin-top:200px;margin-bottom:200px;display:none}.box{border-radius:3px;padding:10px 25px;text-align:right;display:block;margin-top:10px}#info-header{font-size:3em}#info-footer{font-size:2em}.box-icon{border-radius:50%;display:table;height:50px;margin:0 auto;width:50px;margin-top:-31px}.box-icon span{display:table-cell;text-align:center;vertical-align:middle}@keyframes fadein{from{opacity:0}to{opacity:1}}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-ms-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes slidefromtop{from{top:-15px}to{top:0}}@-moz-keyframes slidefromtop{from{top:-15px}to{top:0}}@-webkit-keyframes slidefromtop{from{top:-15px}to{top:0}}@-ms-keyframes slidefromtop{from{top:-15px}to{top:0}}@-o-keyframes slidefromtop{from{top:-15px}to{top:0}}.form-group{margin-bottom:17px}.cke_contents{width:650px}.cke_toolgroup{cursor:pointer;cursor:hand;border-radius:0}.message-box{position:relative;margin-top:20px;animation:slidefromtop 1s}.welcome #lime-logo{animation:fadein 1s}.welcome .panel{position:relative;top:50px;opacity:0}.welcome .panel-body{text-align:center}.welcome .panel-body img{height:4em;margin-bottom:1em}.welcome .login-panel .panel-body img{margin-bottom:0}.alert{position:relative;animation:slidefromtop 1s}@media screen and (min-width: 1280px) and (max-width: 1440px){.welcome .panel{min-height:188px}}#welcomeModal{z-index:20000}@media screen and (min-width: 1280px) and (max-width: 1366px){#add_user_btn{margin-top:1.5em}#user-control-table .form-group label{min-width:80px}}.htmleditorboot{padding-top:2em}#edit-question-body{min-height:1200px}.profile-img-card{margin-top:32px}#profile-img{min-height:80px}@media screen and (min-width: 1280px) and (max-width: 1680px){#profile-img{min-height:0}}.login-panel{margin-top:40px}.login-content{text-align:left;padding:1em}.login-submit{text-align:right}#s2id_loginlang{border:none;padding:0}.ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-bdiv{overflow:hidden}.ui-jqgrid .ui-jqgrid-view .ui-jqgrid-toppager{background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-htable th div{height:auto}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input{margin-top:8px}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input.cbox{margin:4px 0 0}.ui-jqgrid td input.cbox{margin:4px 0 0}.ui-jqgrid tr.ui-row-ltr td{border:none}#gs_completed{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.ui-th-column{margin-top:8px}.info>p{padding-top:10px;text-align:justify}.checkbox label:after{padding-left:4px;padding-top:2px;font-size:9px}.survey-action .panel-body img{height:3em}div.panel.disabled{opacity:0.5;border:none}div.panel.disabled *{opacity:0.5;border:none}div.panel.disabled a{cursor:default}#edit-group .tab-pane{padding:1em}.panel-clickable:hover{cursor:pointer;cursor:hand}.ui-widget-content .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-widget-header .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-search-toolbar th div{min-height:40px}.absolute-wrapper{position:fixed;left:0;width:300px;height:100%}.side-menu{position:absolute;width:300px;padding:0;left:0}.side-menu .navbar{border:none;box-shadow:none}.side-menu .navbar-header{width:100%}.side-menu .navbar-nav li{display:block;width:100%}.side-menu .navbar-nav li a{padding:15px}.side-menu .navbar-nav li a .glyphicon{padding-right:10px}.side-menu .navbar-nav .question-link.active{background-color:transparent;padding:15px 15px 15px 0px;margin-bottom:5px;margin-right:-1px}.side-menu .navbar-nav .question-link.active:hover{text-decoration:none;cursor:default}.side-menu .navbar-nav .question-link{display:block;padding-left:0px}.side-menu .navbar-nav .question-link .question-collapse-title{padding-left:25px}.side-menu #dropdown{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}.side-menu #dropdown li:hover{font-weight:700}.side-menu #dropdown li.active:hover{cursor:default;background-color:transparent;margin-right:-1px}.side-menu #dropdown li.disabled:hover{font-weight:700;background-color:transparent}.side-menu #dropdown .caret{float:right;margin:9px 5px 0}.side-menu #dropdown .indicator{float:right}.side-menu #dropdown .panel-body{padding:0}.side-menu #dropdown .panel-body .navbar-nav{width:100%}.side-menu #dropdown .panel-body .navbar-nav li{padding-left:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li.panel{margin-bottom:0;background-color:transparent;border:none;border-radius:0;box-shadow:none}.side-menu #dropdown .panel-body .navbar-nav li.panel-default{padding-left:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li:last-child{border-bottom:none}.side-menu #dropdown .panel-body .panel-body{margin-left:-15px}.side-menu #dropdown .panel-body .panel>a{margin-left:-20px;padding-left:35px}.side-menu #dropdown .question-group-collapse .caret{float:none;margin-bottom:9px}.side-menu .hide-button{border:0;border-radius:0;padding:15px 18px}.side-menu .brand-name-wrapper{min-height:50px}.side-menu .brand-name-wrapper .navbar-brand{display:block}.side-menu #search{position:relative;z-index:1000}.side-menu #search .panel-body{padding:0}.side-menu #search .panel-body .navbar-form{padding:0;padding-right:50px;width:100%;margin:0;position:relative}.side-menu #search .panel-body .navbar-form .form-group{width:100%;position:relative}.side-menu #search .panel-body .navbar-form input{border:0;border-radius:0;box-shadow:none;width:100%;height:50px}.side-menu #search .panel-body .navbar-form .btn{position:absolute;right:0;top:0;border:0;border-radius:0;padding:15px 18px}.side-menu #explorer-collapse .caret{float:none;margin-bottom:9px}#explorer{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#explorer ul{font-size:0.9em}.dropdownstyle{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#sideMenu{min-height:700px;overflow:hidden}#sideMenu a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown li:hover{width:100%;font-weight:700}#sideMenu #dropdown li:hover>a{width:100%;font-weight:700;border-bottom:none}#sideMenu #dropdown li a[aria-expanded="true"]{width:100%;font-weight:700}#sideMenu #dropdown li .active a:hover{width:100%;font-weight:700}#sideMenu #dropdown li>a:hover{width:100%;font-weight:700}#sideMenu #dropdown #explorer li:hover{font-weight:700}#sideMenu #dropdown #explorer li:hover>a{font-weight:700}#sideMenu #dropdown #explorer li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer li>a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover>a{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li>a:hover{font-weight:700}#sideMenu .navbar-default .navbar-nav>.active>a{background-color:transparent}#sideMenu .side-menu .dropdownlvl1>a:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover>a{font-weight:700}.side-menu-hidden{left:-250px}.side-body{min-height:800px}.side-body-margin{margin-left:70px}.question-group-collapse-title{display:block;padding-left:20px}.question-collapse-title{display:block;padding-left:30px}.main-content-container{max-width:95%;overflow-x:hidden;overflow-y:visible}.ck-content{transition:height 400ms ease-in-out}.ck-blurred{max-height:35vh}.ck-blurred:hover{max-height:initial}.ckedit-nocollapse .ck-blurred{max-height:initial}.ck-focused{max-height:initial}@media (max-width: 768px){.main-content-container{max-width:100%}.side-menu{position:relative;width:100%;height:0;border-right:0}.side-menu .brand-name-wrapper .navbar-brand{display:inline-block}@-moz-keyframes slidein{0%{left:-300px}100%{left:10px}}@-webkit-keyframes slidein{0%{left:-300px}100%{left:10px}}@keyframes slidein{0%{left:-300px}100%{left:10px}}@-moz-keyframes slideout{0%{left:0}100%{left:-300px}}@-webkit-keyframes slideout{0%{left:0}100%{left:-300px}}@keyframes slideout{0%{left:0}100%{left:-300px}}@-moz-keyframes bodyslidein{0%{left:0}100%{left:300px}}@-webkit-keyframes bodyslidein{0%{left:0}100%{left:300px}}@keyframes bodyslidein{0%{left:0}100%{left:300px}}@-moz-keyframes bodyslideout{0%{left:300px}100%{left:0}}@-webkit-keyframes bodyslideout{0%{left:300px}100%{left:0}}@keyframes bodyslideout{0%{left:300px}100%{left:0}}.side-body{margin-left:5px;margin-top:70px;position:relative;animation:bodyslideout 300ms forwards;transform-style:preserve-3d}.body-slide-in{animation:bodyslidein 300ms forwards;transform-style:preserve-3d}.navbar-toggle{border:0;float:left;padding:16px;margin:0;border-radius:0}.navbar-header{position:fixed;top:0;width:100%;z-index:3;background:white;border-bottom:1px solid var(--LS-admintheme-basecolor)}.side-menu-container>.navbar-nav{position:fixed;left:-300px;width:300px;top:43px;height:100%;animation:slideout 300ms forwards;transform-style:preserve-3d}.side-menu-container>.navbar-nav.slide-in{animation:slidein 300ms forwards;transform-style:preserve-3d}#search .panel-body .navbar-form{border-bottom:0}#search .panel-body .navbar-form .form-group{margin:0}#dropdown .panel-body .navbar-nav{margin:0}}.content-right{padding-left:0;padding-right:0}.content-right .col-lg-12{padding-left:0;padding-right:0}.toWhite a:hover{font-weight:700}.col-lg-12.content-right{padding-left:0;padding-right:0}.container-fluid .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff}.container-fluid .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{color:#fff}.btn-success:hover,.btn-danger:hover,.btn-warning:hover,.btn-info:hover{color:#fff}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:23px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#4caf50}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#ff9800}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#e51c23}@media (min-width: 768px){.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:30px}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.radio label,.radio-inline label,.checkbox label,.checkbox-inline label{padding-left:25px}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="radio"],.checkbox-inline input[type="radio"],.radio input[type="checkbox"],.radio-inline input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{margin-left:-25px}input[type="radio"],.radio input[type="radio"],.radio-inline input[type="radio"]{position:relative;margin-top:6px;margin-right:4px;vertical-align:top;border:none;background-color:transparent;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="radio"]:focus,.radio input[type="radio"]:focus,.radio-inline input[type="radio"]:focus{outline:none}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before,input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{content:"";display:block;width:18px;height:18px;border-radius:50%;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before{position:absolute;left:0;top:-3px;background-color:#2196f3;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{position:relative;top:-3px;border:2px solid #666666}input[type="radio"]:checked:before,.radio input[type="radio"]:checked:before,.radio-inline input[type="radio"]:checked:before{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}input[type="radio"]:disabled:checked:before,.radio input[type="radio"]:disabled:checked:before,.radio-inline input[type="radio"]:disabled:checked:before{background-color:#bbbbbb}input[type="radio"]:checked:after,.radio input[type="radio"]:checked:after,.radio-inline input[type="radio"]:checked:after{border-color:#2196f3}input[type="radio"]:disabled:after,.radio input[type="radio"]:disabled:after,.radio-inline input[type="radio"]:disabled:after,input[type="radio"]:disabled:checked:after,.radio input[type="radio"]:disabled:checked:after,.radio-inline input[type="radio"]:disabled:checked:after{border-color:#bbbbbb}input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:relative;border:none;margin-bottom:-4px;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="checkbox"]:focus,.checkbox input[type="checkbox"]:focus,.checkbox-inline input[type="checkbox"]:focus{outline:none}input[type="checkbox"]:focus:after,.checkbox input[type="checkbox"]:focus:after,.checkbox-inline input[type="checkbox"]:focus:after{border-color:#2196f3}input[type="checkbox"]:after,.checkbox input[type="checkbox"]:after,.checkbox-inline input[type="checkbox"]:after{content:"";display:block;width:18px;height:18px;margin-top:-2px;margin-right:5px;border:2px solid #666666;border-radius:2px;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="checkbox"]:checked:before,.checkbox input[type="checkbox"]:checked:before,.checkbox-inline input[type="checkbox"]:checked:before{content:"";position:absolute;top:0;left:6px;display:table;width:6px;height:12px;border:2px solid #fff;border-top-width:0;border-left-width:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}input[type="checkbox"]:indeterminate:before,.checkbox input[type="checkbox"]:indeterminate:before,.checkbox-inline input[type="checkbox"]:indeterminate:before{content:"";position:absolute;top:6px;left:2px;display:table;width:12px;height:0;border:1px solid #fff}input[type="checkbox"]:disabled:after,.checkbox input[type="checkbox"]:disabled:after,.checkbox-inline input[type="checkbox"]:disabled:after{border-color:#bbbbbb}input[type="checkbox"]:disabled:checked:after,.checkbox input[type="checkbox"]:disabled:checked:after,.checkbox-inline input[type="checkbox"]:disabled:checked:after{background-color:#bbbbbb;border-color:transparent}.has-warning input:not([type=checkbox]),.has-warning .form-control,.has-warning input.form-control[readonly],.has-warning input[type=text][readonly],.has-warning [type=text].form-control[readonly],.has-warning input:not([type=checkbox]):focus,.has-warning .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #ff9800;box-shadow:inset 0 -2px 0 #ff9800}.has-error input:not([type=checkbox]),.has-error .form-control,.has-error input.form-control[readonly],.has-error input[type=text][readonly],.has-error [type=text].form-control[readonly],.has-error input:not([type=checkbox]):focus,.has-error .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #e51c23;box-shadow:inset 0 -2px 0 #e51c23}.has-success input:not([type=checkbox]),.has-success .form-control,.has-success input.form-control[readonly],.has-success input[type=text][readonly],.has-success [type=text].form-control[readonly],.has-success input:not([type=checkbox]):focus,.has-success .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #4caf50;box-shadow:inset 0 -2px 0 #4caf50}.ui-widget-content{border:none;background:none;color:#404040}.ui-jqgrid .ui-jqgrid-titlebar{padding:1em}.container-fluid .ui-widget-content .ui-state-default,.container-fluid .ui-jqgrid .ui-jqgrid-bdiv{padding:0.5em;padding-bottom:0}.ui-dialog,.ui-jqdialog,.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-buttons.ui-draggable.ui-resizable{border-radius:4px;padding:1em;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqdialog-titlebar{height:2em;width:100%}.EditTable tr td{padding:1em}.ui-jqdialog-content input.FormElement{padding:.3em}.ui-jqdialog-content input[type="checkbox"].FormElement{padding:0em}.EditTable td select,.EditTable td textarea{display:inline-block;width:auto;vertical-align:middle;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;color:#636363;background-color:#ffffff;border:1px solid #cccccc;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.EditTable td input,.EditTable td select,.EditTable td textarea{margin:0}input[type="text"],input[type="password"],.ui-autocomplete-input,textarea,.uneditable-input{display:inline-block;font-size:14px;line-height:18px;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input:focus,textarea:focus{outline:0;border-color:rgba(82,168,236,0.8);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6)}#displayparticipants_firstname,#displayparticipants_lastname,#displayparticipants_owner_uid{padding-left:40px}#displayparticipants_language{padding-left:50px}#jqgh_displayparticipants_email{padding-left:140px}#displayparticipants_survey{padding-left:20px}.navtable{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqgrid-title{padding:1em 0em 1em 1em;font-style:italic;font-weight:700}.ui-pg-button{padding:0.4em}.ui-pg-button:hover{cursor:pointer}.ui-state-disabled:hover{cursor:default}.ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all .ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all{width:100%;overflow:hidden;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.modal-22{position:absolute;width:600px}.modal-22 .ui-jqdialog-titlebar .ui-jqdialog-title{width:80%}.modal-22 .ui-jqdialog-content{padding:1em}.ui-dialog-titlebar-close{border:1px solid transparent;border-radius:4px;float:right;color:#333;background-color:#fff;border-color:#ccc;display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;-webkit-appearance:button;cursor:pointer;overflow:visible;margin:0;font:normal normal normal 14px/1 FontAwesome}.ui-dialog-titlebar-close:before{content:"\f00d"}.em-expression{font-weight:bold}.data-entry-tbl tr.odd td,.data-entry-tbl tr.even td{padding:20px 0 20px 0}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{position:absolute;right:1em;top:10px}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{cursor:pointer}#carousel-example-generic{margin-left:20px}#carousel-example-generic .carousel-control{font-size:1em;top:-80px}#carousel-example-generic .left.carousel-control{left:-20px}#carousel-example-generic .right.carousel-control{right:-20px}#carousel-example-generic .panel-title{text-align:center;padding-top:0px}#carousel-example-generic .carousel-inner img{margin:auto;top:9px;position:relative}#carousel-example-generic .selectTemplate{display:inline-block;position:relative;left:0px;top:320px}#carousel-example-generic .carousel-caption{width:100%;left:0;top:0px;padding-top:0px}#carousel-example-generic,#carousel-example-generic .carousel-inner{min-height:150px}#carousel-example-generic .carousel-indicators{top:370px;width:80%;left:39%}#carousel-example-generic .carousel-indicators li{margin:0px;width:8px;height:8px}.side-body #carousel-example-generic h3{border:none}#systemoverview{margin:1em 0 1em 0}#systemoverview .info div{font-size:14px;margin-top:10px;margin-bottom:10px;font-weight:500;line-height:1.1;color:inherit;text-align:center}.preloader{position:absolute;top:50%;left:50%;font-size:20px;display:block;width:3.75em;height:4.25em;margin-left:-1.875em;margin-top:-2.125em;transform-origin:center center;transform:rotateY(180deg) rotateZ(-60deg)}.preloader .slice{border-top:1.125em solid transparent;border-right:none;border-bottom:1em solid transparent;border-left:1.875em solid #f7484e;position:absolute;top:0px;left:50%;transform-origin:left bottom;border-radius:3px 3px 0 0}.preloader .slice:nth-child(1){transform:rotateZ(60deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.82s preload-hide-1 both 1}.preloader .slice:nth-child(2){transform:rotateZ(120deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.74s preload-hide-2 both 1}.preloader .slice:nth-child(3){transform:rotateZ(180deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.66s preload-hide-3 both 1}.preloader .slice:nth-child(4){transform:rotateZ(240deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.58s preload-hide-4 both 1}.preloader .slice:nth-child(5){transform:rotateZ(300deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.5s preload-hide-5 both 1}.preloader .slice:nth-child(6){transform:rotateZ(360deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.42s preload-hide-6 both 1}.preloader.loading{animation:2s preload-flip steps(2) infinite both}.preloader.loading .slice:nth-child(1){transform:rotateZ(60deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-1 linear infinite both}.preloader.loading .slice:nth-child(2){transform:rotateZ(120deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-2 linear infinite both}.preloader.loading .slice:nth-child(3){transform:rotateZ(180deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-3 linear infinite both}.preloader.loading .slice:nth-child(4){transform:rotateZ(240deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-4 linear infinite both}.preloader.loading .slice:nth-child(5){transform:rotateZ(300deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-5 linear infinite both}.preloader.loading .slice:nth-child(6){transform:rotateZ(360deg) rotateY(90deg) rotateX(0);animation:2s preload-cycle-6 linear infinite both}#ajaxContainerLoading,.ajaxLoading{height:130px;text-align:center;margin-top:70px;margin-bottom:100px;display:none}#comfortUpdateIcon{height:1em;margin-right:0.5em}#comfortUpdateGeneralWrap h3.maintitle{background-color:transparent}#comfortUpdateGeneralWrap .on{font-weight:bold;font-size:1em;padding-left:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap .on span{display:block;padding:0.1em;padding-left:0.5em;width:40%}#comfortUpdateGeneralWrap .off{font-size:0.9em;padding-left:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap #welcomeMessage,#comfortUpdateGeneralWrap #btn-container{border-right:1px solid #EEE}#comfortUpdateGeneralWrap #key-actions{padding-left:1em}#update-alert.unstable-update{background-color:#fff;border:1px solid #A0352F;color:#A0352F;margin-top:1em}html body .nav-tabs>li.active>a,html body .nav-tabs>li.active>a:hover,html body .nav-tabs>li.active>a:focus{border-bottom-color:transparent;cursor:default}.answertable.table td{vertical-align:middle}.btnaddanswer:hover,.btndelanswer:hover{cursor:pointer}.jumbotron p{font-weight:300}span[data-tooltip]{display:inline-block}.glyphicon-move:hover{cursor:pointer}.answertable .glyphicon-pencil{margin-left:3px}#statisticsview .panel{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}#explorer-collapse{border-bottom:none}#explorer-collapse:hover,#sideMenu #dropdown li a#explorer-collapse[aria-expanded="true"],#sideMenu #dropdown li a.question-group-collapse[aria-expanded="true"]{width:auto}#sideMenu #dropdown #explorer li#questionexplorer-group-container,#sideMenu #dropdown li#questionexplorer-group-container>a{line-height:1.4}#sideMenu #dropdown #explorer li#questionexplorer-group-container:hover,#sideMenu #dropdown li#questionexplorer-group-container:hover>a{background-color:#fafafa;font-weight:400;line-height:1.4}.explorer-group-title{margin-top:1em;padding:0em 0 1em 0}.explorer-group-title a.explorer-group,.question-collapse-title{color:#163c19}#item-container,#jcarousel-wrapper-container{width:300px}#item-container h4{margin-bottom:30px}.selectTemplate{margin-top:10px}.imgSelectTemplate{cursor:pointer}.template-img{padding:1em}#additional_languages{min-width:200px}#available_languages{min-width:200px}.modal{top:50px}#tokensidemenu{border-top:1px solid #e3e3e3}.question-item{padding:1em;margin:1em 0 1em 0;cursor:pointer}.placeholder{padding:1em;margin:1em 0 1em 0}.no-gutter>[class*='col-']{padding-right:0;padding-left:0}.inputbuttons{width:120px}.inputbuttons-square{width:20px;height:16px;float:left}.jqgrid-tokens-number-padding{padding-right:4px}.tooltip{position:fixed}.scrolling-wrapper{overflow-x:scroll;overflow-y:hidden}#search{display:none;overflow-y:auto}iframe#dialog{width:100%;height:100%}.ui-jqgrid,.ui-jqgrid-view,.ui-jqgrid-titlebar,.ui-jqgrid-toppager,.ui-jqgrid-pager{min-width:100%;max-width:100%;margin-right:0;margin-left:0;box-sizing:border-box}#pager{position:relative}.ui-sortable-placeholder{color:#f00;background-color:#0f0;border:solid black 5px}.tokenatt-arrow{position:absolute;right:-0.5em}.csvatt-arrow{position:absolute;right:-0.5em;top:1em}.no-padding{padding:0}.droppable-new,.droppable-csv{min-height:40px;height:100%}#labelsetpreview{overflow-x:hidden}#labelsetbrowserModal .modal-dialog{width:80%}.question-filter-container{border:1px solid #efefef;padding:2em;margin:0;min-width:33%;max-width:100%}td.subquestion-actions span:hover{cursor:pointer}.template-img{padding-top:0}.full-page-wrapper .handleAccordion{display:none}div#gview_displayresponses th#displayresponses_cb{width:35px}.detailbrowsetable tr th{width:50%}.lead{font-weight:300}.time-statistics-row-buttons,.nowrap{white-space:nowrap}.time-statistics-table{overflow:auto}.mixed{opacity:0.4}#sidemenu-home{padding-left:15px}#quick-menu-container{position:absolute;width:50px;right:0;top:50px}.quick-icon-wrapper{padding:15px;height:50px}#quick-menu-container .glyphicon{font-size:18px}#quick-menu-container .navbar-brand{padding:0}.panel-group .panel{overflow:visible}a.explorer-group:hover,a.explorer-group:focus{text-decoration:none}.question-explorer-question{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis}.question-explorer-group-name{display:inline-block;max-width:140px;overflow:hidden;position:relative;top:5px;text-overflow:ellipsis}.question-explorer-add-question{position:relative;top:5px}.explorer-group-title a.disabled{opacity:0.5}.btn.readonly,.btn.readonly:hover{cursor:not-allowed;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;border:1px solid #cccccc}#displayResponsesContainer .ui-jqgrid-bdiv,#gbox_displaytokens .ui-jqgrid-bdiv{overflow:hidden}h1,.h1{font-size:24px}h2,.h2{font-size:22px}h3,.h3{font-size:20px}.statisticstable{word-wrap:break-word}.summary-container,.summary,#massive-action-container,#surveyListActions,.listActions,.pager-container ls-ba .pager,.pager-container ls-ba .pager .pagination{margin:0;margin-bottom:20px}.summary-container{text-align:right}#massive-action-container,#surveyListActions,.listActions{padding-left:0px;text-align:left}.push-grid-pager{min-height:25em}.has-link{cursor:pointer}.has-link a:hover{text-decoration:none}.has-link a{color:black}.hoverAction .table-striped>tbody>tr:hover>td{background-color:transparent}.hoverAction .table-striped>tbody>tr:hover>td>a:not(.btn){color:white}.ui-priority-secondary{background-color:#f5f5f5}#token-grid .table .filters>td .filter-container{padding:0px}#token-grid table.table{width:none;max-width:none}#token-grid table thead tr #action{min-width:150px}#token-grid .filter-container{min-width:50px}#token-grid table tr.odd .blank_button{border-color:#f9f9f9;background-color:#f9f9f9;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}#token-grid table tr .blank_button{border-color:white;background-color:white}#token-grid table tr.selected .blank_button{border-color:#eee;background-color:#eee}#token-grid .name{min-width:150px}#tokenListPager{position:relative}.blank_button span{max-width:12px}#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-4,#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-8{padding:0}div[id^="alertmod_"]{display:none}.ui-helper-clearfix{min-height:0}.ui-dialog .ui-dialog-buttonpane{background-image:none;border-width:1px 0 0;margin-top:0.5em;padding:0.3em 1em 0.5em 0.4em;text-align:left}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-helper-clearfix::after{clear:both}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.yiiLog{margin-bottom:70px}table#responsedetail tr td{max-width:100px;word-wrap:break-word}.in-title{position:relative;top:-65px;right:15px}.input-group-addon{padding:5px 12px}.multiselect-container>li>a>label>input[type="checkbox"]{margin-left:0}.notification-list{top:100%;left:0;z-index:1000;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;border-radius:4px;background-clip:padding-box;overflow-y:auto}.notification-list>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;white-space:nowrap}.notification-list>li>a:hover,.notification-list>li>a:focus{text-decoration:none}.notification-list>.active>a,.notification-list>.active>a:hover,.notification-list>.active>a:focus{text-decoration:none;outline:0}.notification-list>.disabled>a:hover,.notification-list>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}#notification-outer-ul{height:400px;width:400px}#notification-inner-ul{height:340px;width:390px}.select2-container--bootstrap .select2-selection{font-family:Roboto !important}#responses-grid .table-condensed.upload-question{margin-bottom:0;background-color:inherit}#responses-grid .filter-container{min-width:6em}.edit-participant-modal-body{max-height:500px;overflow-y:auto}.scenario-heading{padding:0}.scenario-heading .delete-scenario-form{padding-top:6px}.condition-header-button{margin-top:-10px;margin-right:10px}.margin-left{margin-left:5px}.conditions-table{margin-bottom:0}.condition-and-or-or{margin-left:20px}#editconditions .tab-content,#quick-add-conditions-form .tab-content{padding-top:0}#quick-add-condition-modal .modal-dialog{width:800px}#login-panel{max-width:400px;margin-left:auto;margin-right:auto}.row-eq-height{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:30px}.welcome .panel{height:110%}.welcome .panel-body{padding:0px}.welcome .panel-heading{height:25%;display:flex;align-items:center;justify-content:center}.welcome .panel-title{font-weight:500}.welcome .panel-body{height:75%;width:100%}.welcome .panel-body .panel-body-ico,.welcome .panel-body .panel-body-link{width:100%;display:flex;align-items:center;justify-content:center}.welcome .panel-body .panel-body-ico{height:70%}.welcome .panel-body .panel-body-link{height:30%}input[type="file"].form-control{border:none;padding-left:0px}#insertmethod-container{display:none}@media print{@page{size:A4 portrait;margin-left:1.0cm;margin-right:1.5cm;margin-top:1.2cm;margin-bottom:1cm;overflow:visible}*{overflow:visible !important}html,body{margin:0;max-width:0%}body{text-align:left;margin:0;padding:0;overflow:visible;min-width:19.0cm !important;min-height:27.7cm;width:100% !important;height:100%}body.onStatistics a:not(.printable),body.onStatistics p:not(.printable),body.onStatistics button:not(.printable),body.onStatistics nav:not(.printable),body.onStatistics form:not(.printable),body.onStatistics footer:not(.printable),body.onStatistics h1:not(.printable),body.onStatistics h2:not(.printable),body.onStatistics h3:not(.printable),body.onStatistics h4:not(.printable),body.onStatistics h5:not(.printable),body.onStatistics .jumbotron,body.onStatistics .menubar,body.onStatistics>div:not(#vue-apps-main-container),body.onStatistics div#vue-apps-main-container>div:not(#pjax-content),body.onStatistics div#vue-apps-main-container>div#pjax-content>div:not(#in_survey_common),body.onStatistics div#in_survey_common>div:not(#statisticsview){display:none !important;visibility:hidden !important;overflow:hidden !important;padding:0;position:absolute;left:-1000px;top:-1000px;margin:0 !important;width:0px !important}body.onStatistics div.row{display:block !important;position:static}body.onStatistics div[class^="col-"]{display:block !important;float:none !important;position:static}body.onStatistics>div#vue-apps-main-container,body.onStatistics div#in_survey_common,body.onStatistics>div#vue-apps-main-container>div#pjax-content,body.onStatistics #statisticsview{display:block;position:static;width:99% !important;max-width:95% !important;min-width:19.6cm !important;min-height:29.7cm !important;height:100% !important;overflow:visible;page-break-inside:auto;break-inside:auto}body.onStatistics #statisticsview div,body.onStatistics #statisticsview table{position:static}body.onStatistics #statisticsview div:not(#statsContainerLoading){width:99% !important;max-width:100% !important;float:none !important;display:block}body.onStatistics #statisticsview a.printable,body.onStatistics #statisticsview p.printable,body.onStatistics #statisticsview span.printable,body.onStatistics #statisticsview table.printable,body.onStatistics #statisticsview table.statisticstable,body.onStatistics #statisticsview h1.printable,body.onStatistics #statisticsview h2.printable,body.onStatistics #statisticsview h3.printable,body.onStatistics #statisticsview h4.printable,body.onStatistics #statisticsview h5.printable{width:95% !important;max-width:100%;float:none;margin-left:0 !important;margin-right:0 !important;margin-top:1cm;margin-bottom:1cm;position:static}body.onStatistics div.printable{position:static;page-break-after:auto;break-after:auto;page-break-inside:avoid;break-inside:avoid;margin-left:0 !important;margin-right:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics div.printable table{position:static;page-break-inside:avoid;break-inside:avoid;margin-left:0 !important;margin-right:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics table.printable thead,body.onStatistics table.printable tbody,body.onStatistics table.printable tr{width:100% !important;margin:0 !important;padding:0 !important}body.onStatistics table.printable *{page-break-after:avoid;break-after:avoid;page-break-before:avoid;break-before:avoid;page-break-inside:avoid;break-inside:avoid}body.onStatistics .side-body{max-width:100%;margin:0 !important;padding:0 !important}body.onStatistics .side-menu{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important;margin-left:0 px !important}body.onStatistics .absolute-wrapper{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important}}.currentQuestionTypeImageContainer img{max-width:100%}#accordion-container .panel-heading>a{width:100%;display:block}#accordion_questionTypeSelector .panel-title>a{width:100%;display:block}.small-screens-menus{padding-left:28px}.custom.custom-no-padding{padding:0}.custom.custom-no-margin{padding:0}.custom.custom-padding.add5{padding:5px}.custom.custom-padding.left-5{padding-left:5px}.custom.custom-padding.right-5{padding-right:5px}.custom.custom-padding.top-5{padding-top:5px}.custom.custom-padding.bottom-5{padding-bottom:5px}.custom.custom-padding.add10{padding:10px}.custom.custom-padding.left-10{padding-left:10px}.custom.custom-padding.right-10{padding-right:10px}.custom.custom-padding.top-10{padding-top:10px}.custom.custom-padding.bottom-10{padding-bottom:10px}.custom.custom-padding.add15{padding:15px}.custom.custom-padding.left-15{padding-left:15px}.custom.custom-padding.right-15{padding-right:15px}.custom.custom-padding.top-15{padding-top:15px}.custom.custom-padding.bottom-15{padding-bottom:15px}.custom.custom-padding.add20{padding:20px}.custom.custom-padding.left-20{padding-left:20px}.custom.custom-padding.right-20{padding-right:20px}.custom.custom-padding.top-20{padding-top:20px}.custom.custom-padding.bottom-20{padding-bottom:20px}.custom.custom-padding.add25{padding:25px}.custom.custom-padding.left-25{padding-left:25px}.custom.custom-padding.right-25{padding-right:25px}.custom.custom-padding.top-25{padding-top:25px}.custom.custom-padding.bottom-25{padding-bottom:25px}.custom.custom-padding.add30{padding:30px}.custom.custom-padding.left-30{padding-left:30px}.custom.custom-padding.right-30{padding-right:30px}.custom.custom-padding.top-30{padding-top:30px}.custom.custom-padding.bottom-30{padding-bottom:30px}.custom.custom-padding.add35{padding:35px}.custom.custom-padding.left-35{padding-left:35px}.custom.custom-padding.right-35{padding-right:35px}.custom.custom-padding.top-35{padding-top:35px}.custom.custom-padding.bottom-35{padding-bottom:35px}@media only screen and (min-width: 961px){.custom.custom-padding-responsive.large.add5{padding:5px}.custom.custom-padding-responsive.large.left-5{padding-left:5px}.custom.custom-padding-responsive.large.right-5{padding-right:5px}.custom.custom-padding-responsive.large.top-5{padding-top:5px}.custom.custom-padding-responsive.large.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.large.add10{padding:10px}.custom.custom-padding-responsive.large.left-10{padding-left:10px}.custom.custom-padding-responsive.large.right-10{padding-right:10px}.custom.custom-padding-responsive.large.top-10{padding-top:10px}.custom.custom-padding-responsive.large.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.large.add15{padding:15px}.custom.custom-padding-responsive.large.left-15{padding-left:15px}.custom.custom-padding-responsive.large.right-15{padding-right:15px}.custom.custom-padding-responsive.large.top-15{padding-top:15px}.custom.custom-padding-responsive.large.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.large.add20{padding:20px}.custom.custom-padding-responsive.large.left-20{padding-left:20px}.custom.custom-padding-responsive.large.right-20{padding-right:20px}.custom.custom-padding-responsive.large.top-20{padding-top:20px}.custom.custom-padding-responsive.large.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.large.add25{padding:25px}.custom.custom-padding-responsive.large.left-25{padding-left:25px}.custom.custom-padding-responsive.large.right-25{padding-right:25px}.custom.custom-padding-responsive.large.top-25{padding-top:25px}.custom.custom-padding-responsive.large.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.large.add30{padding:30px}.custom.custom-padding-responsive.large.left-30{padding-left:30px}.custom.custom-padding-responsive.large.right-30{padding-right:30px}.custom.custom-padding-responsive.large.top-30{padding-top:30px}.custom.custom-padding-responsive.large.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.large.add35{padding:35px}.custom.custom-padding-responsive.large.left-35{padding-left:35px}.custom.custom-padding-responsive.large.right-35{padding-right:35px}.custom.custom-padding-responsive.large.top-35{padding-top:35px}.custom.custom-padding-responsive.large.bottom-35{padding-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-padding-responsive.medium.add5{padding:5px}.custom.custom-padding-responsive.medium.left-5{padding-left:5px}.custom.custom-padding-responsive.medium.right-5{padding-right:5px}.custom.custom-padding-responsive.medium.top-5{padding-top:5px}.custom.custom-padding-responsive.medium.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.medium.add10{padding:10px}.custom.custom-padding-responsive.medium.left-10{padding-left:10px}.custom.custom-padding-responsive.medium.right-10{padding-right:10px}.custom.custom-padding-responsive.medium.top-10{padding-top:10px}.custom.custom-padding-responsive.medium.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.medium.add15{padding:15px}.custom.custom-padding-responsive.medium.left-15{padding-left:15px}.custom.custom-padding-responsive.medium.right-15{padding-right:15px}.custom.custom-padding-responsive.medium.top-15{padding-top:15px}.custom.custom-padding-responsive.medium.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.medium.add20{padding:20px}.custom.custom-padding-responsive.medium.left-20{padding-left:20px}.custom.custom-padding-responsive.medium.right-20{padding-right:20px}.custom.custom-padding-responsive.medium.top-20{padding-top:20px}.custom.custom-padding-responsive.medium.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.medium.add25{padding:25px}.custom.custom-padding-responsive.medium.left-25{padding-left:25px}.custom.custom-padding-responsive.medium.right-25{padding-right:25px}.custom.custom-padding-responsive.medium.top-25{padding-top:25px}.custom.custom-padding-responsive.medium.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.medium.add30{padding:30px}.custom.custom-padding-responsive.medium.left-30{padding-left:30px}.custom.custom-padding-responsive.medium.right-30{padding-right:30px}.custom.custom-padding-responsive.medium.top-30{padding-top:30px}.custom.custom-padding-responsive.medium.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.medium.add35{padding:35px}.custom.custom-padding-responsive.medium.left-35{padding-left:35px}.custom.custom-padding-responsive.medium.right-35{padding-right:35px}.custom.custom-padding-responsive.medium.top-35{padding-top:35px}.custom.custom-padding-responsive.medium.bottom-35{padding-bottom:35px}}.custom.custom-padding-responsive.small.add5{padding:5px}.custom.custom-padding-responsive.small.left-5{padding-left:5px}.custom.custom-padding-responsive.small.right-5{padding-right:5px}.custom.custom-padding-responsive.small.top-5{padding-top:5px}.custom.custom-padding-responsive.small.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.small.add10{padding:10px}.custom.custom-padding-responsive.small.left-10{padding-left:10px}.custom.custom-padding-responsive.small.right-10{padding-right:10px}.custom.custom-padding-responsive.small.top-10{padding-top:10px}.custom.custom-padding-responsive.small.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.small.add15{padding:15px}.custom.custom-padding-responsive.small.left-15{padding-left:15px}.custom.custom-padding-responsive.small.right-15{padding-right:15px}.custom.custom-padding-responsive.small.top-15{padding-top:15px}.custom.custom-padding-responsive.small.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.small.add20{padding:20px}.custom.custom-padding-responsive.small.left-20{padding-left:20px}.custom.custom-padding-responsive.small.right-20{padding-right:20px}.custom.custom-padding-responsive.small.top-20{padding-top:20px}.custom.custom-padding-responsive.small.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.small.add25{padding:25px}.custom.custom-padding-responsive.small.left-25{padding-left:25px}.custom.custom-padding-responsive.small.right-25{padding-right:25px}.custom.custom-padding-responsive.small.top-25{padding-top:25px}.custom.custom-padding-responsive.small.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.small.add30{padding:30px}.custom.custom-padding-responsive.small.left-30{padding-left:30px}.custom.custom-padding-responsive.small.right-30{padding-right:30px}.custom.custom-padding-responsive.small.top-30{padding-top:30px}.custom.custom-padding-responsive.small.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.small.add35{padding:35px}.custom.custom-padding-responsive.small.left-35{padding-left:35px}.custom.custom-padding-responsive.small.right-35{padding-right:35px}.custom.custom-padding-responsive.small.top-35{padding-top:35px}.custom.custom-padding-responsive.small.bottom-35{padding-bottom:35px}.custom.custom-margin.add5{margin:5px}.custom.custom-margin.left-5{margin-left:5px}.custom.custom-margin.right-5{margin-right:5px}.custom.custom-margin.top-5{margin-top:5px}.custom.custom-margin.bottom-5{margin-bottom:5px}.custom.custom-margin.add10{margin:10px}.custom.custom-margin.left-10{margin-left:10px}.custom.custom-margin.right-10{margin-right:10px}.custom.custom-margin.top-10{margin-top:10px}.custom.custom-margin.bottom-10{margin-bottom:10px}.custom.custom-margin.add15{margin:15px}.custom.custom-margin.left-15{margin-left:15px}.custom.custom-margin.right-15{margin-right:15px}.custom.custom-margin.top-15{margin-top:15px}.custom.custom-margin.bottom-15{margin-bottom:15px}.custom.custom-margin.add20{margin:20px}.custom.custom-margin.left-20{margin-left:20px}.custom.custom-margin.right-20{margin-right:20px}.custom.custom-margin.top-20{margin-top:20px}.custom.custom-margin.bottom-20{margin-bottom:20px}.custom.custom-margin.add25{margin:25px}.custom.custom-margin.left-25{margin-left:25px}.custom.custom-margin.right-25{margin-right:25px}.custom.custom-margin.top-25{margin-top:25px}.custom.custom-margin.bottom-25{margin-bottom:25px}.custom.custom-margin.add30{margin:30px}.custom.custom-margin.left-30{margin-left:30px}.custom.custom-margin.right-30{margin-right:30px}.custom.custom-margin.top-30{margin-top:30px}.custom.custom-margin.bottom-30{margin-bottom:30px}.custom.custom-margin.add35{margin:35px}.custom.custom-margin.left-35{margin-left:35px}.custom.custom-margin.right-35{margin-right:35px}.custom.custom-margin.top-35{margin-top:35px}.custom.custom-margin.bottom-35{margin-bottom:35px}.custom.custom-child-margin.left-to-right *{margin-left:3px}.custom.custom-child-margin.right-to-left *{margin-right:3px}@media only screen and (min-width: 961px){.custom.custom-margin-responsive.large.add5{margin:5px}.custom.custom-margin-responsive.large.left-5{margin-left:5px}.custom.custom-margin-responsive.large.right-5{margin-right:5px}.custom.custom-margin-responsive.large.top-5{margin-top:5px}.custom.custom-margin-responsive.large.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.large.add10{margin:10px}.custom.custom-margin-responsive.large.left-10{margin-left:10px}.custom.custom-margin-responsive.large.right-10{margin-right:10px}.custom.custom-margin-responsive.large.top-10{margin-top:10px}.custom.custom-margin-responsive.large.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.large.add15{margin:15px}.custom.custom-margin-responsive.large.left-15{margin-left:15px}.custom.custom-margin-responsive.large.right-15{margin-right:15px}.custom.custom-margin-responsive.large.top-15{margin-top:15px}.custom.custom-margin-responsive.large.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.large.add20{margin:20px}.custom.custom-margin-responsive.large.left-20{margin-left:20px}.custom.custom-margin-responsive.large.right-20{margin-right:20px}.custom.custom-margin-responsive.large.top-20{margin-top:20px}.custom.custom-margin-responsive.large.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.large.add25{margin:25px}.custom.custom-margin-responsive.large.left-25{margin-left:25px}.custom.custom-margin-responsive.large.right-25{margin-right:25px}.custom.custom-margin-responsive.large.top-25{margin-top:25px}.custom.custom-margin-responsive.large.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.large.add30{margin:30px}.custom.custom-margin-responsive.large.left-30{margin-left:30px}.custom.custom-margin-responsive.large.right-30{margin-right:30px}.custom.custom-margin-responsive.large.top-30{margin-top:30px}.custom.custom-margin-responsive.large.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.large.add35{margin:35px}.custom.custom-margin-responsive.large.left-35{margin-left:35px}.custom.custom-margin-responsive.large.right-35{margin-right:35px}.custom.custom-margin-responsive.large.top-35{margin-top:35px}.custom.custom-margin-responsive.large.bottom-35{margin-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-margin-responsive.medium.add5{margin:5px}.custom.custom-margin-responsive.medium.left-5{margin-left:5px}.custom.custom-margin-responsive.medium.right-5{margin-right:5px}.custom.custom-margin-responsive.medium.top-5{margin-top:5px}.custom.custom-margin-responsive.medium.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.medium.add10{margin:10px}.custom.custom-margin-responsive.medium.left-10{margin-left:10px}.custom.custom-margin-responsive.medium.right-10{margin-right:10px}.custom.custom-margin-responsive.medium.top-10{margin-top:10px}.custom.custom-margin-responsive.medium.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.medium.add15{margin:15px}.custom.custom-margin-responsive.medium.left-15{margin-left:15px}.custom.custom-margin-responsive.medium.right-15{margin-right:15px}.custom.custom-margin-responsive.medium.top-15{margin-top:15px}.custom.custom-margin-responsive.medium.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.medium.add20{margin:20px}.custom.custom-margin-responsive.medium.left-20{margin-left:20px}.custom.custom-margin-responsive.medium.right-20{margin-right:20px}.custom.custom-margin-responsive.medium.top-20{margin-top:20px}.custom.custom-margin-responsive.medium.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.medium.add25{margin:25px}.custom.custom-margin-responsive.medium.left-25{margin-left:25px}.custom.custom-margin-responsive.medium.right-25{margin-right:25px}.custom.custom-margin-responsive.medium.top-25{margin-top:25px}.custom.custom-margin-responsive.medium.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.medium.add30{margin:30px}.custom.custom-margin-responsive.medium.left-30{margin-left:30px}.custom.custom-margin-responsive.medium.right-30{margin-right:30px}.custom.custom-margin-responsive.medium.top-30{margin-top:30px}.custom.custom-margin-responsive.medium.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.medium.add35{margin:35px}.custom.custom-margin-responsive.medium.left-35{margin-left:35px}.custom.custom-margin-responsive.medium.right-35{margin-right:35px}.custom.custom-margin-responsive.medium.top-35{margin-top:35px}.custom.custom-margin-responsive.medium.bottom-35{margin-bottom:35px}}.custom.custom-margin-responsive.small.add5{margin:5px}.custom.custom-margin-responsive.small.left-5{margin-left:5px}.custom.custom-margin-responsive.small.right-5{margin-right:5px}.custom.custom-margin-responsive.small.top-5{margin-top:5px}.custom.custom-margin-responsive.small.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.small.add10{margin:10px}.custom.custom-margin-responsive.small.left-10{margin-left:10px}.custom.custom-margin-responsive.small.right-10{margin-right:10px}.custom.custom-margin-responsive.small.top-10{margin-top:10px}.custom.custom-margin-responsive.small.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.small.add15{margin:15px}.custom.custom-margin-responsive.small.left-15{margin-left:15px}.custom.custom-margin-responsive.small.right-15{margin-right:15px}.custom.custom-margin-responsive.small.top-15{margin-top:15px}.custom.custom-margin-responsive.small.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.small.add20{margin:20px}.custom.custom-margin-responsive.small.left-20{margin-left:20px}.custom.custom-margin-responsive.small.right-20{margin-right:20px}.custom.custom-margin-responsive.small.top-20{margin-top:20px}.custom.custom-margin-responsive.small.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.small.add25{margin:25px}.custom.custom-margin-responsive.small.left-25{margin-left:25px}.custom.custom-margin-responsive.small.right-25{margin-right:25px}.custom.custom-margin-responsive.small.top-25{margin-top:25px}.custom.custom-margin-responsive.small.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.small.add30{margin:30px}.custom.custom-margin-responsive.small.left-30{margin-left:30px}.custom.custom-margin-responsive.small.right-30{margin-right:30px}.custom.custom-margin-responsive.small.top-30{margin-top:30px}.custom.custom-margin-responsive.small.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.small.add35{margin:35px}.custom.custom-margin-responsive.small.left-35{margin-left:35px}.custom.custom-margin-responsive.small.right-35{margin-right:35px}.custom.custom-margin-responsive.small.top-35{margin-top:35px}.custom.custom-margin-responsive.small.bottom-35{margin-bottom:35px}textarea.form-control.input-text{height:2.4em}.template-files-delete-button{margin:1px 0 0 0;padding:0 5px}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{font-family:'FontAwesome' !important}table.dataTable thead .sorting:after{content:"\f0dc" !important}table.dataTable thead .sorting_asc:after{content:"\f0de" !important}table.dataTable thead .sorting_desc:after{content:"\f0dd" !important}.menubar.sticky{position:fixed !important;top:0 !important;margin-top:0 !important}#sticky-topbar-placeholder{display:none}.menubar.sticky+#sticky-topbar-placeholder{display:block}#edit-question-form{margin-left:-15px;margin-right:-15px}#advanced-question-editor{margin-left:-15px;margin-right:-15px}#advanced-question-editor>div>.container-center>.row{margin-left:-15px;margin-right:-15px}.subquestions-table-wrapper,.answeroptions-table-wrapper{display:block;overflow:auto;margin-bottom:20px}.subquestions-table,.answeroptions-table{margin-bottom:0px}.subquestions-table input.code,.answeroptions-table input.code{min-width:70px}.subquestions-table>tbody>tr>td:first-of-type,.answeroptions-table>tbody>tr>td:first-of-type{padding-left:0}.subquestions-table>tbody>tr>td:last-of-type,.answeroptions-table>tbody>tr>td:last-of-type{padding-right:0} diff --git a/assets/packages/adminbasics/build/adminbasics.rtl.css b/assets/packages/adminbasics/build/adminbasics.rtl.css index ad836ebebfb..79a60ed7a08 100644 --- a/assets/packages/adminbasics/build/adminbasics.rtl.css +++ b/assets/packages/adminbasics/build/adminbasics.rtl.css @@ -120,6 +120,296 @@ min-height: 100px; } +.draggable-container { + min-height: 300px; +} + +#newcreated, +#tokenattribute, +#csvattribute, +#centralattribute { + margin-right: 0.75%; + margin-left: 0.75%; + margin-bottom: 20px; +} + +#tokenattribute { + margin-right: 1.5%; +} + +#centralattribute { + margin-left: 1.5%; +} + +#centralattribute .centralatt { + padding-bottom: 15px; +} + +#newcreated .attribute-item input { + display: block; + margin: 2px auto; + width: 80%; +} + +#centralattribute div.centralatt div.token-attribute { + margin-top: -5px; + min-height: 20px; +} + +#newcreated, +#tokenattribute { + height: 100%; +} + +.heading { + height: auto; + padding-top: 7px; + font-weight: bold; +} + +div.mappable-attribute-wrapper { + width: 80%; + margin: 6px auto; + padding: 6px; +} + +div.attribute-item, .already-mapped-attribute { + width: 80%; + margin: 6px auto; + padding: 4px; + text-align: center; +} + +#centralattribute .explanation { + width: 90%; + margin: 0 auto; + text-align: right; +} + +#centralattribute .explanation-row { + display: table-row; +} + +#centralattribute .explanation input, +#centralattribute .explanation label { + display: table-cell; + padding-top: 4px; + padding-bottom: 4px; +} + +#centralattribute .explanation label { + padding-right: 8px; +} + +.attribute-item.draggable { + cursor: move; +} + +div.mappable-attribute-wrapper.target-hover { + padding-bottom: 27px; +} + +div.mappable-attribute-wrapper.paired.target-hover { + padding-bottom: 4px; +} + +div.mappable-attribute-wrapper.paired.ui-state-disabled { + opacity: 1; + filter: alpha(opacity=100); +} + +.draggable-container .attribute-column .ui-draggable-dragging { + z-index: 100; +} + +/* Existing attribute column in CSV CPDB import */ +.centralatt { + min-height: 100px; +} + +#responses-column-filter-modal .checkbox label { + vertical-align: text-bottom; + white-space: nowrap; + overflow-x: hidden; +} + +.responses-multiselect-checkboxes { + overflow-y: scroll; + height: 60vh; +} + +.responses-column-filter-modal-checkbox-buttons { + text-align: right; + padding-bottom: 15px; +} + +.grid-view .table td.button-column, .grid-view .table th.button-column { + white-space: nowrap; + text-align: initial; +} + +.grid-view .table th > .sort-link .caret { + left: -10px; +} + +.dropdown-menu.larger-dropdown { + min-width: 240px; +} + +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu > .dropdown-menu { + top: 0; + right: 100%; + margin-top: -6px; + margin-right: -1px; + -webkit-border-radius: 6px 0 6px 6px; + -moz-border-radius: 6px 0 6px 6px; + border-radius: 6px 0 6px 6px; +} + +.dropdown-submenu:hover > a:after { + border-right-color: #555; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left > .dropdown-menu { + right: -100%; + margin-right: 10px; + -webkit-border-radius: 0 6px 6px 6px; + -moz-border-radius: 0 6px 6px 6px; + border-radius: 0 6px 6px 6px; +} + +#vue-apps-main-container { + min-height: 75vh; +} + +.fa-stack.halfed { + height: 1em; + width: 1em; + line-height: 1em; +} + +.fa-stack-1x.halfed { + font-size: 0.5em; +} + +.fa-1x.halfed { + font-size: 0.5em; +} + +.contain-pulse { + display: flex; + flex-flow: row wrap; + justify-content: center; + align-content: bottom; + height: 3em; +} + +.square { + background: #0f3e12; + border-radius: 0.6em; + box-sizing: border-box; + height: 2em; + margin: 0.2em; + overflow: hidden; + padding: 0.5em; + width: 2em; +} + +.animate-pulse .square:nth-of-type(1) { + animation: pulse ease-in-out 1.8s infinite 0.2s; +} + +.animate-pulse .square:nth-of-type(2) { + animation: pulse ease-in-out 1.8s infinite 0.6s; +} + +.animate-pulse .square:nth-of-type(3) { + animation: pulse ease-in-out 1.8s infinite 1.0s; +} + +.animate-pulse .square:nth-of-type(4) { + animation: pulse ease-in-out 1.8s infinite 1.4s; +} + +.simpleWrapper { + padding: 0; + margin: 0; + border: none; + display: inline-block; +} + +#selectable .ui-selecting { + background: #8CCE00; +} + +#selectable .ui-selected { + background: #C1DD7F; + color: #000000; +} + +#selectable { + list-style-type: none; + margin: 2px; + padding: 0; + width: 90%; +} + +#selectable li { + padding: 1em; + font-size: 1em; + height: 9px; + text-align: center; + margin: 4px; +} + +.ui-icon.exporticon { + background-image: url("images/export.gif"); +} + +#feedback { + font-size: 1.4em; +} + +#selectableadd .ui-selecting { + background: #0066CC; +} + +#selectableadd .ui-selected { + background: #0066CC; + color: white; +} + +#selectableadd { + list-style-type: none; + margin: 0; + padding: 0; + width: 90%; + text-align: center; +} + +#selectableadd li { + margin: 3px; + padding: 0.4em; + font-size: 1 em; + height: 18px; + text-align: center; +} + +.popupgroup { + border: 1px solid #DAE5F4; + padding: 10px; + border-radius: 3px; + margin: 8px; +} + /** * Lime Admin Common CSS File * @@ -433,6 +723,10 @@ html { z-index: 1000; } +#fullpagebar { + z-index: 100; +} + .tab-content { padding-top: 2em; } @@ -4102,487 +4396,205 @@ input[type="file"].form-control { } .custom.custom-margin-responsive.small.right-10 { - margin-left: 10px; -} - -.custom.custom-margin-responsive.small.top-10 { - margin-top: 10px; -} - -.custom.custom-margin-responsive.small.bottom-10 { - margin-bottom: 10px; -} - -.custom.custom-margin-responsive.small.add15 { - margin: 15px; -} - -.custom.custom-margin-responsive.small.left-15 { - margin-right: 15px; -} - -.custom.custom-margin-responsive.small.right-15 { - margin-left: 15px; -} - -.custom.custom-margin-responsive.small.top-15 { - margin-top: 15px; -} - -.custom.custom-margin-responsive.small.bottom-15 { - margin-bottom: 15px; -} - -.custom.custom-margin-responsive.small.add20 { - margin: 20px; -} - -.custom.custom-margin-responsive.small.left-20 { - margin-right: 20px; -} - -.custom.custom-margin-responsive.small.right-20 { - margin-left: 20px; -} - -.custom.custom-margin-responsive.small.top-20 { - margin-top: 20px; -} - -.custom.custom-margin-responsive.small.bottom-20 { - margin-bottom: 20px; -} - -.custom.custom-margin-responsive.small.add25 { - margin: 25px; -} - -.custom.custom-margin-responsive.small.left-25 { - margin-right: 25px; -} - -.custom.custom-margin-responsive.small.right-25 { - margin-left: 25px; -} - -.custom.custom-margin-responsive.small.top-25 { - margin-top: 25px; -} - -.custom.custom-margin-responsive.small.bottom-25 { - margin-bottom: 25px; -} - -.custom.custom-margin-responsive.small.add30 { - margin: 30px; -} - -.custom.custom-margin-responsive.small.left-30 { - margin-right: 30px; -} - -.custom.custom-margin-responsive.small.right-30 { - margin-left: 30px; -} - -.custom.custom-margin-responsive.small.top-30 { - margin-top: 30px; -} - -.custom.custom-margin-responsive.small.bottom-30 { - margin-bottom: 30px; -} - -.custom.custom-margin-responsive.small.add35 { - margin: 35px; -} - -.custom.custom-margin-responsive.small.left-35 { - margin-right: 35px; -} - -.custom.custom-margin-responsive.small.right-35 { - margin-left: 35px; -} - -.custom.custom-margin-responsive.small.top-35 { - margin-top: 35px; -} - -.custom.custom-margin-responsive.small.bottom-35 { - margin-bottom: 35px; -} - -textarea.form-control.input-text { - /* Show a textarea not so big at starting */ - height: 2.4em; -} - -.template-files-delete-button { - margin: 1px 0 0 0; - padding: 0 5px; -} - -/* Override sort icons for datatables */ -table.dataTable thead .sorting:after, -table.dataTable thead .sorting_asc:after, -table.dataTable thead .sorting_desc:after, -table.dataTable thead .sorting_asc_disabled:after, -table.dataTable thead .sorting_desc_disabled:after { - font-family: 'FontAwesome' !important; -} - -table.dataTable thead .sorting:after { - content: "\f0dc" !important; - /* sort */ -} - -table.dataTable thead .sorting_asc:after { - content: "\f0de" !important; - /* sort-by-attributes */ -} - -table.dataTable thead .sorting_desc:after { - content: "\f0dd" !important; - /* sort-by-attributes-alt */ -} - -.menubar.sticky { - position: fixed !important; - top: 0 !important; - margin-top: 0 !important; -} - -/* Reduce margins for question editor */ -#edit-question-form { - margin-right: -15px; - margin-left: -15px; -} - -#advanced-question-editor { - margin-right: -15px; - margin-left: -15px; -} - -#advanced-question-editor > div > .container-center > .row { - margin-right: -15px; - margin-left: -15px; -} - -/* Scrollable subquestion/answer tables*/ -.subquestions-table-wrapper, -.answeroptions-table-wrapper { - display: block; - overflow: auto; - margin-bottom: 20px; -} - -.subquestions-table, -.answeroptions-table { - margin-bottom: 0px; -} - -.subquestions-table input.code, -.answeroptions-table input.code { - min-width: 70px; -} - -.subquestions-table > tbody > tr > td:first-of-type, -.answeroptions-table > tbody > tr > td:first-of-type { - padding-right: 0; -} - -.subquestions-table > tbody > tr > td:last-of-type, -.answeroptions-table > tbody > tr > td:last-of-type { - padding-left: 0; -} - -#selectable .ui-selecting { - background: #8CCE00; -} - -#selectable .ui-selected { - background: #C1DD7F; - color: #000000; -} - -#selectable { - list-style-type: none; - margin: 2px; - padding: 0; - width: 90%; -} - -#selectable li { - padding: 1em; - font-size: 1em; - height: 9px; - text-align: center; - margin: 4px; -} - -.ui-icon.exporticon { - background-image: url("images/export.gif"); -} - -#feedback { - font-size: 1.4em; -} - -#selectableadd .ui-selecting { - background: #0066CC; -} - -#selectableadd .ui-selected { - background: #0066CC; - color: white; -} - -#selectableadd { - list-style-type: none; - margin: 0; - padding: 0; - width: 90%; - text-align: center; -} - -#selectableadd li { - margin: 3px; - padding: 0.4em; - font-size: 1 em; - height: 18px; - text-align: center; + margin-left: 10px; } -.popupgroup { - border: 1px solid #DAE5F4; - padding: 10px; - border-radius: 3px; - margin: 8px; +.custom.custom-margin-responsive.small.top-10 { + margin-top: 10px; } -.draggable-container { - min-height: 300px; +.custom.custom-margin-responsive.small.bottom-10 { + margin-bottom: 10px; } -#newcreated, -#tokenattribute, -#csvattribute, -#centralattribute { - margin-right: 0.75%; - margin-left: 0.75%; - margin-bottom: 20px; +.custom.custom-margin-responsive.small.add15 { + margin: 15px; } -#tokenattribute { - margin-right: 1.5%; +.custom.custom-margin-responsive.small.left-15 { + margin-right: 15px; } -#centralattribute { - margin-left: 1.5%; +.custom.custom-margin-responsive.small.right-15 { + margin-left: 15px; } -#centralattribute .centralatt { - padding-bottom: 15px; +.custom.custom-margin-responsive.small.top-15 { + margin-top: 15px; } -#newcreated .attribute-item input { - display: block; - margin: 2px auto; - width: 80%; +.custom.custom-margin-responsive.small.bottom-15 { + margin-bottom: 15px; } -#centralattribute div.centralatt div.token-attribute { - margin-top: -5px; - min-height: 20px; +.custom.custom-margin-responsive.small.add20 { + margin: 20px; } -#newcreated, -#tokenattribute { - height: 100%; +.custom.custom-margin-responsive.small.left-20 { + margin-right: 20px; } -.heading { - height: auto; - padding-top: 7px; - font-weight: bold; +.custom.custom-margin-responsive.small.right-20 { + margin-left: 20px; } -div.mappable-attribute-wrapper { - width: 80%; - margin: 6px auto; - padding: 6px; +.custom.custom-margin-responsive.small.top-20 { + margin-top: 20px; } -div.attribute-item, .already-mapped-attribute { - width: 80%; - margin: 6px auto; - padding: 4px; - text-align: center; +.custom.custom-margin-responsive.small.bottom-20 { + margin-bottom: 20px; } -#centralattribute .explanation { - width: 90%; - margin: 0 auto; - text-align: right; +.custom.custom-margin-responsive.small.add25 { + margin: 25px; } -#centralattribute .explanation-row { - display: table-row; +.custom.custom-margin-responsive.small.left-25 { + margin-right: 25px; } -#centralattribute .explanation input, -#centralattribute .explanation label { - display: table-cell; - padding-top: 4px; - padding-bottom: 4px; +.custom.custom-margin-responsive.small.right-25 { + margin-left: 25px; } -#centralattribute .explanation label { - padding-right: 8px; +.custom.custom-margin-responsive.small.top-25 { + margin-top: 25px; } -.attribute-item.draggable { - cursor: move; +.custom.custom-margin-responsive.small.bottom-25 { + margin-bottom: 25px; } -div.mappable-attribute-wrapper.target-hover { - padding-bottom: 27px; +.custom.custom-margin-responsive.small.add30 { + margin: 30px; } -div.mappable-attribute-wrapper.paired.target-hover { - padding-bottom: 4px; +.custom.custom-margin-responsive.small.left-30 { + margin-right: 30px; } -div.mappable-attribute-wrapper.paired.ui-state-disabled { - opacity: 1; - filter: alpha(opacity=100); +.custom.custom-margin-responsive.small.right-30 { + margin-left: 30px; } -.draggable-container .attribute-column .ui-draggable-dragging { - z-index: 100; +.custom.custom-margin-responsive.small.top-30 { + margin-top: 30px; } -/* Existing attribute column in CSV CPDB import */ -.centralatt { - min-height: 100px; +.custom.custom-margin-responsive.small.bottom-30 { + margin-bottom: 30px; } -#responses-column-filter-modal .checkbox label { - vertical-align: text-bottom; - white-space: nowrap; - overflow-x: hidden; +.custom.custom-margin-responsive.small.add35 { + margin: 35px; } -.responses-multiselect-checkboxes { - overflow-y: scroll; - height: 60vh; +.custom.custom-margin-responsive.small.left-35 { + margin-right: 35px; } -.responses-column-filter-modal-checkbox-buttons { - text-align: right; - padding-bottom: 15px; +.custom.custom-margin-responsive.small.right-35 { + margin-left: 35px; } -.grid-view .table td.button-column, .grid-view .table th.button-column { - white-space: nowrap; - text-align: initial; +.custom.custom-margin-responsive.small.top-35 { + margin-top: 35px; } -.grid-view .table th > .sort-link .caret { - left: -10px; +.custom.custom-margin-responsive.small.bottom-35 { + margin-bottom: 35px; } -.dropdown-menu.larger-dropdown { - min-width: 240px; +textarea.form-control.input-text { + /* Show a textarea not so big at starting */ + height: 2.4em; } -.dropdown-submenu { - position: relative; +.template-files-delete-button { + margin: 1px 0 0 0; + padding: 0 5px; } -.dropdown-submenu > .dropdown-menu { - top: 0; - right: 100%; - margin-top: -6px; - margin-right: -1px; - -webkit-border-radius: 6px 0 6px 6px; - -moz-border-radius: 6px 0 6px 6px; - border-radius: 6px 0 6px 6px; +/* Override sort icons for datatables */ +table.dataTable thead .sorting:after, +table.dataTable thead .sorting_asc:after, +table.dataTable thead .sorting_desc:after, +table.dataTable thead .sorting_asc_disabled:after, +table.dataTable thead .sorting_desc_disabled:after { + font-family: 'FontAwesome' !important; } -.dropdown-submenu:hover > a:after { - border-right-color: #555; +table.dataTable thead .sorting:after { + content: "\f0dc" !important; + /* sort */ } -.dropdown-submenu.pull-left { - float: none; +table.dataTable thead .sorting_asc:after { + content: "\f0de" !important; + /* sort-by-attributes */ } -.dropdown-submenu.pull-left > .dropdown-menu { - right: -100%; - margin-right: 10px; - -webkit-border-radius: 0 6px 6px 6px; - -moz-border-radius: 0 6px 6px 6px; - border-radius: 0 6px 6px 6px; +table.dataTable thead .sorting_desc:after { + content: "\f0dd" !important; + /* sort-by-attributes-alt */ } -#vue-apps-main-container { - min-height: 75vh; +.menubar.sticky { + position: fixed !important; + top: 0 !important; + margin-top: 0 !important; } -.fa-stack.halfed { - height: 1em; - width: 1em; - line-height: 1em; +#sticky-topbar-placeholder { + display: none; } -.fa-stack-1x.halfed { - font-size: 0.5em; +.menubar.sticky + #sticky-topbar-placeholder { + display: block; } -.fa-1x.halfed { - font-size: 0.5em; +/* Reduce margins for question editor */ +#edit-question-form { + margin-right: -15px; + margin-left: -15px; } -.contain-pulse { - display: flex; - flex-flow: row wrap; - justify-content: center; - align-content: bottom; - height: 3em; +#advanced-question-editor { + margin-right: -15px; + margin-left: -15px; } -.square { - background: #0f3e12; - border-radius: 0.6em; - box-sizing: border-box; - height: 2em; - margin: 0.2em; - overflow: hidden; - padding: 0.5em; - width: 2em; +#advanced-question-editor > div > .container-center > .row { + margin-right: -15px; + margin-left: -15px; } -.animate-pulse .square:nth-of-type(1) { - animation: pulse ease-in-out 1.8s infinite 0.2s; +/* Scrollable subquestion/answer tables*/ +.subquestions-table-wrapper, +.answeroptions-table-wrapper { + display: block; + overflow: auto; + margin-bottom: 20px; } -.animate-pulse .square:nth-of-type(2) { - animation: pulse ease-in-out 1.8s infinite 0.6s; +.subquestions-table, +.answeroptions-table { + margin-bottom: 0px; } -.animate-pulse .square:nth-of-type(3) { - animation: pulse ease-in-out 1.8s infinite 1.0s; +.subquestions-table input.code, +.answeroptions-table input.code { + min-width: 70px; } -.animate-pulse .square:nth-of-type(4) { - animation: pulse ease-in-out 1.8s infinite 1.4s; +.subquestions-table > tbody > tr > td:first-of-type, +.answeroptions-table > tbody > tr > td:first-of-type { + padding-right: 0; } -.simpleWrapper { - padding: 0; - margin: 0; - border: none; - display: inline-block; +.subquestions-table > tbody > tr > td:last-of-type, +.answeroptions-table > tbody > tr > td:last-of-type { + padding-left: 0; } diff --git a/assets/packages/adminbasics/build/adminbasics.rtl.min.css b/assets/packages/adminbasics/build/adminbasics.rtl.min.css index f33e4c72449..fa6782ea177 100644 --- a/assets/packages/adminbasics/build/adminbasics.rtl.min.css +++ b/assets/packages/adminbasics/build/adminbasics.rtl.min.css @@ -1 +1 @@ -#selectable .ui-selecting{background:#8CCE00}#selectable .ui-selected{background:#C1DD7F;color:#000000}#selectable{list-style-type:none;margin:2px;padding:0;width:90%}#selectable li{padding:1em;font-size:1em;height:9px;text-align:center;margin:4px}.ui-icon.exporticon{background-image:url("images/export.gif")}#feedback{font-size:1.4em}#selectableadd .ui-selecting{background:#0066CC}#selectableadd .ui-selected{background:#0066CC;color:white}#selectableadd{list-style-type:none;margin:0;padding:0;width:90%;text-align:center}#selectableadd li{margin:3px;padding:0.4em;font-size:1 em;height:18px;text-align:center}.popupgroup{border:1px solid #DAE5F4;padding:10px;border-radius:3px;margin:8px}.draggable-container{min-height:300px}#newcreated,#tokenattribute,#csvattribute,#centralattribute{margin-right:0.75%;margin-left:0.75%;margin-bottom:20px}#tokenattribute{margin-right:1.5%}#centralattribute{margin-left:1.5%}#centralattribute .centralatt{padding-bottom:15px}#newcreated .attribute-item input{display:block;margin:2px auto;width:80%}#centralattribute div.centralatt div.token-attribute{margin-top:-5px;min-height:20px}#newcreated,#tokenattribute{height:100%}.heading{height:auto;padding-top:7px;font-weight:bold}div.mappable-attribute-wrapper{width:80%;margin:6px auto;padding:6px}div.attribute-item,.already-mapped-attribute{width:80%;margin:6px auto;padding:4px;text-align:center}#centralattribute .explanation{width:90%;margin:0 auto;text-align:right}#centralattribute .explanation-row{display:table-row}#centralattribute .explanation input,#centralattribute .explanation label{display:table-cell;padding-top:4px;padding-bottom:4px}#centralattribute .explanation label{padding-right:8px}.attribute-item.draggable{cursor:move}div.mappable-attribute-wrapper.target-hover{padding-bottom:27px}div.mappable-attribute-wrapper.paired.target-hover{padding-bottom:4px}div.mappable-attribute-wrapper.paired.ui-state-disabled{opacity:1;filter:alpha(opacity=100)}.draggable-container .attribute-column .ui-draggable-dragging{z-index:100}.centralatt{min-height:100px}.grid-view .table td.button-column,.grid-view .table th.button-column{white-space:nowrap;text-align:initial}.grid-view .table th>.sort-link .caret{left:-10px}.dropdown-menu.larger-dropdown{min-width:240px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;right:100%;margin-top:-6px;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown-submenu:hover>a:after{border-right-color:#555}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{right:-100%;margin-right:10px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}#vue-apps-main-container{min-height:75vh}.fa-stack.halfed{height:1em;width:1em;line-height:1em}.fa-stack-1x.halfed{font-size:0.5em}.fa-1x.halfed{font-size:0.5em}.contain-pulse{display:flex;flex-flow:row wrap;justify-content:center;align-content:bottom;height:3em}.square{background:#0f3e12;border-radius:0.6em;box-sizing:border-box;height:2em;margin:.2em;overflow:hidden;padding:.5em;width:2em}.animate-pulse .square:nth-of-type(1){animation:pulse ease-in-out 1.8s infinite 0.2s}.animate-pulse .square:nth-of-type(2){animation:pulse ease-in-out 1.8s infinite 0.6s}.animate-pulse .square:nth-of-type(3){animation:pulse ease-in-out 1.8s infinite 1.0s}.animate-pulse .square:nth-of-type(4){animation:pulse ease-in-out 1.8s infinite 1.4s}.simpleWrapper{padding:0;margin:0;border:none;display:inline-block}#cpdbatt{min-height:100px}#responses-column-filter-modal .checkbox label{vertical-align:text-bottom;white-space:nowrap;overflow-x:hidden}.responses-multiselect-checkboxes{overflow-y:scroll;height:60vh}.responses-column-filter-modal-checkbox-buttons{text-align:right;padding-bottom:15px}#ls-loading{width:100%;height:100%;top:0;right:0;position:fixed;display:block;opacity:0.7;background-color:#fff;z-index:3501;text-align:center;display:none}#ls-loading-spinner{position:absolute;top:30%}#notif-container{position:fixed;top:5%;right:20%;width:60%;z-index:3500;background:rgba(255,255,255,0.1);min-height:0}.bg-white{background:#fff}.row-button-margin-bottom{margin-bottom:-5px}.row-button-margin-bottom .btn{margin-bottom:5px}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{right:2px}.ui-datepicker .ui-datepicker-next{left:10px}.ui-datepicker .ui-datepicker-prev-hover{right:1px}.ui-datepicker .ui-datepicker-next-hover{left:10px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;right:50%;margin-right:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:left;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-right:0;border-left:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:left;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-multi .ui-datepicker-group,.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:right}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:right}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:ltr}.ui-datepicker-rtl .ui-datepicker-prev{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-next{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:left}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0;border-right-width:1px}.side-body,.full-page-wrapper{min-height:100%;position:relative;margin-bottom:65px;padding:0}.side-body h3,.pagetitle,.list-surveys h3{position:relative;padding:0.5em;margin-bottom:1em}body{font-size:14px;line-height:1.428571429;margin:0}body .row{margin-left:0;margin-right:0}.jumbotron{text-align:center}.jumbotron.message-box{margin-top:1em}html{font-family:Roboto;font-weight:400;position:relative;min-height:100%}.main-container{padding-bottom:100px}#welcome-jumbotron{padding-top:0;padding-bottom:10px;background-color:transparent}#welcome-jumbotron>img{width:350px}.surveymanagerbar{margin-top:-20px;padding-top:5px}.surveymanagerbar .h3{margin-top:5px;font-weight:300;font-size:1.5em}.surveybar{padding-top:5px;padding-bottom:5px;z-index:1000}.tab-content{padding-top:2em}:focus{outline:none}.navbar-brand{font-weight:400}.navbar{border-radius:0 !important}.navbar a{font-weight:400}.navbar .dropdown-menu>li>a{font-weight:400}.navbar .nav-icon-btn>a .label{font-size:10px;padding:0 3px;line-height:15px;position:absolute;display:block;left:5px;top:10px}.lime-icon{display:inline-block;height:1em;width:1em}.mega-dropdown{position:static !important}.mega-dropdown-menu{padding:20px 0;width:100%}.mega-dropdown-menu .dropdown-header{font-size:18px;padding:5px 5px 5px 60px;line-height:30px}.mega-dropdown-menu>li>ul{padding:0;margin:0}.mega-dropdown-menu>li>ul>li{list-style:none}.mega-dropdown-menu>li>ul>li>a{display:block;padding:3px 5px}.mega-dropdown-menu>li ul>li>a:hover{text-decoration:none}.mega-dropdown-menu>li ul>li>a:focus{text-decoration:none}#mainmenu-dropdown{z-index:20002}.footer{z-index:100;position:absolute;bottom:0;display:block;width:100%;height:60px;padding-top:1em}.alert-security-update{margin:0}#update-container{margin-top:10px;z-index:999}#update-container .alert{margin-bottom:5px}#ajaxupdaterLayoutLoading{text-align:center;margin-top:200px;margin-bottom:200px;display:none}.box{border-radius:3px;padding:10px 25px;text-align:left;display:block;margin-top:10px}#info-header{font-size:3em}#info-footer{font-size:2em}.box-icon{border-radius:50%;display:table;height:50px;margin:0 auto;width:50px;margin-top:-31px}.box-icon span{display:table-cell;text-align:center;vertical-align:middle}@keyframes fadein{from{opacity:0}to{opacity:1}}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-ms-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes slidefromtop{from{top:-15px}to{top:0}}@-moz-keyframes slidefromtop{from{top:-15px}to{top:0}}@-webkit-keyframes slidefromtop{from{top:-15px}to{top:0}}@-ms-keyframes slidefromtop{from{top:-15px}to{top:0}}@-o-keyframes slidefromtop{from{top:-15px}to{top:0}}.form-group{margin-bottom:17px}.cke_contents{width:650px}.cke_toolgroup{cursor:pointer;cursor:hand;border-radius:0}.message-box{position:relative;margin-top:20px;animation:slidefromtop 1s}.welcome #lime-logo{animation:fadein 1s}.welcome .panel{position:relative;top:50px;opacity:0}.welcome .panel-body{text-align:center}.welcome .panel-body img{height:4em;margin-bottom:1em}.welcome .login-panel .panel-body img{margin-bottom:0}.alert{position:relative;animation:slidefromtop 1s}@media screen and (min-width: 1280px) and (max-width: 1440px){.welcome .panel{min-height:188px}}#welcomeModal{z-index:20000}@media screen and (min-width: 1280px) and (max-width: 1366px){#add_user_btn{margin-top:1.5em}#user-control-table .form-group label{min-width:80px}}.htmleditorboot{padding-top:2em}#edit-question-body{min-height:1200px}.profile-img-card{margin-top:32px}#profile-img{min-height:80px}@media screen and (min-width: 1280px) and (max-width: 1680px){#profile-img{min-height:0}}.login-panel{margin-top:40px}.login-content{text-align:right;padding:1em}.login-submit{text-align:left}#s2id_loginlang{border:none;padding:0}.ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-bdiv{overflow:hidden}.ui-jqgrid .ui-jqgrid-view .ui-jqgrid-toppager{background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-htable th div{height:auto}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input{margin-top:8px}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input.cbox{margin:4px 0 0}.ui-jqgrid td input.cbox{margin:4px 0 0}.ui-jqgrid tr.ui-row-ltr td{border:none}#gs_completed{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.ui-th-column{margin-top:8px}.info>p{padding-top:10px;text-align:justify}.checkbox label:after{padding-right:4px;padding-top:2px;font-size:9px}.survey-action .panel-body img{height:3em}div.panel.disabled{opacity:0.5;border:none}div.panel.disabled *{opacity:0.5;border:none}div.panel.disabled a{cursor:default}#edit-group .tab-pane{padding:1em}.panel-clickable:hover{cursor:pointer;cursor:hand}.ui-widget-content .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-widget-header .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-search-toolbar th div{min-height:40px}.absolute-wrapper{position:fixed;right:0;width:300px;height:100%}.side-menu{position:absolute;width:300px;padding:0;right:0}.side-menu .navbar{border:none;box-shadow:none}.side-menu .navbar-header{width:100%}.side-menu .navbar-nav li{display:block;width:100%}.side-menu .navbar-nav li a{padding:15px}.side-menu .navbar-nav li a .glyphicon{padding-left:10px}.side-menu .navbar-nav .question-link.active{background-color:transparent;padding:15px 0px 15px 15px;margin-bottom:5px;margin-left:-1px}.side-menu .navbar-nav .question-link.active:hover{text-decoration:none;cursor:default}.side-menu .navbar-nav .question-link{display:block;padding-right:0px}.side-menu .navbar-nav .question-link .question-collapse-title{padding-right:25px}.side-menu #dropdown{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}.side-menu #dropdown li:hover{font-weight:700}.side-menu #dropdown li.active:hover{cursor:default;background-color:transparent;margin-left:-1px}.side-menu #dropdown li.disabled:hover{font-weight:700;background-color:transparent}.side-menu #dropdown .caret{float:left;margin:9px 5px 0}.side-menu #dropdown .indicator{float:left}.side-menu #dropdown .panel-body{padding:0}.side-menu #dropdown .panel-body .navbar-nav{width:100%}.side-menu #dropdown .panel-body .navbar-nav li{padding-right:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li.panel{margin-bottom:0;background-color:transparent;border:none;border-radius:0;box-shadow:none}.side-menu #dropdown .panel-body .navbar-nav li.panel-default{padding-right:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li:last-child{border-bottom:none}.side-menu #dropdown .panel-body .panel-body{margin-right:-15px}.side-menu #dropdown .panel-body .panel>a{margin-right:-20px;padding-right:35px}.side-menu #dropdown .question-group-collapse .caret{float:none;margin-bottom:9px}.side-menu .hide-button{border:0;border-radius:0;padding:15px 18px}.side-menu .brand-name-wrapper{min-height:50px}.side-menu .brand-name-wrapper .navbar-brand{display:block}.side-menu #search{position:relative;z-index:1000}.side-menu #search .panel-body{padding:0}.side-menu #search .panel-body .navbar-form{padding:0;padding-left:50px;width:100%;margin:0;position:relative}.side-menu #search .panel-body .navbar-form .form-group{width:100%;position:relative}.side-menu #search .panel-body .navbar-form input{border:0;border-radius:0;box-shadow:none;width:100%;height:50px}.side-menu #search .panel-body .navbar-form .btn{position:absolute;left:0;top:0;border:0;border-radius:0;padding:15px 18px}.side-menu #explorer-collapse .caret{float:none;margin-bottom:9px}#explorer{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#explorer ul{font-size:0.9em}.dropdownstyle{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#sideMenu{min-height:700px;overflow:hidden}#sideMenu a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown li:hover{width:100%;font-weight:700}#sideMenu #dropdown li:hover>a{width:100%;font-weight:700;border-bottom:none}#sideMenu #dropdown li a[aria-expanded="true"]{width:100%;font-weight:700}#sideMenu #dropdown li .active a:hover{width:100%;font-weight:700}#sideMenu #dropdown li>a:hover{width:100%;font-weight:700}#sideMenu #dropdown #explorer li:hover{font-weight:700}#sideMenu #dropdown #explorer li:hover>a{font-weight:700}#sideMenu #dropdown #explorer li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer li>a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover>a{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li>a:hover{font-weight:700}#sideMenu .navbar-default .navbar-nav>.active>a{background-color:transparent}#sideMenu .side-menu .dropdownlvl1>a:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover>a{font-weight:700}.side-menu-hidden{right:-250px}.side-body{min-height:800px}.side-body-margin{margin-right:70px}.question-group-collapse-title{display:block;padding-right:20px}.question-collapse-title{display:block;padding-right:30px}.main-content-container{max-width:95%;overflow-x:hidden;overflow-y:visible}.ck-content{transition:height 400ms ease-in-out}.ck-blurred{max-height:35vh}.ck-blurred:hover{max-height:initial}.ckedit-nocollapse .ck-blurred{max-height:initial}.ck-focused{max-height:initial}@media (max-width: 768px){.main-content-container{max-width:100%}.side-menu{position:relative;width:100%;height:0;border-left:0}.side-menu .brand-name-wrapper .navbar-brand{display:inline-block}@-moz-keyframes slidein{0%{right:-300px}100%{right:10px}}@-webkit-keyframes slidein{0%{right:-300px}100%{right:10px}}@keyframes slidein{0%{right:-300px}100%{right:10px}}@-moz-keyframes slideout{0%{right:0}100%{right:-300px}}@-webkit-keyframes slideout{0%{right:0}100%{right:-300px}}@keyframes slideout{0%{right:0}100%{right:-300px}}@-moz-keyframes bodyslidein{0%{right:0}100%{right:300px}}@-webkit-keyframes bodyslidein{0%{right:0}100%{right:300px}}@keyframes bodyslidein{0%{right:0}100%{right:300px}}@-moz-keyframes bodyslideout{0%{right:300px}100%{right:0}}@-webkit-keyframes bodyslideout{0%{right:300px}100%{right:0}}@keyframes bodyslideout{0%{right:300px}100%{right:0}}.side-body{margin-right:5px;margin-top:70px;position:relative;animation:bodyslideout 300ms forwards;transform-style:preserve-3d}.body-slide-in{animation:bodyslidein 300ms forwards;transform-style:preserve-3d}.navbar-toggle{border:0;float:right;padding:16px;margin:0;border-radius:0}.navbar-header{position:fixed;top:0;width:100%;z-index:3;background:white;border-bottom:1px solid var(--LS-admintheme-basecolor)}.side-menu-container>.navbar-nav{position:fixed;right:-300px;width:300px;top:43px;height:100%;animation:slideout 300ms forwards;transform-style:preserve-3d}.side-menu-container>.navbar-nav.slide-in{animation:slidein 300ms forwards;transform-style:preserve-3d}#search .panel-body .navbar-form{border-bottom:0}#search .panel-body .navbar-form .form-group{margin:0}#dropdown .panel-body .navbar-nav{margin:0}}.content-right{padding-right:0;padding-left:0}.content-right .col-lg-12{padding-right:0;padding-left:0}.toWhite a:hover{font-weight:700}.col-lg-12.content-right{padding-right:0;padding-left:0}.container-fluid .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff}.container-fluid .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{color:#fff}.btn-success:hover,.btn-danger:hover,.btn-warning:hover,.btn-info:hover{color:#fff}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:23px;padding-right:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-right:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-right:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-right:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#4caf50}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#ff9800}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#e51c23}@media (min-width: 768px){.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-right:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-right:0}.form-inline .has-feedback .form-control-feedback{top:0}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-right:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-right:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:30px}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.radio label,.radio-inline label,.checkbox label,.checkbox-inline label{padding-right:25px}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="radio"],.checkbox-inline input[type="radio"],.radio input[type="checkbox"],.radio-inline input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{margin-right:-25px}input[type="radio"],.radio input[type="radio"],.radio-inline input[type="radio"]{position:relative;margin-top:6px;margin-left:4px;vertical-align:top;border:none;background-color:transparent;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="radio"]:focus,.radio input[type="radio"]:focus,.radio-inline input[type="radio"]:focus{outline:none}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before,input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{content:"";display:block;width:18px;height:18px;border-radius:50%;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before{position:absolute;right:0;top:-3px;background-color:#2196f3;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{position:relative;top:-3px;border:2px solid #666666}input[type="radio"]:checked:before,.radio input[type="radio"]:checked:before,.radio-inline input[type="radio"]:checked:before{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}input[type="radio"]:disabled:checked:before,.radio input[type="radio"]:disabled:checked:before,.radio-inline input[type="radio"]:disabled:checked:before{background-color:#bbbbbb}input[type="radio"]:checked:after,.radio input[type="radio"]:checked:after,.radio-inline input[type="radio"]:checked:after{border-color:#2196f3}input[type="radio"]:disabled:after,.radio input[type="radio"]:disabled:after,.radio-inline input[type="radio"]:disabled:after,input[type="radio"]:disabled:checked:after,.radio input[type="radio"]:disabled:checked:after,.radio-inline input[type="radio"]:disabled:checked:after{border-color:#bbbbbb}input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:relative;border:none;margin-bottom:-4px;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="checkbox"]:focus,.checkbox input[type="checkbox"]:focus,.checkbox-inline input[type="checkbox"]:focus{outline:none}input[type="checkbox"]:focus:after,.checkbox input[type="checkbox"]:focus:after,.checkbox-inline input[type="checkbox"]:focus:after{border-color:#2196f3}input[type="checkbox"]:after,.checkbox input[type="checkbox"]:after,.checkbox-inline input[type="checkbox"]:after{content:"";display:block;width:18px;height:18px;margin-top:-2px;margin-left:5px;border:2px solid #666666;border-radius:2px;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="checkbox"]:checked:before,.checkbox input[type="checkbox"]:checked:before,.checkbox-inline input[type="checkbox"]:checked:before{content:"";position:absolute;top:0;right:6px;display:table;width:6px;height:12px;border:2px solid #fff;border-top-width:0;border-right-width:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}input[type="checkbox"]:indeterminate:before,.checkbox input[type="checkbox"]:indeterminate:before,.checkbox-inline input[type="checkbox"]:indeterminate:before{content:"";position:absolute;top:6px;right:2px;display:table;width:12px;height:0;border:1px solid #fff}input[type="checkbox"]:disabled:after,.checkbox input[type="checkbox"]:disabled:after,.checkbox-inline input[type="checkbox"]:disabled:after{border-color:#bbbbbb}input[type="checkbox"]:disabled:checked:after,.checkbox input[type="checkbox"]:disabled:checked:after,.checkbox-inline input[type="checkbox"]:disabled:checked:after{background-color:#bbbbbb;border-color:transparent}.has-warning input:not([type=checkbox]),.has-warning .form-control,.has-warning input.form-control[readonly],.has-warning input[type=text][readonly],.has-warning [type=text].form-control[readonly],.has-warning input:not([type=checkbox]):focus,.has-warning .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #ff9800;box-shadow:inset 0 -2px 0 #ff9800}.has-error input:not([type=checkbox]),.has-error .form-control,.has-error input.form-control[readonly],.has-error input[type=text][readonly],.has-error [type=text].form-control[readonly],.has-error input:not([type=checkbox]):focus,.has-error .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #e51c23;box-shadow:inset 0 -2px 0 #e51c23}.has-success input:not([type=checkbox]),.has-success .form-control,.has-success input.form-control[readonly],.has-success input[type=text][readonly],.has-success [type=text].form-control[readonly],.has-success input:not([type=checkbox]):focus,.has-success .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #4caf50;box-shadow:inset 0 -2px 0 #4caf50}.ui-widget-content{border:none;background:none;color:#404040}.ui-jqgrid .ui-jqgrid-titlebar{padding:1em}.container-fluid .ui-widget-content .ui-state-default,.container-fluid .ui-jqgrid .ui-jqgrid-bdiv{padding:0.5em;padding-bottom:0}.ui-dialog,.ui-jqdialog,.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-buttons.ui-draggable.ui-resizable{border-radius:4px;padding:1em;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqdialog-titlebar{height:2em;width:100%}.EditTable tr td{padding:1em}.ui-jqdialog-content input.FormElement{padding:.3em}.ui-jqdialog-content input[type="checkbox"].FormElement{padding:0em}.EditTable td select,.EditTable td textarea{display:inline-block;width:auto;vertical-align:middle;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;color:#636363;background-color:#ffffff;border:1px solid #cccccc;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.EditTable td input,.EditTable td select,.EditTable td textarea{margin:0}input[type="text"],input[type="password"],.ui-autocomplete-input,textarea,.uneditable-input{display:inline-block;font-size:14px;line-height:18px;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input:focus,textarea:focus{outline:0;border-color:rgba(82,168,236,0.8);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6)}#displayparticipants_firstname,#displayparticipants_lastname,#displayparticipants_owner_uid{padding-right:40px}#displayparticipants_language{padding-right:50px}#jqgh_displayparticipants_email{padding-right:140px}#displayparticipants_survey{padding-right:20px}.navtable{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqgrid-title{padding:1em 1em 1em 0em;font-style:italic;font-weight:700}.ui-pg-button{padding:0.4em}.ui-pg-button:hover{cursor:pointer}.ui-state-disabled:hover{cursor:default}.ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all .ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all{width:100%;overflow:hidden;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.modal-22{position:absolute;width:600px}.modal-22 .ui-jqdialog-titlebar .ui-jqdialog-title{width:80%}.modal-22 .ui-jqdialog-content{padding:1em}.ui-dialog-titlebar-close{border:1px solid transparent;border-radius:4px;float:left;color:#333;background-color:#fff;border-color:#ccc;display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;-webkit-appearance:button;cursor:pointer;overflow:visible;margin:0;font:normal normal normal 14px/1 FontAwesome}.ui-dialog-titlebar-close:before{content:"\f00d"}.em-expression{font-weight:bold}.data-entry-tbl tr.odd td,.data-entry-tbl tr.even td{padding:20px 0 20px 0}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{position:absolute;left:1em;top:10px}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{cursor:pointer}#carousel-example-generic{margin-right:20px}#carousel-example-generic .carousel-control{font-size:1em;top:-80px}#carousel-example-generic .left.carousel-control{right:-20px}#carousel-example-generic .right.carousel-control{left:-20px}#carousel-example-generic .panel-title{text-align:center;padding-top:0px}#carousel-example-generic .carousel-inner img{margin:auto;top:9px;position:relative}#carousel-example-generic .selectTemplate{display:inline-block;position:relative;right:0px;top:320px}#carousel-example-generic .carousel-caption{width:100%;right:0;top:0px;padding-top:0px}#carousel-example-generic,#carousel-example-generic .carousel-inner{min-height:150px}#carousel-example-generic .carousel-indicators{top:370px;width:80%;right:39%}#carousel-example-generic .carousel-indicators li{margin:0px;width:8px;height:8px}.side-body #carousel-example-generic h3{border:none}#systemoverview{margin:1em 0 1em 0}#systemoverview .info div{font-size:14px;margin-top:10px;margin-bottom:10px;font-weight:500;line-height:1.1;color:inherit;text-align:center}.preloader{position:absolute;top:50%;right:50%;font-size:20px;display:block;width:3.75em;height:4.25em;margin-right:-1.875em;margin-top:-2.125em;transform-origin:center center;transform:rotateY(-180deg) rotateZ(60deg)}.preloader .slice{border-top:1.125em solid transparent;border-left:none;border-bottom:1em solid transparent;border-right:1.875em solid #f7484e;position:absolute;top:0px;right:50%;transform-origin:right bottom;border-radius:3px 3px 0 0}.preloader .slice:nth-child(1){transform:rotateZ(-60deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.82s preload-hide-1 both 1}.preloader .slice:nth-child(2){transform:rotateZ(-120deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.74s preload-hide-2 both 1}.preloader .slice:nth-child(3){transform:rotateZ(-180deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.66s preload-hide-3 both 1}.preloader .slice:nth-child(4){transform:rotateZ(-240deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.58s preload-hide-4 both 1}.preloader .slice:nth-child(5){transform:rotateZ(-300deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.5s preload-hide-5 both 1}.preloader .slice:nth-child(6){transform:rotateZ(-360deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.42s preload-hide-6 both 1}.preloader.loading{animation:2s preload-flip steps(2) infinite both}.preloader.loading .slice:nth-child(1){transform:rotateZ(-60deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-1 linear infinite both}.preloader.loading .slice:nth-child(2){transform:rotateZ(-120deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-2 linear infinite both}.preloader.loading .slice:nth-child(3){transform:rotateZ(-180deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-3 linear infinite both}.preloader.loading .slice:nth-child(4){transform:rotateZ(-240deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-4 linear infinite both}.preloader.loading .slice:nth-child(5){transform:rotateZ(-300deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-5 linear infinite both}.preloader.loading .slice:nth-child(6){transform:rotateZ(-360deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-6 linear infinite both}#ajaxContainerLoading,.ajaxLoading{height:130px;text-align:center;margin-top:70px;margin-bottom:100px;display:none}#comfortUpdateIcon{height:1em;margin-left:0.5em}#comfortUpdateGeneralWrap h3.maintitle{background-color:transparent}#comfortUpdateGeneralWrap .on{font-weight:bold;font-size:1em;padding-right:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap .on span{display:block;padding:0.1em;padding-right:0.5em;width:40%}#comfortUpdateGeneralWrap .off{font-size:0.9em;padding-right:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap #welcomeMessage,#comfortUpdateGeneralWrap #btn-container{border-left:1px solid #EEE}#comfortUpdateGeneralWrap #key-actions{padding-right:1em}#update-alert.unstable-update{background-color:#fff;border:1px solid #A0352F;color:#A0352F;margin-top:1em}html body .nav-tabs>li.active>a,html body .nav-tabs>li.active>a:hover,html body .nav-tabs>li.active>a:focus{border-bottom-color:transparent;cursor:default}.answertable.table td{vertical-align:middle}.btnaddanswer:hover,.btndelanswer:hover{cursor:pointer}.jumbotron p{font-weight:300}span[data-tooltip]{display:inline-block}.glyphicon-move:hover{cursor:pointer}.answertable .glyphicon-pencil{margin-right:3px}#statisticsview .panel{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}#explorer-collapse{border-bottom:none}#explorer-collapse:hover,#sideMenu #dropdown li a#explorer-collapse[aria-expanded="true"],#sideMenu #dropdown li a.question-group-collapse[aria-expanded="true"]{width:auto}#sideMenu #dropdown #explorer li#questionexplorer-group-container,#sideMenu #dropdown li#questionexplorer-group-container>a{line-height:1.4}#sideMenu #dropdown #explorer li#questionexplorer-group-container:hover,#sideMenu #dropdown li#questionexplorer-group-container:hover>a{background-color:#fafafa;font-weight:400;line-height:1.4}.explorer-group-title{margin-top:1em;padding:0em 0 1em 0}.explorer-group-title a.explorer-group,.question-collapse-title{color:#163c19}#item-container,#jcarousel-wrapper-container{width:300px}#item-container h4{margin-bottom:30px}.selectTemplate{margin-top:10px}.imgSelectTemplate{cursor:pointer}.template-img{padding:1em}#additional_languages{min-width:200px}#available_languages{min-width:200px}.modal{top:50px}#tokensidemenu{border-top:1px solid #e3e3e3}.question-item{padding:1em;margin:1em 0 1em 0;cursor:pointer}.placeholder{padding:1em;margin:1em 0 1em 0}.no-gutter>[class*='col-']{padding-left:0;padding-right:0}.inputbuttons{width:120px}.inputbuttons-square{width:20px;height:16px;float:right}.jqgrid-tokens-number-padding{padding-left:4px}.tooltip{position:fixed}.scrolling-wrapper{overflow-x:scroll;overflow-y:hidden}#search{display:none;overflow-y:auto}iframe#dialog{width:100%;height:100%}.ui-jqgrid,.ui-jqgrid-view,.ui-jqgrid-titlebar,.ui-jqgrid-toppager,.ui-jqgrid-pager{min-width:100%;max-width:100%;margin-left:0;margin-right:0;box-sizing:border-box}#pager{position:relative}.ui-sortable-placeholder{color:#f00;background-color:#0f0;border:solid black 5px}.tokenatt-arrow{position:absolute;left:-0.5em}.csvatt-arrow{position:absolute;left:-0.5em;top:1em}.no-padding{padding:0}.droppable-new,.droppable-csv{min-height:40px;height:100%}#labelsetpreview{overflow-x:hidden}#labelsetbrowserModal .modal-dialog{width:80%}.question-filter-container{border:1px solid #efefef;padding:2em;margin:0;min-width:33%;max-width:100%}td.subquestion-actions span:hover{cursor:pointer}.template-img{padding-top:0}.full-page-wrapper .handleAccordion{display:none}div#gview_displayresponses th#displayresponses_cb{width:35px}.detailbrowsetable tr th{width:50%}.lead{font-weight:300}.time-statistics-row-buttons,.nowrap{white-space:nowrap}.time-statistics-table{overflow:auto}.mixed{opacity:0.4}#sidemenu-home{padding-right:15px}#quick-menu-container{position:absolute;width:50px;left:0;top:50px}.quick-icon-wrapper{padding:15px;height:50px}#quick-menu-container .glyphicon{font-size:18px}#quick-menu-container .navbar-brand{padding:0}.panel-group .panel{overflow:visible}a.explorer-group:hover,a.explorer-group:focus{text-decoration:none}.question-explorer-question{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis}.question-explorer-group-name{display:inline-block;max-width:140px;overflow:hidden;position:relative;top:5px;text-overflow:ellipsis}.question-explorer-add-question{position:relative;top:5px}.explorer-group-title a.disabled{opacity:0.5}.btn.readonly,.btn.readonly:hover{cursor:not-allowed;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;border:1px solid #cccccc}#displayResponsesContainer .ui-jqgrid-bdiv,#gbox_displaytokens .ui-jqgrid-bdiv{overflow:hidden}h1,.h1{font-size:24px}h2,.h2{font-size:22px}h3,.h3{font-size:20px}.statisticstable{word-wrap:break-word}.summary-container,.summary,#massive-action-container,#surveyListActions,.listActions,.pager-container ls-ba .pager,.pager-container ls-ba .pager .pagination{margin:0;margin-bottom:20px}.summary-container{text-align:left}#massive-action-container,#surveyListActions,.listActions{padding-right:0px;text-align:right}.push-grid-pager{min-height:25em}.has-link{cursor:pointer}.has-link a:hover{text-decoration:none}.has-link a{color:black}.hoverAction .table-striped>tbody>tr:hover>td{background-color:transparent}.hoverAction .table-striped>tbody>tr:hover>td>a:not(.btn){color:white}.ui-priority-secondary{background-color:#f5f5f5}#token-grid .table .filters>td .filter-container{padding:0px}#token-grid table.table{width:none;max-width:none}#token-grid table thead tr #action{min-width:150px}#token-grid .filter-container{min-width:50px}#token-grid table tr.odd .blank_button{border-color:#f9f9f9;background-color:#f9f9f9;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}#token-grid table tr .blank_button{border-color:white;background-color:white}#token-grid table tr.selected .blank_button{border-color:#eee;background-color:#eee}#token-grid .name{min-width:150px}#tokenListPager{position:relative}.blank_button span{max-width:12px}#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-4,#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-8{padding:0}div[id^="alertmod_"]{display:none}.ui-helper-clearfix{min-height:0}.ui-dialog .ui-dialog-buttonpane{background-image:none;border-width:1px 0 0;margin-top:0.5em;padding:0.3em 0.4em 0.5em 1em;text-align:right}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-helper-clearfix::after{clear:both}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.yiiLog{margin-bottom:70px}table#responsedetail tr td{max-width:100px;word-wrap:break-word}.in-title{position:relative;top:-65px;left:15px}.input-group-addon{padding:5px 12px}.multiselect-container>li>a>label>input[type="checkbox"]{margin-right:0}.notification-list{top:100%;right:0;z-index:1000;float:right;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;border-radius:4px;background-clip:padding-box;overflow-y:auto}.notification-list>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;white-space:nowrap}.notification-list>li>a:hover,.notification-list>li>a:focus{text-decoration:none}.notification-list>.active>a,.notification-list>.active>a:hover,.notification-list>.active>a:focus{text-decoration:none;outline:0}.notification-list>.disabled>a:hover,.notification-list>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}#notification-outer-ul{height:400px;width:400px}#notification-inner-ul{height:340px;width:390px}.select2-container--bootstrap .select2-selection{font-family:Roboto !important}#responses-grid .table-condensed.upload-question{margin-bottom:0;background-color:inherit}#responses-grid .filter-container{min-width:6em}.edit-participant-modal-body{max-height:500px;overflow-y:auto}.scenario-heading{padding:0}.scenario-heading .delete-scenario-form{padding-top:6px}.condition-header-button{margin-top:-10px;margin-left:10px}.margin-left{margin-right:5px}.conditions-table{margin-bottom:0}.condition-and-or-or{margin-right:20px}#editconditions .tab-content,#quick-add-conditions-form .tab-content{padding-top:0}#quick-add-condition-modal .modal-dialog{width:800px}#login-panel{max-width:400px;margin-right:auto;margin-left:auto}.row-eq-height{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:30px}.welcome .panel{height:110%}.welcome .panel-body{padding:0px}.welcome .panel-heading{height:25%;display:flex;align-items:center;justify-content:center}.welcome .panel-title{font-weight:500}.welcome .panel-body{height:75%;width:100%}.welcome .panel-body .panel-body-ico,.welcome .panel-body .panel-body-link{width:100%;display:flex;align-items:center;justify-content:center}.welcome .panel-body .panel-body-ico{height:70%}.welcome .panel-body .panel-body-link{height:30%}input[type="file"].form-control{border:none;padding-right:0px}#insertmethod-container{display:none}@media print{@page{size:A4 portrait;margin-right:1.0cm;margin-left:1.5cm;margin-top:1.2cm;margin-bottom:1cm;overflow:visible}*{overflow:visible !important}html,body{margin:0;max-width:0%}body{text-align:right;margin:0;padding:0;overflow:visible;min-width:19.0cm !important;min-height:27.7cm;width:100% !important;height:100%}body.onStatistics a:not(.printable),body.onStatistics p:not(.printable),body.onStatistics button:not(.printable),body.onStatistics nav:not(.printable),body.onStatistics form:not(.printable),body.onStatistics footer:not(.printable),body.onStatistics h1:not(.printable),body.onStatistics h2:not(.printable),body.onStatistics h3:not(.printable),body.onStatistics h4:not(.printable),body.onStatistics h5:not(.printable),body.onStatistics .jumbotron,body.onStatistics .menubar,body.onStatistics>div:not(#vue-apps-main-container),body.onStatistics div#vue-apps-main-container>div:not(#pjax-content),body.onStatistics div#vue-apps-main-container>div#pjax-content>div:not(#in_survey_common),body.onStatistics div#in_survey_common>div:not(#statisticsview){display:none !important;visibility:hidden !important;overflow:hidden !important;padding:0;position:absolute;right:-1000px;top:-1000px;margin:0 !important;width:0px !important}body.onStatistics div.row{display:block !important;position:static}body.onStatistics div[class^="col-"]{display:block !important;float:none !important;position:static}body.onStatistics>div#vue-apps-main-container,body.onStatistics div#in_survey_common,body.onStatistics>div#vue-apps-main-container>div#pjax-content,body.onStatistics #statisticsview{display:block;position:static;width:99% !important;max-width:95% !important;min-width:19.6cm !important;min-height:29.7cm !important;height:100% !important;overflow:visible;page-break-inside:auto;break-inside:auto}body.onStatistics #statisticsview div,body.onStatistics #statisticsview table{position:static}body.onStatistics #statisticsview div:not(#statsContainerLoading){width:99% !important;max-width:100% !important;float:none !important;display:block}body.onStatistics #statisticsview a.printable,body.onStatistics #statisticsview p.printable,body.onStatistics #statisticsview span.printable,body.onStatistics #statisticsview table.printable,body.onStatistics #statisticsview table.statisticstable,body.onStatistics #statisticsview h1.printable,body.onStatistics #statisticsview h2.printable,body.onStatistics #statisticsview h3.printable,body.onStatistics #statisticsview h4.printable,body.onStatistics #statisticsview h5.printable{width:95% !important;max-width:100%;float:none;margin-right:0 !important;margin-left:0 !important;margin-top:1cm;margin-bottom:1cm;position:static}body.onStatistics div.printable{position:static;page-break-after:auto;break-after:auto;page-break-inside:avoid;break-inside:avoid;margin-right:0 !important;margin-left:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics div.printable table{position:static;page-break-inside:avoid;break-inside:avoid;margin-right:0 !important;margin-left:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics table.printable thead,body.onStatistics table.printable tbody,body.onStatistics table.printable tr{width:100% !important;margin:0 !important;padding:0 !important}body.onStatistics table.printable *{page-break-after:avoid;break-after:avoid;page-break-before:avoid;break-before:avoid;page-break-inside:avoid;break-inside:avoid}body.onStatistics .side-body{max-width:100%;margin:0 !important;padding:0 !important}body.onStatistics .side-menu{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important;margin-right:0 px !important}body.onStatistics .absolute-wrapper{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important}}.currentQuestionTypeImageContainer img{max-width:100%}#accordion-container .panel-heading>a{width:100%;display:block}#accordion_questionTypeSelector .panel-title>a{width:100%;display:block}.small-screens-menus{padding-right:28px}.custom.custom-no-padding{padding:0}.custom.custom-no-margin{padding:0}.custom.custom-padding.add5{padding:5px}.custom.custom-padding.left-5{padding-right:5px}.custom.custom-padding.right-5{padding-left:5px}.custom.custom-padding.top-5{padding-top:5px}.custom.custom-padding.bottom-5{padding-bottom:5px}.custom.custom-padding.add10{padding:10px}.custom.custom-padding.left-10{padding-right:10px}.custom.custom-padding.right-10{padding-left:10px}.custom.custom-padding.top-10{padding-top:10px}.custom.custom-padding.bottom-10{padding-bottom:10px}.custom.custom-padding.add15{padding:15px}.custom.custom-padding.left-15{padding-right:15px}.custom.custom-padding.right-15{padding-left:15px}.custom.custom-padding.top-15{padding-top:15px}.custom.custom-padding.bottom-15{padding-bottom:15px}.custom.custom-padding.add20{padding:20px}.custom.custom-padding.left-20{padding-right:20px}.custom.custom-padding.right-20{padding-left:20px}.custom.custom-padding.top-20{padding-top:20px}.custom.custom-padding.bottom-20{padding-bottom:20px}.custom.custom-padding.add25{padding:25px}.custom.custom-padding.left-25{padding-right:25px}.custom.custom-padding.right-25{padding-left:25px}.custom.custom-padding.top-25{padding-top:25px}.custom.custom-padding.bottom-25{padding-bottom:25px}.custom.custom-padding.add30{padding:30px}.custom.custom-padding.left-30{padding-right:30px}.custom.custom-padding.right-30{padding-left:30px}.custom.custom-padding.top-30{padding-top:30px}.custom.custom-padding.bottom-30{padding-bottom:30px}.custom.custom-padding.add35{padding:35px}.custom.custom-padding.left-35{padding-right:35px}.custom.custom-padding.right-35{padding-left:35px}.custom.custom-padding.top-35{padding-top:35px}.custom.custom-padding.bottom-35{padding-bottom:35px}@media only screen and (min-width: 961px){.custom.custom-padding-responsive.large.add5{padding:5px}.custom.custom-padding-responsive.large.left-5{padding-right:5px}.custom.custom-padding-responsive.large.right-5{padding-left:5px}.custom.custom-padding-responsive.large.top-5{padding-top:5px}.custom.custom-padding-responsive.large.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.large.add10{padding:10px}.custom.custom-padding-responsive.large.left-10{padding-right:10px}.custom.custom-padding-responsive.large.right-10{padding-left:10px}.custom.custom-padding-responsive.large.top-10{padding-top:10px}.custom.custom-padding-responsive.large.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.large.add15{padding:15px}.custom.custom-padding-responsive.large.left-15{padding-right:15px}.custom.custom-padding-responsive.large.right-15{padding-left:15px}.custom.custom-padding-responsive.large.top-15{padding-top:15px}.custom.custom-padding-responsive.large.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.large.add20{padding:20px}.custom.custom-padding-responsive.large.left-20{padding-right:20px}.custom.custom-padding-responsive.large.right-20{padding-left:20px}.custom.custom-padding-responsive.large.top-20{padding-top:20px}.custom.custom-padding-responsive.large.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.large.add25{padding:25px}.custom.custom-padding-responsive.large.left-25{padding-right:25px}.custom.custom-padding-responsive.large.right-25{padding-left:25px}.custom.custom-padding-responsive.large.top-25{padding-top:25px}.custom.custom-padding-responsive.large.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.large.add30{padding:30px}.custom.custom-padding-responsive.large.left-30{padding-right:30px}.custom.custom-padding-responsive.large.right-30{padding-left:30px}.custom.custom-padding-responsive.large.top-30{padding-top:30px}.custom.custom-padding-responsive.large.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.large.add35{padding:35px}.custom.custom-padding-responsive.large.left-35{padding-right:35px}.custom.custom-padding-responsive.large.right-35{padding-left:35px}.custom.custom-padding-responsive.large.top-35{padding-top:35px}.custom.custom-padding-responsive.large.bottom-35{padding-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-padding-responsive.medium.add5{padding:5px}.custom.custom-padding-responsive.medium.left-5{padding-right:5px}.custom.custom-padding-responsive.medium.right-5{padding-left:5px}.custom.custom-padding-responsive.medium.top-5{padding-top:5px}.custom.custom-padding-responsive.medium.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.medium.add10{padding:10px}.custom.custom-padding-responsive.medium.left-10{padding-right:10px}.custom.custom-padding-responsive.medium.right-10{padding-left:10px}.custom.custom-padding-responsive.medium.top-10{padding-top:10px}.custom.custom-padding-responsive.medium.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.medium.add15{padding:15px}.custom.custom-padding-responsive.medium.left-15{padding-right:15px}.custom.custom-padding-responsive.medium.right-15{padding-left:15px}.custom.custom-padding-responsive.medium.top-15{padding-top:15px}.custom.custom-padding-responsive.medium.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.medium.add20{padding:20px}.custom.custom-padding-responsive.medium.left-20{padding-right:20px}.custom.custom-padding-responsive.medium.right-20{padding-left:20px}.custom.custom-padding-responsive.medium.top-20{padding-top:20px}.custom.custom-padding-responsive.medium.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.medium.add25{padding:25px}.custom.custom-padding-responsive.medium.left-25{padding-right:25px}.custom.custom-padding-responsive.medium.right-25{padding-left:25px}.custom.custom-padding-responsive.medium.top-25{padding-top:25px}.custom.custom-padding-responsive.medium.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.medium.add30{padding:30px}.custom.custom-padding-responsive.medium.left-30{padding-right:30px}.custom.custom-padding-responsive.medium.right-30{padding-left:30px}.custom.custom-padding-responsive.medium.top-30{padding-top:30px}.custom.custom-padding-responsive.medium.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.medium.add35{padding:35px}.custom.custom-padding-responsive.medium.left-35{padding-right:35px}.custom.custom-padding-responsive.medium.right-35{padding-left:35px}.custom.custom-padding-responsive.medium.top-35{padding-top:35px}.custom.custom-padding-responsive.medium.bottom-35{padding-bottom:35px}}.custom.custom-padding-responsive.small.add5{padding:5px}.custom.custom-padding-responsive.small.left-5{padding-right:5px}.custom.custom-padding-responsive.small.right-5{padding-left:5px}.custom.custom-padding-responsive.small.top-5{padding-top:5px}.custom.custom-padding-responsive.small.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.small.add10{padding:10px}.custom.custom-padding-responsive.small.left-10{padding-right:10px}.custom.custom-padding-responsive.small.right-10{padding-left:10px}.custom.custom-padding-responsive.small.top-10{padding-top:10px}.custom.custom-padding-responsive.small.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.small.add15{padding:15px}.custom.custom-padding-responsive.small.left-15{padding-right:15px}.custom.custom-padding-responsive.small.right-15{padding-left:15px}.custom.custom-padding-responsive.small.top-15{padding-top:15px}.custom.custom-padding-responsive.small.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.small.add20{padding:20px}.custom.custom-padding-responsive.small.left-20{padding-right:20px}.custom.custom-padding-responsive.small.right-20{padding-left:20px}.custom.custom-padding-responsive.small.top-20{padding-top:20px}.custom.custom-padding-responsive.small.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.small.add25{padding:25px}.custom.custom-padding-responsive.small.left-25{padding-right:25px}.custom.custom-padding-responsive.small.right-25{padding-left:25px}.custom.custom-padding-responsive.small.top-25{padding-top:25px}.custom.custom-padding-responsive.small.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.small.add30{padding:30px}.custom.custom-padding-responsive.small.left-30{padding-right:30px}.custom.custom-padding-responsive.small.right-30{padding-left:30px}.custom.custom-padding-responsive.small.top-30{padding-top:30px}.custom.custom-padding-responsive.small.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.small.add35{padding:35px}.custom.custom-padding-responsive.small.left-35{padding-right:35px}.custom.custom-padding-responsive.small.right-35{padding-left:35px}.custom.custom-padding-responsive.small.top-35{padding-top:35px}.custom.custom-padding-responsive.small.bottom-35{padding-bottom:35px}.custom.custom-margin.add5{margin:5px}.custom.custom-margin.left-5{margin-right:5px}.custom.custom-margin.right-5{margin-left:5px}.custom.custom-margin.top-5{margin-top:5px}.custom.custom-margin.bottom-5{margin-bottom:5px}.custom.custom-margin.add10{margin:10px}.custom.custom-margin.left-10{margin-right:10px}.custom.custom-margin.right-10{margin-left:10px}.custom.custom-margin.top-10{margin-top:10px}.custom.custom-margin.bottom-10{margin-bottom:10px}.custom.custom-margin.add15{margin:15px}.custom.custom-margin.left-15{margin-right:15px}.custom.custom-margin.right-15{margin-left:15px}.custom.custom-margin.top-15{margin-top:15px}.custom.custom-margin.bottom-15{margin-bottom:15px}.custom.custom-margin.add20{margin:20px}.custom.custom-margin.left-20{margin-right:20px}.custom.custom-margin.right-20{margin-left:20px}.custom.custom-margin.top-20{margin-top:20px}.custom.custom-margin.bottom-20{margin-bottom:20px}.custom.custom-margin.add25{margin:25px}.custom.custom-margin.left-25{margin-right:25px}.custom.custom-margin.right-25{margin-left:25px}.custom.custom-margin.top-25{margin-top:25px}.custom.custom-margin.bottom-25{margin-bottom:25px}.custom.custom-margin.add30{margin:30px}.custom.custom-margin.left-30{margin-right:30px}.custom.custom-margin.right-30{margin-left:30px}.custom.custom-margin.top-30{margin-top:30px}.custom.custom-margin.bottom-30{margin-bottom:30px}.custom.custom-margin.add35{margin:35px}.custom.custom-margin.left-35{margin-right:35px}.custom.custom-margin.right-35{margin-left:35px}.custom.custom-margin.top-35{margin-top:35px}.custom.custom-margin.bottom-35{margin-bottom:35px}.custom.custom-child-margin.left-to-right *{margin-right:3px}.custom.custom-child-margin.right-to-left *{margin-left:3px}@media only screen and (min-width: 961px){.custom.custom-margin-responsive.large.add5{margin:5px}.custom.custom-margin-responsive.large.left-5{margin-right:5px}.custom.custom-margin-responsive.large.right-5{margin-left:5px}.custom.custom-margin-responsive.large.top-5{margin-top:5px}.custom.custom-margin-responsive.large.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.large.add10{margin:10px}.custom.custom-margin-responsive.large.left-10{margin-right:10px}.custom.custom-margin-responsive.large.right-10{margin-left:10px}.custom.custom-margin-responsive.large.top-10{margin-top:10px}.custom.custom-margin-responsive.large.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.large.add15{margin:15px}.custom.custom-margin-responsive.large.left-15{margin-right:15px}.custom.custom-margin-responsive.large.right-15{margin-left:15px}.custom.custom-margin-responsive.large.top-15{margin-top:15px}.custom.custom-margin-responsive.large.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.large.add20{margin:20px}.custom.custom-margin-responsive.large.left-20{margin-right:20px}.custom.custom-margin-responsive.large.right-20{margin-left:20px}.custom.custom-margin-responsive.large.top-20{margin-top:20px}.custom.custom-margin-responsive.large.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.large.add25{margin:25px}.custom.custom-margin-responsive.large.left-25{margin-right:25px}.custom.custom-margin-responsive.large.right-25{margin-left:25px}.custom.custom-margin-responsive.large.top-25{margin-top:25px}.custom.custom-margin-responsive.large.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.large.add30{margin:30px}.custom.custom-margin-responsive.large.left-30{margin-right:30px}.custom.custom-margin-responsive.large.right-30{margin-left:30px}.custom.custom-margin-responsive.large.top-30{margin-top:30px}.custom.custom-margin-responsive.large.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.large.add35{margin:35px}.custom.custom-margin-responsive.large.left-35{margin-right:35px}.custom.custom-margin-responsive.large.right-35{margin-left:35px}.custom.custom-margin-responsive.large.top-35{margin-top:35px}.custom.custom-margin-responsive.large.bottom-35{margin-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-margin-responsive.medium.add5{margin:5px}.custom.custom-margin-responsive.medium.left-5{margin-right:5px}.custom.custom-margin-responsive.medium.right-5{margin-left:5px}.custom.custom-margin-responsive.medium.top-5{margin-top:5px}.custom.custom-margin-responsive.medium.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.medium.add10{margin:10px}.custom.custom-margin-responsive.medium.left-10{margin-right:10px}.custom.custom-margin-responsive.medium.right-10{margin-left:10px}.custom.custom-margin-responsive.medium.top-10{margin-top:10px}.custom.custom-margin-responsive.medium.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.medium.add15{margin:15px}.custom.custom-margin-responsive.medium.left-15{margin-right:15px}.custom.custom-margin-responsive.medium.right-15{margin-left:15px}.custom.custom-margin-responsive.medium.top-15{margin-top:15px}.custom.custom-margin-responsive.medium.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.medium.add20{margin:20px}.custom.custom-margin-responsive.medium.left-20{margin-right:20px}.custom.custom-margin-responsive.medium.right-20{margin-left:20px}.custom.custom-margin-responsive.medium.top-20{margin-top:20px}.custom.custom-margin-responsive.medium.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.medium.add25{margin:25px}.custom.custom-margin-responsive.medium.left-25{margin-right:25px}.custom.custom-margin-responsive.medium.right-25{margin-left:25px}.custom.custom-margin-responsive.medium.top-25{margin-top:25px}.custom.custom-margin-responsive.medium.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.medium.add30{margin:30px}.custom.custom-margin-responsive.medium.left-30{margin-right:30px}.custom.custom-margin-responsive.medium.right-30{margin-left:30px}.custom.custom-margin-responsive.medium.top-30{margin-top:30px}.custom.custom-margin-responsive.medium.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.medium.add35{margin:35px}.custom.custom-margin-responsive.medium.left-35{margin-right:35px}.custom.custom-margin-responsive.medium.right-35{margin-left:35px}.custom.custom-margin-responsive.medium.top-35{margin-top:35px}.custom.custom-margin-responsive.medium.bottom-35{margin-bottom:35px}}.custom.custom-margin-responsive.small.add5{margin:5px}.custom.custom-margin-responsive.small.left-5{margin-right:5px}.custom.custom-margin-responsive.small.right-5{margin-left:5px}.custom.custom-margin-responsive.small.top-5{margin-top:5px}.custom.custom-margin-responsive.small.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.small.add10{margin:10px}.custom.custom-margin-responsive.small.left-10{margin-right:10px}.custom.custom-margin-responsive.small.right-10{margin-left:10px}.custom.custom-margin-responsive.small.top-10{margin-top:10px}.custom.custom-margin-responsive.small.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.small.add15{margin:15px}.custom.custom-margin-responsive.small.left-15{margin-right:15px}.custom.custom-margin-responsive.small.right-15{margin-left:15px}.custom.custom-margin-responsive.small.top-15{margin-top:15px}.custom.custom-margin-responsive.small.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.small.add20{margin:20px}.custom.custom-margin-responsive.small.left-20{margin-right:20px}.custom.custom-margin-responsive.small.right-20{margin-left:20px}.custom.custom-margin-responsive.small.top-20{margin-top:20px}.custom.custom-margin-responsive.small.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.small.add25{margin:25px}.custom.custom-margin-responsive.small.left-25{margin-right:25px}.custom.custom-margin-responsive.small.right-25{margin-left:25px}.custom.custom-margin-responsive.small.top-25{margin-top:25px}.custom.custom-margin-responsive.small.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.small.add30{margin:30px}.custom.custom-margin-responsive.small.left-30{margin-right:30px}.custom.custom-margin-responsive.small.right-30{margin-left:30px}.custom.custom-margin-responsive.small.top-30{margin-top:30px}.custom.custom-margin-responsive.small.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.small.add35{margin:35px}.custom.custom-margin-responsive.small.left-35{margin-right:35px}.custom.custom-margin-responsive.small.right-35{margin-left:35px}.custom.custom-margin-responsive.small.top-35{margin-top:35px}.custom.custom-margin-responsive.small.bottom-35{margin-bottom:35px}textarea.form-control.input-text{height:2.4em}.template-files-delete-button{margin:1px 0 0 0;padding:0 5px}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{font-family:'FontAwesome' !important}table.dataTable thead .sorting:after{content:"\f0dc" !important}table.dataTable thead .sorting_asc:after{content:"\f0de" !important}table.dataTable thead .sorting_desc:after{content:"\f0dd" !important}.menubar.sticky{position:fixed !important;top:0 !important;margin-top:0 !important}#edit-question-form{margin-right:-15px;margin-left:-15px}#advanced-question-editor{margin-right:-15px;margin-left:-15px}#advanced-question-editor>div>.container-center>.row{margin-right:-15px;margin-left:-15px}.subquestions-table-wrapper,.answeroptions-table-wrapper{display:block;overflow:auto;margin-bottom:20px}.subquestions-table,.answeroptions-table{margin-bottom:0px}.subquestions-table input.code,.answeroptions-table input.code{min-width:70px}.subquestions-table>tbody>tr>td:first-of-type,.answeroptions-table>tbody>tr>td:first-of-type{padding-right:0}.subquestions-table>tbody>tr>td:last-of-type,.answeroptions-table>tbody>tr>td:last-of-type{padding-left:0}.jcarousel-wrapper{margin:20px auto;position:relative;border:10px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 0 2px #999;-moz-box-shadow:0 0 2px #999;box-shadow:0 0 2px #999}.jcarousel{position:relative;overflow:hidden;width:100%}.jcarousel ul{width:20000em;position:relative;list-style:none;margin:0;padding:0}.jcarousel li{width:200px;float:right;border:1px solid #fff;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jcarousel img{display:block;max-width:100%;height:auto !important}.jcarousel-control-prev,.jcarousel-control-next{position:absolute;top:50%;margin-top:-15px;width:30px;height:30px;text-align:center;background:#4E443C;color:#fff;text-decoration:none;text-shadow:0 0 1px #000;font:24px/27px Arial, sans-serif;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;-webkit-box-shadow:0 0 4px #F0EFE7;-moz-box-shadow:0 0 4px #F0EFE7;box-shadow:0 0 4px #F0EFE7}.jcarousel-control-prev{right:15px}.jcarousel-control-next{left:15px}.jcarousel-pagination{position:absolute;bottom:-40px;right:50%;-webkit-transform:translate(50%, 0);-ms-transform:translate(50%, 0);transform:translate(50%, 0);margin:0}.jcarousel-pagination a{text-decoration:none;display:inline-block;font-size:11px;height:10px;width:10px;line-height:10px;background:#fff;color:#4E443C;border-radius:10px;text-indent:-9999px;margin-left:7px;-webkit-box-shadow:0 0 2px #4E443C;-moz-box-shadow:0 0 2px #4E443C;box-shadow:0 0 2px #4E443C}.jcarousel-pagination a.active{background:#4E443C;color:#fff;opacity:1;-webkit-box-shadow:0 0 2px #F0EFE7;-moz-box-shadow:0 0 2px #F0EFE7;box-shadow:0 0 2px #F0EFE7}.template-miniature{cursor:pointer}.item.inactive{display:none} +.jcarousel-wrapper{margin:20px auto;position:relative;border:10px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 0 2px #999;-moz-box-shadow:0 0 2px #999;box-shadow:0 0 2px #999}.jcarousel{position:relative;overflow:hidden;width:100%}.jcarousel ul{width:20000em;position:relative;list-style:none;margin:0;padding:0}.jcarousel li{width:200px;float:right;border:1px solid #fff;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jcarousel img{display:block;max-width:100%;height:auto !important}.jcarousel-control-prev,.jcarousel-control-next{position:absolute;top:50%;margin-top:-15px;width:30px;height:30px;text-align:center;background:#4E443C;color:#fff;text-decoration:none;text-shadow:0 0 1px #000;font:24px/27px Arial, sans-serif;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;-webkit-box-shadow:0 0 4px #F0EFE7;-moz-box-shadow:0 0 4px #F0EFE7;box-shadow:0 0 4px #F0EFE7}.jcarousel-control-prev{right:15px}.jcarousel-control-next{left:15px}.jcarousel-pagination{position:absolute;bottom:-40px;right:50%;-webkit-transform:translate(50%, 0);-ms-transform:translate(50%, 0);transform:translate(50%, 0);margin:0}.jcarousel-pagination a{text-decoration:none;display:inline-block;font-size:11px;height:10px;width:10px;line-height:10px;background:#fff;color:#4E443C;border-radius:10px;text-indent:-9999px;margin-left:7px;-webkit-box-shadow:0 0 2px #4E443C;-moz-box-shadow:0 0 2px #4E443C;box-shadow:0 0 2px #4E443C}.jcarousel-pagination a.active{background:#4E443C;color:#fff;opacity:1;-webkit-box-shadow:0 0 2px #F0EFE7;-moz-box-shadow:0 0 2px #F0EFE7;box-shadow:0 0 2px #F0EFE7}.template-miniature{cursor:pointer}.item.inactive{display:none}#cpdbatt{min-height:100px}.draggable-container{min-height:300px}#newcreated,#tokenattribute,#csvattribute,#centralattribute{margin-right:0.75%;margin-left:0.75%;margin-bottom:20px}#tokenattribute{margin-right:1.5%}#centralattribute{margin-left:1.5%}#centralattribute .centralatt{padding-bottom:15px}#newcreated .attribute-item input{display:block;margin:2px auto;width:80%}#centralattribute div.centralatt div.token-attribute{margin-top:-5px;min-height:20px}#newcreated,#tokenattribute{height:100%}.heading{height:auto;padding-top:7px;font-weight:bold}div.mappable-attribute-wrapper{width:80%;margin:6px auto;padding:6px}div.attribute-item,.already-mapped-attribute{width:80%;margin:6px auto;padding:4px;text-align:center}#centralattribute .explanation{width:90%;margin:0 auto;text-align:right}#centralattribute .explanation-row{display:table-row}#centralattribute .explanation input,#centralattribute .explanation label{display:table-cell;padding-top:4px;padding-bottom:4px}#centralattribute .explanation label{padding-right:8px}.attribute-item.draggable{cursor:move}div.mappable-attribute-wrapper.target-hover{padding-bottom:27px}div.mappable-attribute-wrapper.paired.target-hover{padding-bottom:4px}div.mappable-attribute-wrapper.paired.ui-state-disabled{opacity:1;filter:alpha(opacity=100)}.draggable-container .attribute-column .ui-draggable-dragging{z-index:100}.centralatt{min-height:100px}#responses-column-filter-modal .checkbox label{vertical-align:text-bottom;white-space:nowrap;overflow-x:hidden}.responses-multiselect-checkboxes{overflow-y:scroll;height:60vh}.responses-column-filter-modal-checkbox-buttons{text-align:right;padding-bottom:15px}#selectable .ui-selecting{background:#8CCE00}#selectable .ui-selected{background:#C1DD7F;color:#000000}#selectable{list-style-type:none;margin:2px;padding:0;width:90%}#selectable li{padding:1em;font-size:1em;height:9px;text-align:center;margin:4px}.ui-icon.exporticon{background-image:url("images/export.gif")}#feedback{font-size:1.4em}#selectableadd .ui-selecting{background:#0066CC}#selectableadd .ui-selected{background:#0066CC;color:white}#selectableadd{list-style-type:none;margin:0;padding:0;width:90%;text-align:center}#selectableadd li{margin:3px;padding:0.4em;font-size:1 em;height:18px;text-align:center}.popupgroup{border:1px solid #DAE5F4;padding:10px;border-radius:3px;margin:8px}.grid-view .table td.button-column,.grid-view .table th.button-column{white-space:nowrap;text-align:initial}.grid-view .table th>.sort-link .caret{left:-10px}.dropdown-menu.larger-dropdown{min-width:240px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;right:100%;margin-top:-6px;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown-submenu:hover>a:after{border-right-color:#555}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{right:-100%;margin-right:10px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}#vue-apps-main-container{min-height:75vh}.fa-stack.halfed{height:1em;width:1em;line-height:1em}.fa-stack-1x.halfed{font-size:0.5em}.fa-1x.halfed{font-size:0.5em}.contain-pulse{display:flex;flex-flow:row wrap;justify-content:center;align-content:bottom;height:3em}.square{background:#0f3e12;border-radius:0.6em;box-sizing:border-box;height:2em;margin:.2em;overflow:hidden;padding:.5em;width:2em}.animate-pulse .square:nth-of-type(1){animation:pulse ease-in-out 1.8s infinite 0.2s}.animate-pulse .square:nth-of-type(2){animation:pulse ease-in-out 1.8s infinite 0.6s}.animate-pulse .square:nth-of-type(3){animation:pulse ease-in-out 1.8s infinite 1.0s}.animate-pulse .square:nth-of-type(4){animation:pulse ease-in-out 1.8s infinite 1.4s}.simpleWrapper{padding:0;margin:0;border:none;display:inline-block}#ls-loading{width:100%;height:100%;top:0;right:0;position:fixed;display:block;opacity:0.7;background-color:#fff;z-index:3501;text-align:center;display:none}#ls-loading-spinner{position:absolute;top:30%}#notif-container{position:fixed;top:5%;right:20%;width:60%;z-index:3500;background:rgba(255,255,255,0.1);min-height:0}.bg-white{background:#fff}.row-button-margin-bottom{margin-bottom:-5px}.row-button-margin-bottom .btn{margin-bottom:5px}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{right:2px}.ui-datepicker .ui-datepicker-next{left:10px}.ui-datepicker .ui-datepicker-prev-hover{right:1px}.ui-datepicker .ui-datepicker-next-hover{left:10px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;right:50%;margin-right:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:left;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-right:0;border-left:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:left;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-multi .ui-datepicker-group,.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:right}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:right}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:ltr}.ui-datepicker-rtl .ui-datepicker-prev{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-next{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:left}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0;border-right-width:1px}.side-body,.full-page-wrapper{min-height:100%;position:relative;margin-bottom:65px;padding:0}.side-body h3,.pagetitle,.list-surveys h3{position:relative;padding:0.5em;margin-bottom:1em}body{font-size:14px;line-height:1.428571429;margin:0}body .row{margin-left:0;margin-right:0}.jumbotron{text-align:center}.jumbotron.message-box{margin-top:1em}html{font-family:Roboto;font-weight:400;position:relative;min-height:100%}.main-container{padding-bottom:100px}#welcome-jumbotron{padding-top:0;padding-bottom:10px;background-color:transparent}#welcome-jumbotron>img{width:350px}.surveymanagerbar{margin-top:-20px;padding-top:5px}.surveymanagerbar .h3{margin-top:5px;font-weight:300;font-size:1.5em}.surveybar{padding-top:5px;padding-bottom:5px;z-index:1000}#fullpagebar{z-index:100}.tab-content{padding-top:2em}:focus{outline:none}.navbar-brand{font-weight:400}.navbar{border-radius:0 !important}.navbar a{font-weight:400}.navbar .dropdown-menu>li>a{font-weight:400}.navbar .nav-icon-btn>a .label{font-size:10px;padding:0 3px;line-height:15px;position:absolute;display:block;left:5px;top:10px}.lime-icon{display:inline-block;height:1em;width:1em}.mega-dropdown{position:static !important}.mega-dropdown-menu{padding:20px 0;width:100%}.mega-dropdown-menu .dropdown-header{font-size:18px;padding:5px 5px 5px 60px;line-height:30px}.mega-dropdown-menu>li>ul{padding:0;margin:0}.mega-dropdown-menu>li>ul>li{list-style:none}.mega-dropdown-menu>li>ul>li>a{display:block;padding:3px 5px}.mega-dropdown-menu>li ul>li>a:hover{text-decoration:none}.mega-dropdown-menu>li ul>li>a:focus{text-decoration:none}#mainmenu-dropdown{z-index:20002}.footer{z-index:100;position:absolute;bottom:0;display:block;width:100%;height:60px;padding-top:1em}.alert-security-update{margin:0}#update-container{margin-top:10px;z-index:999}#update-container .alert{margin-bottom:5px}#ajaxupdaterLayoutLoading{text-align:center;margin-top:200px;margin-bottom:200px;display:none}.box{border-radius:3px;padding:10px 25px;text-align:left;display:block;margin-top:10px}#info-header{font-size:3em}#info-footer{font-size:2em}.box-icon{border-radius:50%;display:table;height:50px;margin:0 auto;width:50px;margin-top:-31px}.box-icon span{display:table-cell;text-align:center;vertical-align:middle}@keyframes fadein{from{opacity:0}to{opacity:1}}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-ms-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes slidefromtop{from{top:-15px}to{top:0}}@-moz-keyframes slidefromtop{from{top:-15px}to{top:0}}@-webkit-keyframes slidefromtop{from{top:-15px}to{top:0}}@-ms-keyframes slidefromtop{from{top:-15px}to{top:0}}@-o-keyframes slidefromtop{from{top:-15px}to{top:0}}.form-group{margin-bottom:17px}.cke_contents{width:650px}.cke_toolgroup{cursor:pointer;cursor:hand;border-radius:0}.message-box{position:relative;margin-top:20px;animation:slidefromtop 1s}.welcome #lime-logo{animation:fadein 1s}.welcome .panel{position:relative;top:50px;opacity:0}.welcome .panel-body{text-align:center}.welcome .panel-body img{height:4em;margin-bottom:1em}.welcome .login-panel .panel-body img{margin-bottom:0}.alert{position:relative;animation:slidefromtop 1s}@media screen and (min-width: 1280px) and (max-width: 1440px){.welcome .panel{min-height:188px}}#welcomeModal{z-index:20000}@media screen and (min-width: 1280px) and (max-width: 1366px){#add_user_btn{margin-top:1.5em}#user-control-table .form-group label{min-width:80px}}.htmleditorboot{padding-top:2em}#edit-question-body{min-height:1200px}.profile-img-card{margin-top:32px}#profile-img{min-height:80px}@media screen and (min-width: 1280px) and (max-width: 1680px){#profile-img{min-height:0}}.login-panel{margin-top:40px}.login-content{text-align:right;padding:1em}.login-submit{text-align:left}#s2id_loginlang{border:none;padding:0}.ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-bdiv{overflow:hidden}.ui-jqgrid .ui-jqgrid-view .ui-jqgrid-toppager{background-image:none;background-color:transparent}.ui-jqgrid .ui-jqgrid-htable th div{height:auto}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input{margin-top:8px}.ui-jqgrid .ui-jqgrid-htable th.ui-th-column div input.cbox{margin:4px 0 0}.ui-jqgrid td input.cbox{margin:4px 0 0}.ui-jqgrid tr.ui-row-ltr td{border:none}#gs_completed{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.ui-th-column{margin-top:8px}.info>p{padding-top:10px;text-align:justify}.checkbox label:after{padding-right:4px;padding-top:2px;font-size:9px}.survey-action .panel-body img{height:3em}div.panel.disabled{opacity:0.5;border:none}div.panel.disabled *{opacity:0.5;border:none}div.panel.disabled a{cursor:default}#edit-group .tab-pane{padding:1em}.panel-clickable:hover{cursor:pointer;cursor:hand}.ui-widget-content .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-widget-header .ui-state-default{background-image:none;background-color:transparent;background-image:none;background-color:transparent}.ui-search-toolbar th div{min-height:40px}.absolute-wrapper{position:fixed;right:0;width:300px;height:100%}.side-menu{position:absolute;width:300px;padding:0;right:0}.side-menu .navbar{border:none;box-shadow:none}.side-menu .navbar-header{width:100%}.side-menu .navbar-nav li{display:block;width:100%}.side-menu .navbar-nav li a{padding:15px}.side-menu .navbar-nav li a .glyphicon{padding-left:10px}.side-menu .navbar-nav .question-link.active{background-color:transparent;padding:15px 0px 15px 15px;margin-bottom:5px;margin-left:-1px}.side-menu .navbar-nav .question-link.active:hover{text-decoration:none;cursor:default}.side-menu .navbar-nav .question-link{display:block;padding-right:0px}.side-menu .navbar-nav .question-link .question-collapse-title{padding-right:25px}.side-menu #dropdown{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}.side-menu #dropdown li:hover{font-weight:700}.side-menu #dropdown li.active:hover{cursor:default;background-color:transparent;margin-left:-1px}.side-menu #dropdown li.disabled:hover{font-weight:700;background-color:transparent}.side-menu #dropdown .caret{float:left;margin:9px 5px 0}.side-menu #dropdown .indicator{float:left}.side-menu #dropdown .panel-body{padding:0}.side-menu #dropdown .panel-body .navbar-nav{width:100%}.side-menu #dropdown .panel-body .navbar-nav li{padding-right:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li.panel{margin-bottom:0;background-color:transparent;border:none;border-radius:0;box-shadow:none}.side-menu #dropdown .panel-body .navbar-nav li.panel-default{padding-right:15px;border:none}.side-menu #dropdown .panel-body .navbar-nav li:last-child{border-bottom:none}.side-menu #dropdown .panel-body .panel-body{margin-right:-15px}.side-menu #dropdown .panel-body .panel>a{margin-right:-20px;padding-right:35px}.side-menu #dropdown .question-group-collapse .caret{float:none;margin-bottom:9px}.side-menu .hide-button{border:0;border-radius:0;padding:15px 18px}.side-menu .brand-name-wrapper{min-height:50px}.side-menu .brand-name-wrapper .navbar-brand{display:block}.side-menu #search{position:relative;z-index:1000}.side-menu #search .panel-body{padding:0}.side-menu #search .panel-body .navbar-form{padding:0;padding-left:50px;width:100%;margin:0;position:relative}.side-menu #search .panel-body .navbar-form .form-group{width:100%;position:relative}.side-menu #search .panel-body .navbar-form input{border:0;border-radius:0;box-shadow:none;width:100%;height:50px}.side-menu #search .panel-body .navbar-form .btn{position:absolute;left:0;top:0;border:0;border-radius:0;padding:15px 18px}.side-menu #explorer-collapse .caret{float:none;margin-bottom:9px}#explorer{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#explorer ul{font-size:0.9em}.dropdownstyle{border:0;margin-bottom:0;border-radius:0;background-color:transparent;box-shadow:none}#sideMenu{min-height:700px;overflow:hidden}#sideMenu a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown li:hover{width:100%;font-weight:700}#sideMenu #dropdown li:hover>a{width:100%;font-weight:700;border-bottom:none}#sideMenu #dropdown li a[aria-expanded="true"]{width:100%;font-weight:700}#sideMenu #dropdown li .active a:hover{width:100%;font-weight:700}#sideMenu #dropdown li>a:hover{width:100%;font-weight:700}#sideMenu #dropdown #explorer li:hover{font-weight:700}#sideMenu #dropdown #explorer li:hover>a{font-weight:700}#sideMenu #dropdown #explorer li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer li>a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li:hover>a{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li a[aria-expanded="true"]{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li .active a:hover{font-weight:700}#sideMenu #dropdown #explorer .questiongroupdropdown li>a:hover{font-weight:700}#sideMenu .navbar-default .navbar-nav>.active>a{background-color:transparent}#sideMenu .side-menu .dropdownlvl1>a:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover{font-weight:700}#sideMenu .sidemenuscontainer li:hover>a{font-weight:700}.side-menu-hidden{right:-250px}.side-body{min-height:800px}.side-body-margin{margin-right:70px}.question-group-collapse-title{display:block;padding-right:20px}.question-collapse-title{display:block;padding-right:30px}.main-content-container{max-width:95%;overflow-x:hidden;overflow-y:visible}.ck-content{transition:height 400ms ease-in-out}.ck-blurred{max-height:35vh}.ck-blurred:hover{max-height:initial}.ckedit-nocollapse .ck-blurred{max-height:initial}.ck-focused{max-height:initial}@media (max-width: 768px){.main-content-container{max-width:100%}.side-menu{position:relative;width:100%;height:0;border-left:0}.side-menu .brand-name-wrapper .navbar-brand{display:inline-block}@-moz-keyframes slidein{0%{right:-300px}100%{right:10px}}@-webkit-keyframes slidein{0%{right:-300px}100%{right:10px}}@keyframes slidein{0%{right:-300px}100%{right:10px}}@-moz-keyframes slideout{0%{right:0}100%{right:-300px}}@-webkit-keyframes slideout{0%{right:0}100%{right:-300px}}@keyframes slideout{0%{right:0}100%{right:-300px}}@-moz-keyframes bodyslidein{0%{right:0}100%{right:300px}}@-webkit-keyframes bodyslidein{0%{right:0}100%{right:300px}}@keyframes bodyslidein{0%{right:0}100%{right:300px}}@-moz-keyframes bodyslideout{0%{right:300px}100%{right:0}}@-webkit-keyframes bodyslideout{0%{right:300px}100%{right:0}}@keyframes bodyslideout{0%{right:300px}100%{right:0}}.side-body{margin-right:5px;margin-top:70px;position:relative;animation:bodyslideout 300ms forwards;transform-style:preserve-3d}.body-slide-in{animation:bodyslidein 300ms forwards;transform-style:preserve-3d}.navbar-toggle{border:0;float:right;padding:16px;margin:0;border-radius:0}.navbar-header{position:fixed;top:0;width:100%;z-index:3;background:white;border-bottom:1px solid var(--LS-admintheme-basecolor)}.side-menu-container>.navbar-nav{position:fixed;right:-300px;width:300px;top:43px;height:100%;animation:slideout 300ms forwards;transform-style:preserve-3d}.side-menu-container>.navbar-nav.slide-in{animation:slidein 300ms forwards;transform-style:preserve-3d}#search .panel-body .navbar-form{border-bottom:0}#search .panel-body .navbar-form .form-group{margin:0}#dropdown .panel-body .navbar-nav{margin:0}}.content-right{padding-right:0;padding-left:0}.content-right .col-lg-12{padding-right:0;padding-left:0}.toWhite a:hover{font-weight:700}.col-lg-12.content-right{padding-right:0;padding-left:0}.container-fluid .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff}.container-fluid .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{color:#fff}.btn-success:hover,.btn-danger:hover,.btn-warning:hover,.btn-info:hover{color:#fff}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:23px;padding-right:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-right:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-right:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-right:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#4caf50}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#ff9800}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#e51c23}@media (min-width: 768px){.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-right:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-right:0}.form-inline .has-feedback .form-control-feedback{top:0}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-right:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-right:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:30px}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.radio label,.radio-inline label,.checkbox label,.checkbox-inline label{padding-right:25px}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="radio"],.checkbox-inline input[type="radio"],.radio input[type="checkbox"],.radio-inline input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{margin-right:-25px}input[type="radio"],.radio input[type="radio"],.radio-inline input[type="radio"]{position:relative;margin-top:6px;margin-left:4px;vertical-align:top;border:none;background-color:transparent;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="radio"]:focus,.radio input[type="radio"]:focus,.radio-inline input[type="radio"]:focus{outline:none}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before,input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{content:"";display:block;width:18px;height:18px;border-radius:50%;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before{position:absolute;right:0;top:-3px;background-color:#2196f3;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{position:relative;top:-3px;border:2px solid #666666}input[type="radio"]:checked:before,.radio input[type="radio"]:checked:before,.radio-inline input[type="radio"]:checked:before{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}input[type="radio"]:disabled:checked:before,.radio input[type="radio"]:disabled:checked:before,.radio-inline input[type="radio"]:disabled:checked:before{background-color:#bbbbbb}input[type="radio"]:checked:after,.radio input[type="radio"]:checked:after,.radio-inline input[type="radio"]:checked:after{border-color:#2196f3}input[type="radio"]:disabled:after,.radio input[type="radio"]:disabled:after,.radio-inline input[type="radio"]:disabled:after,input[type="radio"]:disabled:checked:after,.radio input[type="radio"]:disabled:checked:after,.radio-inline input[type="radio"]:disabled:checked:after{border-color:#bbbbbb}input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:relative;border:none;margin-bottom:-4px;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="checkbox"]:focus,.checkbox input[type="checkbox"]:focus,.checkbox-inline input[type="checkbox"]:focus{outline:none}input[type="checkbox"]:focus:after,.checkbox input[type="checkbox"]:focus:after,.checkbox-inline input[type="checkbox"]:focus:after{border-color:#2196f3}input[type="checkbox"]:after,.checkbox input[type="checkbox"]:after,.checkbox-inline input[type="checkbox"]:after{content:"";display:block;width:18px;height:18px;margin-top:-2px;margin-left:5px;border:2px solid #666666;border-radius:2px;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="checkbox"]:checked:before,.checkbox input[type="checkbox"]:checked:before,.checkbox-inline input[type="checkbox"]:checked:before{content:"";position:absolute;top:0;right:6px;display:table;width:6px;height:12px;border:2px solid #fff;border-top-width:0;border-right-width:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}input[type="checkbox"]:indeterminate:before,.checkbox input[type="checkbox"]:indeterminate:before,.checkbox-inline input[type="checkbox"]:indeterminate:before{content:"";position:absolute;top:6px;right:2px;display:table;width:12px;height:0;border:1px solid #fff}input[type="checkbox"]:disabled:after,.checkbox input[type="checkbox"]:disabled:after,.checkbox-inline input[type="checkbox"]:disabled:after{border-color:#bbbbbb}input[type="checkbox"]:disabled:checked:after,.checkbox input[type="checkbox"]:disabled:checked:after,.checkbox-inline input[type="checkbox"]:disabled:checked:after{background-color:#bbbbbb;border-color:transparent}.has-warning input:not([type=checkbox]),.has-warning .form-control,.has-warning input.form-control[readonly],.has-warning input[type=text][readonly],.has-warning [type=text].form-control[readonly],.has-warning input:not([type=checkbox]):focus,.has-warning .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #ff9800;box-shadow:inset 0 -2px 0 #ff9800}.has-error input:not([type=checkbox]),.has-error .form-control,.has-error input.form-control[readonly],.has-error input[type=text][readonly],.has-error [type=text].form-control[readonly],.has-error input:not([type=checkbox]):focus,.has-error .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #e51c23;box-shadow:inset 0 -2px 0 #e51c23}.has-success input:not([type=checkbox]),.has-success .form-control,.has-success input.form-control[readonly],.has-success input[type=text][readonly],.has-success [type=text].form-control[readonly],.has-success input:not([type=checkbox]):focus,.has-success .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #4caf50;box-shadow:inset 0 -2px 0 #4caf50}.ui-widget-content{border:none;background:none;color:#404040}.ui-jqgrid .ui-jqgrid-titlebar{padding:1em}.container-fluid .ui-widget-content .ui-state-default,.container-fluid .ui-jqgrid .ui-jqgrid-bdiv{padding:0.5em;padding-bottom:0}.ui-dialog,.ui-jqdialog,.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-buttons.ui-draggable.ui-resizable{border-radius:4px;padding:1em;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqdialog-titlebar{height:2em;width:100%}.EditTable tr td{padding:1em}.ui-jqdialog-content input.FormElement{padding:.3em}.ui-jqdialog-content input[type="checkbox"].FormElement{padding:0em}.EditTable td select,.EditTable td textarea{display:inline-block;width:auto;vertical-align:middle;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;background-image:none;border-radius:4px;-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;color:#636363;background-color:#ffffff;border:1px solid #cccccc;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.EditTable td input,.EditTable td select,.EditTable td textarea{margin:0}input[type="text"],input[type="password"],.ui-autocomplete-input,textarea,.uneditable-input{display:inline-block;font-size:14px;line-height:18px;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input:focus,textarea:focus{outline:0;border-color:rgba(82,168,236,0.8);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 3px rgba(0,0,0,0.1),0 0 8px rgba(82,168,236,0.6)}#displayparticipants_firstname,#displayparticipants_lastname,#displayparticipants_owner_uid{padding-right:40px}#displayparticipants_language{padding-right:50px}#jqgh_displayparticipants_email{padding-right:140px}#displayparticipants_survey{padding-right:20px}.navtable{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.ui-jqgrid-title{padding:1em 1em 1em 0em;font-style:italic;font-weight:700}.ui-pg-button{padding:0.4em}.ui-pg-button:hover{cursor:pointer}.ui-state-disabled:hover{cursor:default}.ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all .ui-jqgrid.ui-widget.ui-widget-content.ui-corner-all{width:100%;overflow:hidden;box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}.modal-22{position:absolute;width:600px}.modal-22 .ui-jqdialog-titlebar .ui-jqdialog-title{width:80%}.modal-22 .ui-jqdialog-content{padding:1em}.ui-dialog-titlebar-close{border:1px solid transparent;border-radius:4px;float:left;color:#333;background-color:#fff;border-color:#ccc;display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;-webkit-appearance:button;cursor:pointer;overflow:visible;margin:0;font:normal normal normal 14px/1 FontAwesome}.ui-dialog-titlebar-close:before{content:"\f00d"}.em-expression{font-weight:bold}.data-entry-tbl tr.odd td,.data-entry-tbl tr.even td{padding:20px 0 20px 0}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{position:absolute;left:1em;top:10px}h3 .glyphicon-chevron-up,h3 .glyphicon-chevron-down,h3 .glyphicon-chevron-right{cursor:pointer}#carousel-example-generic{margin-right:20px}#carousel-example-generic .carousel-control{font-size:1em;top:-80px}#carousel-example-generic .left.carousel-control{right:-20px}#carousel-example-generic .right.carousel-control{left:-20px}#carousel-example-generic .panel-title{text-align:center;padding-top:0px}#carousel-example-generic .carousel-inner img{margin:auto;top:9px;position:relative}#carousel-example-generic .selectTemplate{display:inline-block;position:relative;right:0px;top:320px}#carousel-example-generic .carousel-caption{width:100%;right:0;top:0px;padding-top:0px}#carousel-example-generic,#carousel-example-generic .carousel-inner{min-height:150px}#carousel-example-generic .carousel-indicators{top:370px;width:80%;right:39%}#carousel-example-generic .carousel-indicators li{margin:0px;width:8px;height:8px}.side-body #carousel-example-generic h3{border:none}#systemoverview{margin:1em 0 1em 0}#systemoverview .info div{font-size:14px;margin-top:10px;margin-bottom:10px;font-weight:500;line-height:1.1;color:inherit;text-align:center}.preloader{position:absolute;top:50%;right:50%;font-size:20px;display:block;width:3.75em;height:4.25em;margin-right:-1.875em;margin-top:-2.125em;transform-origin:center center;transform:rotateY(-180deg) rotateZ(60deg)}.preloader .slice{border-top:1.125em solid transparent;border-left:none;border-bottom:1em solid transparent;border-right:1.875em solid #f7484e;position:absolute;top:0px;right:50%;transform-origin:right bottom;border-radius:3px 3px 0 0}.preloader .slice:nth-child(1){transform:rotateZ(-60deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.82s preload-hide-1 both 1}.preloader .slice:nth-child(2){transform:rotateZ(-120deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.74s preload-hide-2 both 1}.preloader .slice:nth-child(3){transform:rotateZ(-180deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.66s preload-hide-3 both 1}.preloader .slice:nth-child(4){transform:rotateZ(-240deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.58s preload-hide-4 both 1}.preloader .slice:nth-child(5){transform:rotateZ(-300deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.5s preload-hide-5 both 1}.preloader .slice:nth-child(6){transform:rotateZ(-360deg) rotateY(0deg) rotateX(0);animation:0.15s linear 0.42s preload-hide-6 both 1}.preloader.loading{animation:2s preload-flip steps(2) infinite both}.preloader.loading .slice:nth-child(1){transform:rotateZ(-60deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-1 linear infinite both}.preloader.loading .slice:nth-child(2){transform:rotateZ(-120deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-2 linear infinite both}.preloader.loading .slice:nth-child(3){transform:rotateZ(-180deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-3 linear infinite both}.preloader.loading .slice:nth-child(4){transform:rotateZ(-240deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-4 linear infinite both}.preloader.loading .slice:nth-child(5){transform:rotateZ(-300deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-5 linear infinite both}.preloader.loading .slice:nth-child(6){transform:rotateZ(-360deg) rotateY(-90deg) rotateX(0);animation:2s preload-cycle-6 linear infinite both}#ajaxContainerLoading,.ajaxLoading{height:130px;text-align:center;margin-top:70px;margin-bottom:100px;display:none}#comfortUpdateIcon{height:1em;margin-left:0.5em}#comfortUpdateGeneralWrap h3.maintitle{background-color:transparent}#comfortUpdateGeneralWrap .on{font-weight:bold;font-size:1em;padding-right:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap .on span{display:block;padding:0.1em;padding-right:0.5em;width:40%}#comfortUpdateGeneralWrap .off{font-size:0.9em;padding-right:0.5em;padding-top:0.5em}#comfortUpdateGeneralWrap #welcomeMessage,#comfortUpdateGeneralWrap #btn-container{border-left:1px solid #EEE}#comfortUpdateGeneralWrap #key-actions{padding-right:1em}#update-alert.unstable-update{background-color:#fff;border:1px solid #A0352F;color:#A0352F;margin-top:1em}html body .nav-tabs>li.active>a,html body .nav-tabs>li.active>a:hover,html body .nav-tabs>li.active>a:focus{border-bottom-color:transparent;cursor:default}.answertable.table td{vertical-align:middle}.btnaddanswer:hover,.btndelanswer:hover{cursor:pointer}.jumbotron p{font-weight:300}span[data-tooltip]{display:inline-block}.glyphicon-move:hover{cursor:pointer}.answertable .glyphicon-pencil{margin-right:3px}#statisticsview .panel{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}#explorer-collapse{border-bottom:none}#explorer-collapse:hover,#sideMenu #dropdown li a#explorer-collapse[aria-expanded="true"],#sideMenu #dropdown li a.question-group-collapse[aria-expanded="true"]{width:auto}#sideMenu #dropdown #explorer li#questionexplorer-group-container,#sideMenu #dropdown li#questionexplorer-group-container>a{line-height:1.4}#sideMenu #dropdown #explorer li#questionexplorer-group-container:hover,#sideMenu #dropdown li#questionexplorer-group-container:hover>a{background-color:#fafafa;font-weight:400;line-height:1.4}.explorer-group-title{margin-top:1em;padding:0em 0 1em 0}.explorer-group-title a.explorer-group,.question-collapse-title{color:#163c19}#item-container,#jcarousel-wrapper-container{width:300px}#item-container h4{margin-bottom:30px}.selectTemplate{margin-top:10px}.imgSelectTemplate{cursor:pointer}.template-img{padding:1em}#additional_languages{min-width:200px}#available_languages{min-width:200px}.modal{top:50px}#tokensidemenu{border-top:1px solid #e3e3e3}.question-item{padding:1em;margin:1em 0 1em 0;cursor:pointer}.placeholder{padding:1em;margin:1em 0 1em 0}.no-gutter>[class*='col-']{padding-left:0;padding-right:0}.inputbuttons{width:120px}.inputbuttons-square{width:20px;height:16px;float:right}.jqgrid-tokens-number-padding{padding-left:4px}.tooltip{position:fixed}.scrolling-wrapper{overflow-x:scroll;overflow-y:hidden}#search{display:none;overflow-y:auto}iframe#dialog{width:100%;height:100%}.ui-jqgrid,.ui-jqgrid-view,.ui-jqgrid-titlebar,.ui-jqgrid-toppager,.ui-jqgrid-pager{min-width:100%;max-width:100%;margin-left:0;margin-right:0;box-sizing:border-box}#pager{position:relative}.ui-sortable-placeholder{color:#f00;background-color:#0f0;border:solid black 5px}.tokenatt-arrow{position:absolute;left:-0.5em}.csvatt-arrow{position:absolute;left:-0.5em;top:1em}.no-padding{padding:0}.droppable-new,.droppable-csv{min-height:40px;height:100%}#labelsetpreview{overflow-x:hidden}#labelsetbrowserModal .modal-dialog{width:80%}.question-filter-container{border:1px solid #efefef;padding:2em;margin:0;min-width:33%;max-width:100%}td.subquestion-actions span:hover{cursor:pointer}.template-img{padding-top:0}.full-page-wrapper .handleAccordion{display:none}div#gview_displayresponses th#displayresponses_cb{width:35px}.detailbrowsetable tr th{width:50%}.lead{font-weight:300}.time-statistics-row-buttons,.nowrap{white-space:nowrap}.time-statistics-table{overflow:auto}.mixed{opacity:0.4}#sidemenu-home{padding-right:15px}#quick-menu-container{position:absolute;width:50px;left:0;top:50px}.quick-icon-wrapper{padding:15px;height:50px}#quick-menu-container .glyphicon{font-size:18px}#quick-menu-container .navbar-brand{padding:0}.panel-group .panel{overflow:visible}a.explorer-group:hover,a.explorer-group:focus{text-decoration:none}.question-explorer-question{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis}.question-explorer-group-name{display:inline-block;max-width:140px;overflow:hidden;position:relative;top:5px;text-overflow:ellipsis}.question-explorer-add-question{position:relative;top:5px}.explorer-group-title a.disabled{opacity:0.5}.btn.readonly,.btn.readonly:hover{cursor:not-allowed;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;border:1px solid #cccccc}#displayResponsesContainer .ui-jqgrid-bdiv,#gbox_displaytokens .ui-jqgrid-bdiv{overflow:hidden}h1,.h1{font-size:24px}h2,.h2{font-size:22px}h3,.h3{font-size:20px}.statisticstable{word-wrap:break-word}.summary-container,.summary,#massive-action-container,#surveyListActions,.listActions,.pager-container ls-ba .pager,.pager-container ls-ba .pager .pagination{margin:0;margin-bottom:20px}.summary-container{text-align:left}#massive-action-container,#surveyListActions,.listActions{padding-right:0px;text-align:right}.push-grid-pager{min-height:25em}.has-link{cursor:pointer}.has-link a:hover{text-decoration:none}.has-link a{color:black}.hoverAction .table-striped>tbody>tr:hover>td{background-color:transparent}.hoverAction .table-striped>tbody>tr:hover>td>a:not(.btn){color:white}.ui-priority-secondary{background-color:#f5f5f5}#token-grid .table .filters>td .filter-container{padding:0px}#token-grid table.table{width:none;max-width:none}#token-grid table thead tr #action{min-width:150px}#token-grid .filter-container{min-width:50px}#token-grid table tr.odd .blank_button{border-color:#f9f9f9;background-color:#f9f9f9;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}#token-grid table tr .blank_button{border-color:white;background-color:white}#token-grid table tr.selected .blank_button{border-color:#eee;background-color:#eee}#token-grid .name{min-width:150px}#tokenListPager{position:relative}.blank_button span{max-width:12px}#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-4,#edittoken .tab-content #general .form-group .col-sm-4 .col-sm-8{padding:0}div[id^="alertmod_"]{display:none}.ui-helper-clearfix{min-height:0}.ui-dialog .ui-dialog-buttonpane{background-image:none;border-width:1px 0 0;margin-top:0.5em;padding:0.3em 0.4em 0.5em 1em;text-align:right}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-helper-clearfix::after{clear:both}.ui-helper-clearfix::before,.ui-helper-clearfix::after{border-collapse:collapse;content:"";display:table}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.yiiLog{margin-bottom:70px}table#responsedetail tr td{max-width:100px;word-wrap:break-word}.in-title{position:relative;top:-65px;left:15px}.input-group-addon{padding:5px 12px}.multiselect-container>li>a>label>input[type="checkbox"]{margin-right:0}.notification-list{top:100%;right:0;z-index:1000;float:right;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;border-radius:4px;background-clip:padding-box;overflow-y:auto}.notification-list>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;white-space:nowrap}.notification-list>li>a:hover,.notification-list>li>a:focus{text-decoration:none}.notification-list>.active>a,.notification-list>.active>a:hover,.notification-list>.active>a:focus{text-decoration:none;outline:0}.notification-list>.disabled>a:hover,.notification-list>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}#notification-outer-ul{height:400px;width:400px}#notification-inner-ul{height:340px;width:390px}.select2-container--bootstrap .select2-selection{font-family:Roboto !important}#responses-grid .table-condensed.upload-question{margin-bottom:0;background-color:inherit}#responses-grid .filter-container{min-width:6em}.edit-participant-modal-body{max-height:500px;overflow-y:auto}.scenario-heading{padding:0}.scenario-heading .delete-scenario-form{padding-top:6px}.condition-header-button{margin-top:-10px;margin-left:10px}.margin-left{margin-right:5px}.conditions-table{margin-bottom:0}.condition-and-or-or{margin-right:20px}#editconditions .tab-content,#quick-add-conditions-form .tab-content{padding-top:0}#quick-add-condition-modal .modal-dialog{width:800px}#login-panel{max-width:400px;margin-right:auto;margin-left:auto}.row-eq-height{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:30px}.welcome .panel{height:110%}.welcome .panel-body{padding:0px}.welcome .panel-heading{height:25%;display:flex;align-items:center;justify-content:center}.welcome .panel-title{font-weight:500}.welcome .panel-body{height:75%;width:100%}.welcome .panel-body .panel-body-ico,.welcome .panel-body .panel-body-link{width:100%;display:flex;align-items:center;justify-content:center}.welcome .panel-body .panel-body-ico{height:70%}.welcome .panel-body .panel-body-link{height:30%}input[type="file"].form-control{border:none;padding-right:0px}#insertmethod-container{display:none}@media print{@page{size:A4 portrait;margin-right:1.0cm;margin-left:1.5cm;margin-top:1.2cm;margin-bottom:1cm;overflow:visible}*{overflow:visible !important}html,body{margin:0;max-width:0%}body{text-align:right;margin:0;padding:0;overflow:visible;min-width:19.0cm !important;min-height:27.7cm;width:100% !important;height:100%}body.onStatistics a:not(.printable),body.onStatistics p:not(.printable),body.onStatistics button:not(.printable),body.onStatistics nav:not(.printable),body.onStatistics form:not(.printable),body.onStatistics footer:not(.printable),body.onStatistics h1:not(.printable),body.onStatistics h2:not(.printable),body.onStatistics h3:not(.printable),body.onStatistics h4:not(.printable),body.onStatistics h5:not(.printable),body.onStatistics .jumbotron,body.onStatistics .menubar,body.onStatistics>div:not(#vue-apps-main-container),body.onStatistics div#vue-apps-main-container>div:not(#pjax-content),body.onStatistics div#vue-apps-main-container>div#pjax-content>div:not(#in_survey_common),body.onStatistics div#in_survey_common>div:not(#statisticsview){display:none !important;visibility:hidden !important;overflow:hidden !important;padding:0;position:absolute;right:-1000px;top:-1000px;margin:0 !important;width:0px !important}body.onStatistics div.row{display:block !important;position:static}body.onStatistics div[class^="col-"]{display:block !important;float:none !important;position:static}body.onStatistics>div#vue-apps-main-container,body.onStatistics div#in_survey_common,body.onStatistics>div#vue-apps-main-container>div#pjax-content,body.onStatistics #statisticsview{display:block;position:static;width:99% !important;max-width:95% !important;min-width:19.6cm !important;min-height:29.7cm !important;height:100% !important;overflow:visible;page-break-inside:auto;break-inside:auto}body.onStatistics #statisticsview div,body.onStatistics #statisticsview table{position:static}body.onStatistics #statisticsview div:not(#statsContainerLoading){width:99% !important;max-width:100% !important;float:none !important;display:block}body.onStatistics #statisticsview a.printable,body.onStatistics #statisticsview p.printable,body.onStatistics #statisticsview span.printable,body.onStatistics #statisticsview table.printable,body.onStatistics #statisticsview table.statisticstable,body.onStatistics #statisticsview h1.printable,body.onStatistics #statisticsview h2.printable,body.onStatistics #statisticsview h3.printable,body.onStatistics #statisticsview h4.printable,body.onStatistics #statisticsview h5.printable{width:95% !important;max-width:100%;float:none;margin-right:0 !important;margin-left:0 !important;margin-top:1cm;margin-bottom:1cm;position:static}body.onStatistics div.printable{position:static;page-break-after:auto;break-after:auto;page-break-inside:avoid;break-inside:avoid;margin-right:0 !important;margin-left:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics div.printable table{position:static;page-break-inside:avoid;break-inside:avoid;margin-right:0 !important;margin-left:0 !important;margin-top:1cm;margin-bottom:1cm;padding:0 !important}body.onStatistics table.printable thead,body.onStatistics table.printable tbody,body.onStatistics table.printable tr{width:100% !important;margin:0 !important;padding:0 !important}body.onStatistics table.printable *{page-break-after:avoid;break-after:avoid;page-break-before:avoid;break-before:avoid;page-break-inside:avoid;break-inside:avoid}body.onStatistics .side-body{max-width:100%;margin:0 !important;padding:0 !important}body.onStatistics .side-menu{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important;margin-right:0 px !important}body.onStatistics .absolute-wrapper{display:none !important;visibility:none !important;overflow:hidden !important;margin:0 !important;padding:0 !important}}.currentQuestionTypeImageContainer img{max-width:100%}#accordion-container .panel-heading>a{width:100%;display:block}#accordion_questionTypeSelector .panel-title>a{width:100%;display:block}.small-screens-menus{padding-right:28px}.custom.custom-no-padding{padding:0}.custom.custom-no-margin{padding:0}.custom.custom-padding.add5{padding:5px}.custom.custom-padding.left-5{padding-right:5px}.custom.custom-padding.right-5{padding-left:5px}.custom.custom-padding.top-5{padding-top:5px}.custom.custom-padding.bottom-5{padding-bottom:5px}.custom.custom-padding.add10{padding:10px}.custom.custom-padding.left-10{padding-right:10px}.custom.custom-padding.right-10{padding-left:10px}.custom.custom-padding.top-10{padding-top:10px}.custom.custom-padding.bottom-10{padding-bottom:10px}.custom.custom-padding.add15{padding:15px}.custom.custom-padding.left-15{padding-right:15px}.custom.custom-padding.right-15{padding-left:15px}.custom.custom-padding.top-15{padding-top:15px}.custom.custom-padding.bottom-15{padding-bottom:15px}.custom.custom-padding.add20{padding:20px}.custom.custom-padding.left-20{padding-right:20px}.custom.custom-padding.right-20{padding-left:20px}.custom.custom-padding.top-20{padding-top:20px}.custom.custom-padding.bottom-20{padding-bottom:20px}.custom.custom-padding.add25{padding:25px}.custom.custom-padding.left-25{padding-right:25px}.custom.custom-padding.right-25{padding-left:25px}.custom.custom-padding.top-25{padding-top:25px}.custom.custom-padding.bottom-25{padding-bottom:25px}.custom.custom-padding.add30{padding:30px}.custom.custom-padding.left-30{padding-right:30px}.custom.custom-padding.right-30{padding-left:30px}.custom.custom-padding.top-30{padding-top:30px}.custom.custom-padding.bottom-30{padding-bottom:30px}.custom.custom-padding.add35{padding:35px}.custom.custom-padding.left-35{padding-right:35px}.custom.custom-padding.right-35{padding-left:35px}.custom.custom-padding.top-35{padding-top:35px}.custom.custom-padding.bottom-35{padding-bottom:35px}@media only screen and (min-width: 961px){.custom.custom-padding-responsive.large.add5{padding:5px}.custom.custom-padding-responsive.large.left-5{padding-right:5px}.custom.custom-padding-responsive.large.right-5{padding-left:5px}.custom.custom-padding-responsive.large.top-5{padding-top:5px}.custom.custom-padding-responsive.large.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.large.add10{padding:10px}.custom.custom-padding-responsive.large.left-10{padding-right:10px}.custom.custom-padding-responsive.large.right-10{padding-left:10px}.custom.custom-padding-responsive.large.top-10{padding-top:10px}.custom.custom-padding-responsive.large.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.large.add15{padding:15px}.custom.custom-padding-responsive.large.left-15{padding-right:15px}.custom.custom-padding-responsive.large.right-15{padding-left:15px}.custom.custom-padding-responsive.large.top-15{padding-top:15px}.custom.custom-padding-responsive.large.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.large.add20{padding:20px}.custom.custom-padding-responsive.large.left-20{padding-right:20px}.custom.custom-padding-responsive.large.right-20{padding-left:20px}.custom.custom-padding-responsive.large.top-20{padding-top:20px}.custom.custom-padding-responsive.large.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.large.add25{padding:25px}.custom.custom-padding-responsive.large.left-25{padding-right:25px}.custom.custom-padding-responsive.large.right-25{padding-left:25px}.custom.custom-padding-responsive.large.top-25{padding-top:25px}.custom.custom-padding-responsive.large.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.large.add30{padding:30px}.custom.custom-padding-responsive.large.left-30{padding-right:30px}.custom.custom-padding-responsive.large.right-30{padding-left:30px}.custom.custom-padding-responsive.large.top-30{padding-top:30px}.custom.custom-padding-responsive.large.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.large.add35{padding:35px}.custom.custom-padding-responsive.large.left-35{padding-right:35px}.custom.custom-padding-responsive.large.right-35{padding-left:35px}.custom.custom-padding-responsive.large.top-35{padding-top:35px}.custom.custom-padding-responsive.large.bottom-35{padding-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-padding-responsive.medium.add5{padding:5px}.custom.custom-padding-responsive.medium.left-5{padding-right:5px}.custom.custom-padding-responsive.medium.right-5{padding-left:5px}.custom.custom-padding-responsive.medium.top-5{padding-top:5px}.custom.custom-padding-responsive.medium.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.medium.add10{padding:10px}.custom.custom-padding-responsive.medium.left-10{padding-right:10px}.custom.custom-padding-responsive.medium.right-10{padding-left:10px}.custom.custom-padding-responsive.medium.top-10{padding-top:10px}.custom.custom-padding-responsive.medium.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.medium.add15{padding:15px}.custom.custom-padding-responsive.medium.left-15{padding-right:15px}.custom.custom-padding-responsive.medium.right-15{padding-left:15px}.custom.custom-padding-responsive.medium.top-15{padding-top:15px}.custom.custom-padding-responsive.medium.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.medium.add20{padding:20px}.custom.custom-padding-responsive.medium.left-20{padding-right:20px}.custom.custom-padding-responsive.medium.right-20{padding-left:20px}.custom.custom-padding-responsive.medium.top-20{padding-top:20px}.custom.custom-padding-responsive.medium.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.medium.add25{padding:25px}.custom.custom-padding-responsive.medium.left-25{padding-right:25px}.custom.custom-padding-responsive.medium.right-25{padding-left:25px}.custom.custom-padding-responsive.medium.top-25{padding-top:25px}.custom.custom-padding-responsive.medium.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.medium.add30{padding:30px}.custom.custom-padding-responsive.medium.left-30{padding-right:30px}.custom.custom-padding-responsive.medium.right-30{padding-left:30px}.custom.custom-padding-responsive.medium.top-30{padding-top:30px}.custom.custom-padding-responsive.medium.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.medium.add35{padding:35px}.custom.custom-padding-responsive.medium.left-35{padding-right:35px}.custom.custom-padding-responsive.medium.right-35{padding-left:35px}.custom.custom-padding-responsive.medium.top-35{padding-top:35px}.custom.custom-padding-responsive.medium.bottom-35{padding-bottom:35px}}.custom.custom-padding-responsive.small.add5{padding:5px}.custom.custom-padding-responsive.small.left-5{padding-right:5px}.custom.custom-padding-responsive.small.right-5{padding-left:5px}.custom.custom-padding-responsive.small.top-5{padding-top:5px}.custom.custom-padding-responsive.small.bottom-5{padding-bottom:5px}.custom.custom-padding-responsive.small.add10{padding:10px}.custom.custom-padding-responsive.small.left-10{padding-right:10px}.custom.custom-padding-responsive.small.right-10{padding-left:10px}.custom.custom-padding-responsive.small.top-10{padding-top:10px}.custom.custom-padding-responsive.small.bottom-10{padding-bottom:10px}.custom.custom-padding-responsive.small.add15{padding:15px}.custom.custom-padding-responsive.small.left-15{padding-right:15px}.custom.custom-padding-responsive.small.right-15{padding-left:15px}.custom.custom-padding-responsive.small.top-15{padding-top:15px}.custom.custom-padding-responsive.small.bottom-15{padding-bottom:15px}.custom.custom-padding-responsive.small.add20{padding:20px}.custom.custom-padding-responsive.small.left-20{padding-right:20px}.custom.custom-padding-responsive.small.right-20{padding-left:20px}.custom.custom-padding-responsive.small.top-20{padding-top:20px}.custom.custom-padding-responsive.small.bottom-20{padding-bottom:20px}.custom.custom-padding-responsive.small.add25{padding:25px}.custom.custom-padding-responsive.small.left-25{padding-right:25px}.custom.custom-padding-responsive.small.right-25{padding-left:25px}.custom.custom-padding-responsive.small.top-25{padding-top:25px}.custom.custom-padding-responsive.small.bottom-25{padding-bottom:25px}.custom.custom-padding-responsive.small.add30{padding:30px}.custom.custom-padding-responsive.small.left-30{padding-right:30px}.custom.custom-padding-responsive.small.right-30{padding-left:30px}.custom.custom-padding-responsive.small.top-30{padding-top:30px}.custom.custom-padding-responsive.small.bottom-30{padding-bottom:30px}.custom.custom-padding-responsive.small.add35{padding:35px}.custom.custom-padding-responsive.small.left-35{padding-right:35px}.custom.custom-padding-responsive.small.right-35{padding-left:35px}.custom.custom-padding-responsive.small.top-35{padding-top:35px}.custom.custom-padding-responsive.small.bottom-35{padding-bottom:35px}.custom.custom-margin.add5{margin:5px}.custom.custom-margin.left-5{margin-right:5px}.custom.custom-margin.right-5{margin-left:5px}.custom.custom-margin.top-5{margin-top:5px}.custom.custom-margin.bottom-5{margin-bottom:5px}.custom.custom-margin.add10{margin:10px}.custom.custom-margin.left-10{margin-right:10px}.custom.custom-margin.right-10{margin-left:10px}.custom.custom-margin.top-10{margin-top:10px}.custom.custom-margin.bottom-10{margin-bottom:10px}.custom.custom-margin.add15{margin:15px}.custom.custom-margin.left-15{margin-right:15px}.custom.custom-margin.right-15{margin-left:15px}.custom.custom-margin.top-15{margin-top:15px}.custom.custom-margin.bottom-15{margin-bottom:15px}.custom.custom-margin.add20{margin:20px}.custom.custom-margin.left-20{margin-right:20px}.custom.custom-margin.right-20{margin-left:20px}.custom.custom-margin.top-20{margin-top:20px}.custom.custom-margin.bottom-20{margin-bottom:20px}.custom.custom-margin.add25{margin:25px}.custom.custom-margin.left-25{margin-right:25px}.custom.custom-margin.right-25{margin-left:25px}.custom.custom-margin.top-25{margin-top:25px}.custom.custom-margin.bottom-25{margin-bottom:25px}.custom.custom-margin.add30{margin:30px}.custom.custom-margin.left-30{margin-right:30px}.custom.custom-margin.right-30{margin-left:30px}.custom.custom-margin.top-30{margin-top:30px}.custom.custom-margin.bottom-30{margin-bottom:30px}.custom.custom-margin.add35{margin:35px}.custom.custom-margin.left-35{margin-right:35px}.custom.custom-margin.right-35{margin-left:35px}.custom.custom-margin.top-35{margin-top:35px}.custom.custom-margin.bottom-35{margin-bottom:35px}.custom.custom-child-margin.left-to-right *{margin-right:3px}.custom.custom-child-margin.right-to-left *{margin-left:3px}@media only screen and (min-width: 961px){.custom.custom-margin-responsive.large.add5{margin:5px}.custom.custom-margin-responsive.large.left-5{margin-right:5px}.custom.custom-margin-responsive.large.right-5{margin-left:5px}.custom.custom-margin-responsive.large.top-5{margin-top:5px}.custom.custom-margin-responsive.large.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.large.add10{margin:10px}.custom.custom-margin-responsive.large.left-10{margin-right:10px}.custom.custom-margin-responsive.large.right-10{margin-left:10px}.custom.custom-margin-responsive.large.top-10{margin-top:10px}.custom.custom-margin-responsive.large.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.large.add15{margin:15px}.custom.custom-margin-responsive.large.left-15{margin-right:15px}.custom.custom-margin-responsive.large.right-15{margin-left:15px}.custom.custom-margin-responsive.large.top-15{margin-top:15px}.custom.custom-margin-responsive.large.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.large.add20{margin:20px}.custom.custom-margin-responsive.large.left-20{margin-right:20px}.custom.custom-margin-responsive.large.right-20{margin-left:20px}.custom.custom-margin-responsive.large.top-20{margin-top:20px}.custom.custom-margin-responsive.large.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.large.add25{margin:25px}.custom.custom-margin-responsive.large.left-25{margin-right:25px}.custom.custom-margin-responsive.large.right-25{margin-left:25px}.custom.custom-margin-responsive.large.top-25{margin-top:25px}.custom.custom-margin-responsive.large.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.large.add30{margin:30px}.custom.custom-margin-responsive.large.left-30{margin-right:30px}.custom.custom-margin-responsive.large.right-30{margin-left:30px}.custom.custom-margin-responsive.large.top-30{margin-top:30px}.custom.custom-margin-responsive.large.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.large.add35{margin:35px}.custom.custom-margin-responsive.large.left-35{margin-right:35px}.custom.custom-margin-responsive.large.right-35{margin-left:35px}.custom.custom-margin-responsive.large.top-35{margin-top:35px}.custom.custom-margin-responsive.large.bottom-35{margin-bottom:35px}}@media only screen and (min-width: 769px){.custom.custom-margin-responsive.medium.add5{margin:5px}.custom.custom-margin-responsive.medium.left-5{margin-right:5px}.custom.custom-margin-responsive.medium.right-5{margin-left:5px}.custom.custom-margin-responsive.medium.top-5{margin-top:5px}.custom.custom-margin-responsive.medium.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.medium.add10{margin:10px}.custom.custom-margin-responsive.medium.left-10{margin-right:10px}.custom.custom-margin-responsive.medium.right-10{margin-left:10px}.custom.custom-margin-responsive.medium.top-10{margin-top:10px}.custom.custom-margin-responsive.medium.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.medium.add15{margin:15px}.custom.custom-margin-responsive.medium.left-15{margin-right:15px}.custom.custom-margin-responsive.medium.right-15{margin-left:15px}.custom.custom-margin-responsive.medium.top-15{margin-top:15px}.custom.custom-margin-responsive.medium.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.medium.add20{margin:20px}.custom.custom-margin-responsive.medium.left-20{margin-right:20px}.custom.custom-margin-responsive.medium.right-20{margin-left:20px}.custom.custom-margin-responsive.medium.top-20{margin-top:20px}.custom.custom-margin-responsive.medium.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.medium.add25{margin:25px}.custom.custom-margin-responsive.medium.left-25{margin-right:25px}.custom.custom-margin-responsive.medium.right-25{margin-left:25px}.custom.custom-margin-responsive.medium.top-25{margin-top:25px}.custom.custom-margin-responsive.medium.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.medium.add30{margin:30px}.custom.custom-margin-responsive.medium.left-30{margin-right:30px}.custom.custom-margin-responsive.medium.right-30{margin-left:30px}.custom.custom-margin-responsive.medium.top-30{margin-top:30px}.custom.custom-margin-responsive.medium.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.medium.add35{margin:35px}.custom.custom-margin-responsive.medium.left-35{margin-right:35px}.custom.custom-margin-responsive.medium.right-35{margin-left:35px}.custom.custom-margin-responsive.medium.top-35{margin-top:35px}.custom.custom-margin-responsive.medium.bottom-35{margin-bottom:35px}}.custom.custom-margin-responsive.small.add5{margin:5px}.custom.custom-margin-responsive.small.left-5{margin-right:5px}.custom.custom-margin-responsive.small.right-5{margin-left:5px}.custom.custom-margin-responsive.small.top-5{margin-top:5px}.custom.custom-margin-responsive.small.bottom-5{margin-bottom:5px}.custom.custom-margin-responsive.small.add10{margin:10px}.custom.custom-margin-responsive.small.left-10{margin-right:10px}.custom.custom-margin-responsive.small.right-10{margin-left:10px}.custom.custom-margin-responsive.small.top-10{margin-top:10px}.custom.custom-margin-responsive.small.bottom-10{margin-bottom:10px}.custom.custom-margin-responsive.small.add15{margin:15px}.custom.custom-margin-responsive.small.left-15{margin-right:15px}.custom.custom-margin-responsive.small.right-15{margin-left:15px}.custom.custom-margin-responsive.small.top-15{margin-top:15px}.custom.custom-margin-responsive.small.bottom-15{margin-bottom:15px}.custom.custom-margin-responsive.small.add20{margin:20px}.custom.custom-margin-responsive.small.left-20{margin-right:20px}.custom.custom-margin-responsive.small.right-20{margin-left:20px}.custom.custom-margin-responsive.small.top-20{margin-top:20px}.custom.custom-margin-responsive.small.bottom-20{margin-bottom:20px}.custom.custom-margin-responsive.small.add25{margin:25px}.custom.custom-margin-responsive.small.left-25{margin-right:25px}.custom.custom-margin-responsive.small.right-25{margin-left:25px}.custom.custom-margin-responsive.small.top-25{margin-top:25px}.custom.custom-margin-responsive.small.bottom-25{margin-bottom:25px}.custom.custom-margin-responsive.small.add30{margin:30px}.custom.custom-margin-responsive.small.left-30{margin-right:30px}.custom.custom-margin-responsive.small.right-30{margin-left:30px}.custom.custom-margin-responsive.small.top-30{margin-top:30px}.custom.custom-margin-responsive.small.bottom-30{margin-bottom:30px}.custom.custom-margin-responsive.small.add35{margin:35px}.custom.custom-margin-responsive.small.left-35{margin-right:35px}.custom.custom-margin-responsive.small.right-35{margin-left:35px}.custom.custom-margin-responsive.small.top-35{margin-top:35px}.custom.custom-margin-responsive.small.bottom-35{margin-bottom:35px}textarea.form-control.input-text{height:2.4em}.template-files-delete-button{margin:1px 0 0 0;padding:0 5px}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{font-family:'FontAwesome' !important}table.dataTable thead .sorting:after{content:"\f0dc" !important}table.dataTable thead .sorting_asc:after{content:"\f0de" !important}table.dataTable thead .sorting_desc:after{content:"\f0dd" !important}.menubar.sticky{position:fixed !important;top:0 !important;margin-top:0 !important}#sticky-topbar-placeholder{display:none}.menubar.sticky+#sticky-topbar-placeholder{display:block}#edit-question-form{margin-right:-15px;margin-left:-15px}#advanced-question-editor{margin-right:-15px;margin-left:-15px}#advanced-question-editor>div>.container-center>.row{margin-right:-15px;margin-left:-15px}.subquestions-table-wrapper,.answeroptions-table-wrapper{display:block;overflow:auto;margin-bottom:20px}.subquestions-table,.answeroptions-table{margin-bottom:0px}.subquestions-table input.code,.answeroptions-table input.code{min-width:70px}.subquestions-table>tbody>tr>td:first-of-type,.answeroptions-table>tbody>tr>td:first-of-type{padding-right:0}.subquestions-table>tbody>tr>td:last-of-type,.answeroptions-table>tbody>tr>td:last-of-type{padding-left:0} diff --git a/assets/packages/adminbasics/scss/000-lime-admin-common.scss b/assets/packages/adminbasics/scss/000-lime-admin-common.scss index 345c29fba2f..5b551a688b1 100644 --- a/assets/packages/adminbasics/scss/000-lime-admin-common.scss +++ b/assets/packages/adminbasics/scss/000-lime-admin-common.scss @@ -312,6 +312,10 @@ html { z-index: 1000; } +#fullpagebar { + z-index: 100; +} + .tab-content { padding-top: 2em; } @@ -4353,6 +4357,12 @@ table.dataTable thead .sorting_desc:after { top: 0 !important; margin-top: 0 !important; } +#sticky-topbar-placeholder { + display: none; +} +.menubar.sticky + #sticky-topbar-placeholder { + display: block; +} /* Reduce margins for question editor */ #edit-question-form { diff --git a/assets/scripts/admin/questionEditor.js b/assets/scripts/admin/questionEditor.js index 5e1bfc6d047..c47598aa292 100644 --- a/assets/scripts/admin/questionEditor.js +++ b/assets/scripts/admin/questionEditor.js @@ -1981,23 +1981,4 @@ $(document).on('ready pjax:scriptcomplete', function () { }); $('#relevance').on('keyup', showConditionsWarning); - - function makeTopbarSticky() { - const topbar = $('#pjax-content > .menubar'); - const editor = $('#in_survey_common'); - const topbarOffset = topbar.offset().top; - - $(window).on('scroll', () => { - if (window.pageYOffset >= topbarOffset) { - topbar.addClass('sticky'); - topbar.css('width', topbar.parent().width()); - editor.css('padding-top', topbar.outerHeight(true)); - } else { - topbar.removeClass('sticky'); - topbar.css('width', ''); - editor.css('padding-top', ''); - } - }); - } - makeTopbarSticky(); }); diff --git a/assets/scripts/admin/topbar.js b/assets/scripts/admin/topbar.js new file mode 100644 index 00000000000..18fab9ef4c0 --- /dev/null +++ b/assets/scripts/admin/topbar.js @@ -0,0 +1,42 @@ +$(document).on('ready pjax:scriptcomplete', function () { + function makeTopbarSticky() { + const topbar = $('.menubar:not(.surveymanagerbar)'); + if (topbar.length == 0) { + return; + } + const topbarOffset = topbar.offset().top; + + // When the topbar is floated, the space it occupies is released, so the rest of the content "jumps" up. + // To avoid that, a "placeholder" div is added, with the same height as the topbar. + // The placeholder is only visible (by css) when the topbar has the 'sticky' class. + topbar.after('
'); + + $(window).on('scroll', () => { + if (window.pageYOffset >= topbarOffset) { + if (!topbar.hasClass('sticky')) { + topbar.addClass('sticky'); + topbar.css('width', topbar.parent().width()); + } + } else { + topbar.removeClass('sticky'); + topbar.css('width', ''); + } + }); + + // Handle the topbar's parent element resizing. + // Note that this resizing doesn't only happen when the window size changes, but also when the sidemenu is resized. + const resizeObserver = new ResizeObserver(() => { + // Adjust the topbar width if it's floated + if (topbar.hasClass('sticky')) { + topbar.css('width', topbar.parent().width()); + } + // Also adjust the placeholder's height, because changing the topbar width can also affect it's height + $('#sticky-topbar-placeholder').css('min-height', topbar.outerHeight(true) + "px"); + }); + + // Observe the topbar parent + resizeObserver.observe(topbar.parent().get(0)); + } + + makeTopbarSticky(); +}); \ No newline at end of file diff --git a/tests/functional/backend/QuestionGroupEditorTest.php b/tests/functional/backend/QuestionGroupEditorTest.php index b613e6123ee..870c0e9c004 100644 --- a/tests/functional/backend/QuestionGroupEditorTest.php +++ b/tests/functional/backend/QuestionGroupEditorTest.php @@ -88,6 +88,7 @@ public function testCreateQuestionGroup() $groupRelevance->clear()->sendKeys("1"); // Switch to German tab. + self::$webDriver->executeScript("window.scrollTo(0, 0);"); // Scroll to top because otherwise the tabs may be hidden under the topbar $germanTab = self::$webDriver->findElement(WebDriverBy::partialLinkText('German')); $germanTab->click(); @@ -159,6 +160,7 @@ public function testEditQuestionGroup() $groupRelevance->clear()->sendKeys("1"); // Switch to German tab. + self::$webDriver->executeScript("window.scrollTo(0, 0);"); // Scroll to top because otherwise the tabs may be hidden under the topbar $germanTab = self::$webDriver->findElement(WebDriverBy::partialLinkText('German')); $germanTab->click(); diff --git a/themes/admin/Apple_Blossom/css/lime-admin-colors.css b/themes/admin/Apple_Blossom/css/lime-admin-colors.css index 53778650f50..cd236786348 100644 --- a/themes/admin/Apple_Blossom/css/lime-admin-colors.css +++ b/themes/admin/Apple_Blossom/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Bay_of_Many/css/lime-admin-colors.css b/themes/admin/Bay_of_Many/css/lime-admin-colors.css index 41c200d5fe8..ff0ab2a7307 100644 --- a/themes/admin/Bay_of_Many/css/lime-admin-colors.css +++ b/themes/admin/Bay_of_Many/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Black_Pearl/css/lime-admin-colors.css b/themes/admin/Black_Pearl/css/lime-admin-colors.css index e9323ef0c9a..38e11ffe512 100644 --- a/themes/admin/Black_Pearl/css/lime-admin-colors.css +++ b/themes/admin/Black_Pearl/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Dark_Sky/css/lime-admin-colors.css b/themes/admin/Dark_Sky/css/lime-admin-colors.css index 60e1377dba3..0f21ccc654d 100644 --- a/themes/admin/Dark_Sky/css/lime-admin-colors.css +++ b/themes/admin/Dark_Sky/css/lime-admin-colors.css @@ -1592,6 +1592,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Free_Magenta/css/lime-admin-colors.css b/themes/admin/Free_Magenta/css/lime-admin-colors.css index c1c25d62382..e399c34c84f 100644 --- a/themes/admin/Free_Magenta/css/lime-admin-colors.css +++ b/themes/admin/Free_Magenta/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Noto_All_Languages/css/lime-admin-colors.css b/themes/admin/Noto_All_Languages/css/lime-admin-colors.css index fea1c54d0dc..ea43a71d465 100644 --- a/themes/admin/Noto_All_Languages/css/lime-admin-colors.css +++ b/themes/admin/Noto_All_Languages/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Purple_Tentacle/css/lime-admin-colors.css b/themes/admin/Purple_Tentacle/css/lime-admin-colors.css index 2aa4c27c587..789d7555e49 100644 --- a/themes/admin/Purple_Tentacle/css/lime-admin-colors.css +++ b/themes/admin/Purple_Tentacle/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Sea_Green/css/lime-admin-colors.css b/themes/admin/Sea_Green/css/lime-admin-colors.css index aa8ee5264df..8f3440aeda7 100644 --- a/themes/admin/Sea_Green/css/lime-admin-colors.css +++ b/themes/admin/Sea_Green/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1); diff --git a/themes/admin/Sunset_Orange/css/lime-admin-colors.css b/themes/admin/Sunset_Orange/css/lime-admin-colors.css index d3d99c74ff3..b9a2ccde403 100644 --- a/themes/admin/Sunset_Orange/css/lime-admin-colors.css +++ b/themes/admin/Sunset_Orange/css/lime-admin-colors.css @@ -1591,6 +1591,10 @@ fieldset[disabled] .btn-link:focus { box-shadow: 0 3px 3px rgba(99, 49, 48, 0.1); background-color: #ffffff; } +#fullpagebar { + background-color: #ffffff; +} + .navbar { background-color: #ffffff; box-shadow: 0 3px 3px rgba(132, 136, 138, 0.1);